diff --git a/.gitattributes b/.gitattributes index d321d7bc..b5ae37b3 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,15 +1,33 @@ -*.db filter=lfs diff=lfs merge=lfs -text -*.exe filter=lfs diff=lfs merge=lfs -text -*.gif filter=lfs diff=lfs merge=lfs -text -*.jpg filter=lfs diff=lfs merge=lfs -text -*.png filter=lfs diff=lfs merge=lfs -text -*.PNG filter=lfs diff=lfs merge=lfs -text -*.mp3 filter=lfs diff=lfs merge=lfs -text -*.ogg filter=lfs diff=lfs merge=lfs -text -*.osk filter=lfs diff=lfs merge=lfs -text -*.osr filter=lfs diff=lfs merge=lfs -text -*.osz filter=lfs diff=lfs merge=lfs -text +*.db filter=lfs diff=lfs merge=lfs -text +*.exe filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.JPG filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.PNG filter=lfs diff=lfs merge=lfs -text +*.pnG filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +*.psd filter=lfs diff=lfs merge=lfs -text +*.xcf filter=lfs diff=lfs merge=lfs -text +*.pxr filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +*.WAV filter=lfs diff=lfs merge=lfs -text +*.wav123321321 filter=lfs diff=lfs merge=lfs -text +*.sfk filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.otf filter=lfs diff=lfs merge=lfs -text +*.lnk filter=lfs diff=lfs merge=lfs -text +*.pk filter=lfs diff=lfs merge=lfs -text +*.fig filter=lfs diff=lfs merge=lfs -text +*.fds filter=lfs diff=lfs merge=lfs -text +*.pdn filter=lfs diff=lfs merge=lfs -text +*.osk filter=lfs diff=lfs merge=lfs -text +*.osr filter=lfs diff=lfs merge=lfs -text +*.osz filter=lfs diff=lfs merge=lfs -text *.pack filter=lfs diff=lfs merge=lfs -text -*.pdn filter=lfs diff=lfs merge=lfs -text -*.wav filter=lfs diff=lfs merge=lfs -text -*.WAV filter=lfs diff=lfs merge=lfs -text +*.mp4 filter=lfs diff=lfs merge=lfs -text diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b7a3202d..3f9fbcd9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,13 +1,20 @@ -name: CI/CD Pipeline +name: Generate Skin previews, OSK files and per skin documentation on: push: - branches: - - main paths: - - '.gitea/workflows/ci.yml' + - '.gitea/workflows/*' - 'Skins/**/*' workflow_dispatch: + inputs: + force_rebuild: + description: 'Force rebuild all skins' + required: false + default: 'false' + target_skins: + description: 'Comma-separated list of skin folder names to rebuild (e.g., "Skin1,Skin2")' + required: false + default: '' env: DANSER_PATH: "/app/danser/danser-cli" @@ -16,23 +23,28 @@ env: DANSER_SCREENSHOT_DIR: "/app/danser/screenshots" SKINS_DIR: "${{ github.workspace }}/Skins" DANSER_SKINS_DIR: "/app/danser/skins" - DEFAULT_SKIN_DIR: "${{ github.workspace }}/src/default-skin" + DEFAULT_SKIN_DIR: "/app/danser/skins/default-skin" REPO_SCREENSHOT_DIR: "${{ github.workspace }}/media/gameplay" REPO_MOD_ICONS_DIR: "${{ github.workspace }}/media/icons" REPO_RANKING_PANEL_DIR: "${{ github.workspace }}/media/panel" + REPO_THUMBNAIL_DIR: "${{ github.workspace }}/media/thumbnail" SETTINGS_JSON_PATH: "/app/danser/settings/default.json" README_PATH: "${{ github.workspace }}/README.md" - REPLAY_PATH: "${{ github.workspace }}/src/replay.osr" + GAMEPLAY_REPLAY_PATH: "/app/danser/custom-replays/yomi_yori.osr" + THUMBNAIL_REPLAY_PATH: "/app/danser/custom-replays/combo_colors.osr" + PANEL_REPLAY_PATH: "/app/danser/custom-replays/2000_gekis.osr" OSK_PATH: "${{ github.workspace }}/export" - IMAGE_NAME: arlind/skins - REGISTRY_URL: "https://${{ secrets.CONTAINER_REGISTRY }}" + IMAGE_NAME: osc/skins-image + REGISTRY_URL: "https://${{ vars.CONTAINER_REGISTRY }}" + OSU_ID: ${{ vars.OSUID }} + DOC_DIR: "${{ github.workspace }}/docs" jobs: generate_everything: name: Full CI/CD Pipeline - runs-on: ubuntu-latest + runs-on: danser container: - image: ${{ secrets.CONTAINER_REGISTRY }}/${{ env.IMAGE_NAME }}:latest + image: ${{ vars.CONTAINER_REGISTRY }}/${{ env.IMAGE_NAME }}:latest options: >- --gpus all --privileged @@ -43,25 +55,159 @@ jobs: --env NVIDIA_VISIBLE_DEVICES=all --user 0:0 steps: - - name: Checkout Repository + - name: Checkout repository uses: actions/checkout@v4 with: + fetch-depth: 0 + tags: true token: ${{ secrets.TOKEN }} - - name: Git LFS Pull + - name: Discover all skins + shell: bash run: | - echo "Pulling Git LFS files..." - git lfs pull - echo "LFS files pulled." + echo "Discovering all skins in $SKINS_DIR…" + mapfile -t skins < <( + find "$SKINS_DIR" -mindepth 1 -maxdepth 1 -type d \ + | sed 's|'"$SKINS_DIR"'/||' + ) + { + echo 'ALL_SKINS_DIR<> "$GITHUB_ENV" + echo "→ ALL_SKINS_DIR set (newline-delimited list)" + + - name: Detect Changed Skin Directories + shell: bash + run: | + echo "[Detect Changed Skin Directories Started]" + + readarray -t all_skins <<< "$ALL_SKINS_DIR" + + force_rebuild="${{ github.event.inputs.force_rebuild }}" + target_skins="${{ github.event.inputs.target_skins }}" + skins=() + deleted_skins=() + + echo "→ Force rebuild flag: $force_rebuild" + echo "→ Target skins input: $target_skins" + + if [[ "$force_rebuild" == "true" ]]; then + echo "→ Force rebuild is enabled. Using ALL_SKINS_DIR for full list…" + skins=("${all_skins[@]}") + echo " ✓ Found ${#skins[@]} skin directories (from ALL_SKINS_DIR)" + + elif [[ -n "$target_skins" ]]; then + echo "→ Target skins specified. Using target_skins input…" + IFS=',' read -r -a input_skins <<< "$target_skins" + for s in "${input_skins[@]}"; do + s="${s#"${s%%[![:space:]]*}"}" + s="${s%"${s##*[![:space:]]}"}" + [[ -n "$s" ]] && skins+=("$s") + done + echo " ✓ Found ${#skins[@]} skin(s) from target_skins input" + + else + echo "→ No rebuild flags set. Finding latest git tag..." + latest_tag=$(git tag --sort=-creatordate | head -n 1 || true) + + if [[ -n "$latest_tag" ]]; then + echo "→ Latest tag found: $latest_tag" + echo "→ Finding added/modified skins since $latest_tag…" + + mapfile -t skins < <( + git diff --name-only -z --diff-filter=AM "$latest_tag" HEAD \ + | while IFS= read -r -d '' file; do + [[ $file == Skins/* ]] && echo "${file#Skins/}" | cut -d/ -f1 + done | sort -u + ) + echo " ✓ Found ${#skins[@]} added/modified skins" + + echo "→ Finding deleted skins since $latest_tag…" + mapfile -t deleted_skins < <( + git diff --name-only -z --diff-filter=D "$latest_tag" HEAD \ + | while IFS= read -r -d '' file; do + [[ $file == Skins/* ]] && echo "${file#Skins/}" | cut -d/ -f1 + done | sort -u + ) + if [ "${#deleted_skins[@]}" -gt 0 ]; then + for d in "${deleted_skins[@]}"; do + echo "→ Skin '$d' was deleted" + done + else + echo " ✓ No skins deleted" + fi + + else + echo "→ No tag found. Falling back to ALL_SKINS_DIR for full list…" + skins=("${all_skins[@]}") + echo " ✓ Found ${#skins[@]} skin directories (from ALL_SKINS_DIR)" + fi + fi + + echo "" + echo "[Cleaning Skin Names]" + uniq_skins=() + for skin in "${skins[@]}"; do + skin="${skin#"${skin%%[![:space:]]*}"}" + skin="${skin%"${skin##*[![:space:]]}"}" + [[ -n "$skin" ]] && uniq_skins+=("$skin") + done + echo " ✓ ${#uniq_skins[@]} valid skin names after cleaning" + + echo "" + if [ "${#uniq_skins[@]}" -eq 0 ]; then + echo "→ No added/modified skins detected." + echo "CHANGED_SKINS_FILE=" >> "$GITHUB_ENV" + else + echo "[Writing Changed Skins to File]" + changed_skins_file=$(mktemp) + printf "%s\n" "${uniq_skins[@]}" > "$changed_skins_file" + echo " ✓ Skins written to $changed_skins_file" + echo "CHANGED_SKINS_FILE=$changed_skins_file" >> "$GITHUB_ENV" + fi + + echo "" + echo "[Detect Changed Skin Directories Complete — ${#uniq_skins[@]} skins processed, ${#deleted_skins[@]} skins deleted]" + + - name: Pull Git LFS objects for changed skins (and core assets) + shell: bash + run: | + if [ -z "${CHANGED_SKINS_FILE:-}" ] || [ ! -s "$CHANGED_SKINS_FILE" ]; then + echo "No skins changed. Skipping git pull lfs." + exit 0 + fi + + includes="src/**,export/**,media/**" + + skin_includes=$( + while IFS= read -r skin; do + esc=$(printf '%s' "$skin" \ + | sed -e 's/\[/\\[/g' -e 's/\]/\\]/g') + printf 'Skins/%s/**\n' "$esc" + done < "$CHANGED_SKINS_FILE" \ + | paste -sd ',' + ) + + includes="$includes,$skin_includes" + + echo "→ Pulling LFS objects for patterns: $includes" + git lfs pull --include="$includes" - name: Extract Repository path + shell: bash run: | - FULL_WORKSPACE_PATH="${{ github.workspace }}" - USER_REPOSITORY="${FULL_WORKSPACE_PATH#/workspace/}" + echo "Extracting repository path..." + USER_REPOSITORY="${{ github.workspace }}" + USER_REPOSITORY="${USER_REPOSITORY#/workspace/}" USER_REPOSITORY="${USER_REPOSITORY%/}" + echo "Repository path extracted: $USER_REPOSITORY" echo "USER_REPOSITORY=$USER_REPOSITORY" >> $GITHUB_ENV - name: Set XDG_RUNTIME_DIR + shell: bash run: | echo "Setting XDG_RUNTIME_DIR..." mkdir -p /tmp/xdg_runtime_dir @@ -70,26 +216,34 @@ jobs: echo "XDG_RUNTIME_DIR set." - name: Create directories for assets + shell: bash run: | - echo "Creating asset directories..." - mkdir -p "$REPO_SCREENSHOT_DIR" - mkdir -p "$REPO_MOD_ICONS_DIR" - mkdir -p "$REPO_RANKING_PANEL_DIR" - mkdir -p "$OSK_PATH" - echo "Asset directories created successfully." + echo "Creating base directories for assets..." + mkdir -p "$REPO_SCREENSHOT_DIR" "$REPO_MOD_ICONS_DIR" "$REPO_RANKING_PANEL_DIR" "$OSK_PATH" "$REPO_THUMBNAIL_DIR" + + readarray -t skins <<< "$ALL_SKINS_DIR" + + for skin in "${skins[@]}"; do + echo " → Creating subdirs for '$skin'…" + mkdir -p \ + "$REPO_SCREENSHOT_DIR/$skin" \ + "$REPO_MOD_ICONS_DIR/$skin" \ + "$REPO_RANKING_PANEL_DIR/$skin" \ + "$OSK_PATH/$skin" \ + "$REPO_THUMBNAIL_DIR/$skin" + done + + echo "All asset directories created for ${#skins[@]} skins." - name: Create New Tag + shell: bash run: | echo "Computing new tag..." - git fetch --tags >/dev/null 2>&1 latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1) 2>/dev/null || echo "") if [ -z "$latest_tag" ]; then new_tag="v1.0.0" else - version=${latest_tag#v} - major=$(echo "$version" | cut -d. -f1) - minor=$(echo "$version" | cut -d. -f2) - patch=$(echo "$version" | cut -d. -f3) + IFS='.' read -r major minor patch <<< "${latest_tag#v}" minor=$((minor + 1)) patch=0 new_tag="v${major}.${minor}.${patch}" @@ -98,6 +252,7 @@ jobs: echo "Computed new tag: $new_tag" - name: Move Skin files to Danser Skins directory + shell: bash run: | echo "Moving Skin files to Danser Skins directory..." mkdir -p "$DANSER_SKINS_DIR" @@ -105,266 +260,398 @@ jobs: echo "Skin files moved." - name: Generate Danser videos and screenshots + shell: bash run: | echo "[Danser Job Started]" - SKIN_COUNT=$(find "$DANSER_SKINS_DIR" -mindepth 1 -maxdepth 1 -type d | wc -l) + if [ -z "${CHANGED_SKINS_FILE:-}" ] || [ ! -s "$CHANGED_SKINS_FILE" ]; then + echo "No skins changed. Skipping generation." + exit 0 + fi + + mapfile -t skins < "$CHANGED_SKINS_FILE" + [ "${#skins[@]}" -eq 0 ] && { echo "No skins to process. Exiting."; exit 0; } + + SKIN_COUNT=${#skins[@]} INDEX=1 - for skin in "$DANSER_SKINS_DIR"/*/; do - if [ -d "$skin" ]; then - SKIN_NAME=$(basename "$skin") - echo "" - echo "[$INDEX/$SKIN_COUNT] Skin: $SKIN_NAME" + for skin_path in "${skins[@]}"; do + [ -z "$skin_path" ] && continue + SKIN_DIR="$DANSER_SKINS_DIR/$skin_path" + [ ! -d "$SKIN_DIR" ] && { echo "Skipping missing skin: $skin_path"; continue; } - LOGFILE="/tmp/danser_log_$SKIN_NAME.txt" - FFMPEG_LOG="/tmp/ffmpeg_log_$SKIN_NAME.txt" + SKIN_NAME="$skin_path" + OUT_VIDEO_DIR="$REPO_SCREENSHOT_DIR/$SKIN_NAME" + OUT_PNG_DIR="$REPO_RANKING_PANEL_DIR/$SKIN_NAME" + OUT_THUMBNAIL_DIR="$REPO_THUMBNAIL_DIR/$SKIN_NAME" - echo " → Generating video..." - if ! xvfb-run -a "$DANSER_DIR/danser-cli" -replay "$REPLAY_PATH" -record -skip -start=215 -end=230 -noupdatecheck -out="$SKIN_NAME" -skin "$SKIN_NAME" >"$LOGFILE" 2>&1; then - echo " ✖ Video generation failed for $SKIN_NAME. Log output:" - cat "$LOGFILE" - exit 1 - fi - - echo " → Taking screenshot..." - if ! xvfb-run -a "$DANSER_DIR/danser-cli" -replay "$REPLAY_PATH" -skip -noupdatecheck -ss 243 -out="$SKIN_NAME" -skin "$SKIN_NAME" >>"$LOGFILE" 2>&1; then - echo " ✖ Screenshot generation failed for $SKIN_NAME. Log output:" - cat "$LOGFILE" - exit 1 - fi - - if [ -f "$DANSER_VIDEO_DIR/$SKIN_NAME.mp4" ]; then - echo " → Converting to GIF..." - if ! ffmpeg -y -hwaccel cuda -ss 4 -t 10 -i "$DANSER_VIDEO_DIR/$SKIN_NAME.mp4" \ - -filter_complex "[0:v] fps=24,scale=720:-1:flags=lanczos,palettegen [p]; \ - [0:v] fps=24,scale=720:-1:flags=lanczos [x]; \ - [x][p] paletteuse" \ - -c:v gif "$DANSER_VIDEO_DIR/$SKIN_NAME.gif" >"$FFMPEG_LOG" 2>&1; then - echo " ✖ FFmpeg conversion failed for $SKIN_NAME. Log output:" - cat "$FFMPEG_LOG" - exit 1 - fi - mv "$DANSER_VIDEO_DIR/$SKIN_NAME.gif" "$REPO_SCREENSHOT_DIR/$SKIN_NAME.gif" - fi - - if [ -f "$DANSER_SCREENSHOT_DIR/$SKIN_NAME.png" ]; then - mv "$DANSER_SCREENSHOT_DIR/$SKIN_NAME.png" "$REPO_RANKING_PANEL_DIR/$SKIN_NAME.png" - fi - - echo " ✓ Completed" - INDEX=$((INDEX + 1)) - fi - done - - echo "" - echo "[Danser Job Finished — $SKIN_COUNT skins processed]" - - - name: Rename Generated Assets Based on skin.ini - run: | - echo "[Asset Renaming Started]" - - INDEX=1 - SKIN_COUNT=$(find "$DANSER_SKINS_DIR" -mindepth 1 -maxdepth 1 -type d | wc -l) - - for skin_path in "$DANSER_SKINS_DIR"/*/; do - if [ -d "$skin_path" ]; then - SKIN_NAME=$(basename "$skin_path") - - echo "" - echo "[$INDEX/$SKIN_COUNT] Skin: $SKIN_NAME" - - ini_file=$(find "$skin_path" -maxdepth 1 -iname "skin.ini" | head -n1) - skin_header="$SKIN_NAME" - - if [ -f "$ini_file" ]; then - name_line=$(grep -i '^[[:space:]]*name:' "$ini_file" | head -n1) - if [ -n "$name_line" ]; then - new_name=$(echo "$name_line" | cut -d ':' -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') - [ -n "$new_name" ] && skin_header="$new_name" - fi - fi - - original_gif="$REPO_SCREENSHOT_DIR/$SKIN_NAME.gif" - renamed_gif="$REPO_SCREENSHOT_DIR/$skin_header.gif" - - if [ -f "$original_gif" ] && [ "$original_gif" != "$renamed_gif" ]; then - mv -f "$original_gif" "$renamed_gif" - echo " ✓ Renamed GIF" - else - echo " → No GIF to rename or already named correctly" - fi - - original_png="$REPO_RANKING_PANEL_DIR/$SKIN_NAME.png" - renamed_png="$REPO_RANKING_PANEL_DIR/$skin_header.png" - - if [ -f "$original_png" ] && [ "$original_png" != "$renamed_png" ]; then - mv -f "$original_png" "$renamed_png" - echo " ✓ Renamed PNG" - else - echo " → No PNG to rename or already named correctly" - fi - - echo " ✓ Completed" - INDEX=$((INDEX + 1)) - fi - done - - echo "" - echo "[Asset Renaming Complete — $SKIN_COUNT skins processed]" - - - name: Generate Mod Icons - run: | - echo "[Mod Icon Generation Started]" - - ICONS_JSON_FILE="${{ github.workspace }}/.gitea/workflows/icons.json" - - group1_icons=$(jq -r '.group1 | join(" ")' "$ICONS_JSON_FILE") - group2_icons=$(jq -r '.group2 | join(" ")' "$ICONS_JSON_FILE") - group3_icons=$(jq -r '.group3 | join(" ")' "$ICONS_JSON_FILE") - - SKIN_COUNT=$(find "$DANSER_SKINS_DIR" -mindepth 1 -maxdepth 1 -type d | wc -l) - INDEX=1 - - for skin_path in "$DANSER_SKINS_DIR"/*/; do - if [ -d "$skin_path" ]; then - SKIN_NAME=$(basename "$skin_path") - echo "" - echo "[$INDEX/$SKIN_COUNT] Skin: $SKIN_NAME" - - ini_file=$(find "$skin_path" -maxdepth 1 -iname "skin.ini" | head -n1) - skin_header="$SKIN_NAME" - if [ -f "$ini_file" ]; then - name_line=$(grep -i '^[[:space:]]*name:' "$ini_file" | head -n1) - if [ -n "$name_line" ]; then - new_name=$(echo "$name_line" | cut -d ':' -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') - if [ -n "$new_name" ]; then - skin_header="$new_name" - fi - fi - fi - - ICON_FOLDER="$skin_path" - OUTPUT="${REPO_MOD_ICONS_DIR}/${skin_header}-mod-icons.png" - TILE_SIZE=160 - PADDING=10 - MAX_ICONS=7 - - BLANK_IMAGE="blank.png" - magick -size "${TILE_SIZE}x${TILE_SIZE}" xc:none "$BLANK_IMAGE" - - row_images="" - row_index=1 - - for group_list in "$group1_icons" "$group2_icons" "$group3_icons"; do - montage_files="" - count=0 - - for icon in $group_list; do - icon_path="${ICON_FOLDER}/selection-mod-${icon}@2x.png" - if [ -f "$icon_path" ]; then - montage_files="$montage_files \"$icon_path\"" - count=$((count + 1)) - elif [ -f "$DEFAULT_SKIN_DIR/selection-mod-${icon}@2x.png" ]; then - montage_files="$montage_files \"$DEFAULT_SKIN_DIR/selection-mod-${icon}@2x.png\"" - count=$((count + 1)) - fi - done - - missing=$(( MAX_ICONS - count )) - if [ "$missing" -lt 0 ]; then - missing=0 - fi - i=0 - while [ "$i" -lt "$missing" ]; do - montage_files="$montage_files \"$BLANK_IMAGE\"" - i=$((i + 1)) - done - - row_file="row_${row_index}.png" - eval "magick montage $montage_files -tile \"${MAX_ICONS}x1\" -geometry \"${TILE_SIZE}x${TILE_SIZE}+${PADDING}+${PADDING}\" -background none \"$row_file\"" - - row_images="$row_images \"$row_file\"" - row_index=$((row_index + 1)) - done - - num_rows=0 - for _ in $row_images; do - num_rows=$((num_rows + 1)) - done - - eval "magick montage $row_images -tile \"1x${num_rows}\" -geometry \"+${PADDING}+${PADDING}\" -background none \"$OUTPUT\"" - - rm "$BLANK_IMAGE" - rm row_*.png - - echo " ✓ Completed" - INDEX=$((INDEX + 1)) - fi - done - - echo "" - echo "[Mod Icon Generation Finished — $SKIN_COUNT skins processed]" - - - name: Create OSK files - run: | - echo "[OSK Creation Job Started]" - - SKIN_COUNT=$(find "$DANSER_SKINS_DIR" -mindepth 1 -maxdepth 1 -type d | wc -l) - INDEX=1 - - FIXED_TIMESTAMP="2025-01-01 00:00:00" - - find "$DANSER_SKINS_DIR" -mindepth 1 -maxdepth 1 -type d | sort | while IFS= read -r skin; do - SKIN_FOLDER=$(basename "$skin") echo "" - echo "[$INDEX/$SKIN_COUNT] Processing skin folder: $SKIN_FOLDER" + echo "[$INDEX/$SKIN_COUNT] Generating for skin: $SKIN_NAME" - ini_file=$(find "$skin" -maxdepth 1 -iname "skin.ini" | head -n1) - if [ -f "$ini_file" ]; then - name_line=$(grep -i '^[[:space:]]*name:' "$ini_file" | head -n1) - if [ -n "$name_line" ]; then - new_name=$(echo "$name_line" | cut -d ':' -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') - if [ -n "$new_name" ]; then - SKIN_FOLDER="$new_name" - fi + LOGFILE="/tmp/danser_log_$INDEX.txt" + + echo " → Generating video..." + if ! xvfb-run -a "$DANSER_DIR/danser-cli" \ + -replay "$GAMEPLAY_REPLAY_PATH" -record -skip -start=300 -end=307 -noupdatecheck \ + -out="$SKIN_NAME" -skin="$SKIN_NAME" >"$LOGFILE" 2>&1; then + echo " ✖ Video failed for $SKIN_NAME"; cat "$LOGFILE"; INDEX=$((INDEX+1)); continue + fi + + if [ -f "$DANSER_VIDEO_DIR/$SKIN_NAME.mp4" ]; then + echo " → Trimming MP4 with ffmpeg..." + ffmpeg -hide_banner -loglevel error \ + -ss 5 -t 6.5 \ + -i "$DANSER_VIDEO_DIR/$SKIN_NAME.mp4" \ + -c:v h264_nvenc -preset fast \ + -c:a aac -b:a 128k \ + "$DANSER_VIDEO_DIR/${SKIN_NAME}_trimmed.mp4" + + if [ -f "$DANSER_VIDEO_DIR/${SKIN_NAME}_trimmed.mp4" ]; then + mv "$DANSER_VIDEO_DIR/${SKIN_NAME}_trimmed.mp4" "$DANSER_VIDEO_DIR/$SKIN_NAME.mp4" + mkdir -p "$OUT_VIDEO_DIR" + mv "$DANSER_VIDEO_DIR/$SKIN_NAME.mp4" "$OUT_VIDEO_DIR/$SKIN_NAME.mp4" + echo " ✓ Trimmed MP4 moved to $OUT_VIDEO_DIR/" + else + echo " ✖ ffmpeg trimming failed for $SKIN_NAME" fi else - echo " → No skin.ini found, using folder name." + echo " ✖ No MP4 found for $SKIN_NAME" fi - osk_file="${OSK_PATH}/${SKIN_FOLDER}.osk" - - if ! (cd "$skin" && find . -type f -exec touch -d "$FIXED_TIMESTAMP" {} +); then - echo " ✖ Failed to normalize timestamps in $skin" - exit 1 + echo " → Taking screenshot..." + if ! xvfb-run -a "$DANSER_DIR/danser-cli" \ + -replay "$PANEL_REPLAY_PATH" -skip -noupdatecheck -ss 28 \ + -out="$SKIN_NAME" -skin="$SKIN_NAME" >>"$LOGFILE" 2>&1; then + echo " ✖ Screenshot failed for $SKIN_NAME"; cat "$LOGFILE"; INDEX=$((INDEX+1)); continue fi - if ( - cd "$skin" && \ - find . -type f | sort | zip -rq -D -X -9 --compression-method deflate "$osk_file" -@ - ); then - echo " ✓ OSK file created successfully." + if [ -f "$DANSER_SCREENSHOT_DIR/$SKIN_NAME.png" ]; then + mkdir -p "$OUT_PNG_DIR" + mv "$DANSER_SCREENSHOT_DIR/$SKIN_NAME.png" "$OUT_PNG_DIR/$SKIN_NAME.png" + echo " ✓ PNG moved to $OUT_PNG_DIR/" else - echo " ✖ Failed to create OSK file: $osk_file" - exit 1 + echo " ✖ No PNG found for $SKIN_NAME" + fi + + echo " → Taking thumbnail screenshot..." + if ! xvfb-run -a "$DANSER_DIR/danser-cli" \ + -replay "$THUMBNAIL_REPLAY_PATH" -skip -noupdatecheck -ss 1.3 \ + -out="${SKIN_NAME}_thumb" -skin="$SKIN_NAME" >>"$LOGFILE" 2>&1; then + echo " ✖ Thumbnail screenshot failed for $SKIN_NAME"; cat "$LOGFILE"; INDEX=$((INDEX+1)); continue + fi + + if [ -f "$DANSER_SCREENSHOT_DIR/${SKIN_NAME}_thumb.png" ]; then + mkdir -p "$OUT_THUMBNAIL_DIR" + mv "$DANSER_SCREENSHOT_DIR/${SKIN_NAME}_thumb.png" "$OUT_THUMBNAIL_DIR/$SKIN_NAME.png" + echo " ✓ Thumbnail PNG moved to $OUT_THUMBNAIL_DIR/" + else + echo " ✖ No thumbnail PNG found for $SKIN_NAME" fi INDEX=$((INDEX + 1)) done echo "" - echo "[OSK Creation Job Finished — $SKIN_COUNT skins processed]" + echo "[Danser Job Finished — processed $SKIN_COUNT skins]" + + - name: Rename Generated Assets Based on skin.ini + shell: bash + run: | + echo "[Asset Renaming Job Started]" + + if [ -z "${CHANGED_SKINS_FILE:-}" ] || [ ! -s "$CHANGED_SKINS_FILE" ]; then + echo "No skins changed. Skipping asset renaming." + exit 0 + fi + + mapfile -t skins < "$CHANGED_SKINS_FILE" + [ "${#skins[@]}" -eq 0 ] && { echo "No skins to rename. Exiting."; exit 0; } + + SKIN_COUNT=${#skins[@]} + INDEX=1 + + sanitize_filename() { + echo "$1" | \ + tr -d '\000-\037' | \ + sed -e 's#[\\/:\*\?"<>|]#-#g' | \ + sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' + } + + for skin_path in "${skins[@]}"; do + [ -z "$skin_path" ] && continue + SKIN_DIR_NAME="$skin_path" + SKIN_DIR="$DANSER_SKINS_DIR/$skin_path" + if [ ! -d "$SKIN_DIR" ]; then + echo "Skipping missing skin directory: $SKIN_DIR" + continue + fi + + echo "Processing skin $INDEX/$SKIN_COUNT: $SKIN_DIR_NAME" + + skin_header="$SKIN_DIR_NAME" + ini_file=$(find "$SKIN_DIR" -maxdepth 1 -iname "skin.ini" | head -n1 || true) + if [ -f "$ini_file" ]; then + name_line=$(grep -i '^[[:space:]]*Name:' "$ini_file" | head -n1 || true) + if [ -n "$name_line" ]; then + val="${name_line#*:}" + val="$(echo "$val" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')" + if [ -n "$val" ]; then + sanitized="$(sanitize_filename "$val")" + [ -n "$sanitized" ] && skin_header="$sanitized" + fi + fi + fi + + VIDEO_DIR="$REPO_SCREENSHOT_DIR/$SKIN_DIR_NAME" + PNG_DIR="$REPO_RANKING_PANEL_DIR/$SKIN_DIR_NAME" + THUMBNAIL_DIR="$REPO_THUMBNAIL_DIR/$SKIN_DIR_NAME" + + if [ -f "$VIDEO_DIR/$SKIN_DIR_NAME.mp4" ] && [ "$SKIN_DIR_NAME" != "$skin_header" ]; then + mv -f "$VIDEO_DIR/$SKIN_DIR_NAME.mp4" \ + "$VIDEO_DIR/$skin_header.mp4" || true + echo " ✓ Renamed MP4 to $VIDEO_DIR/$skin_header.mp4" + fi + + if [ -f "$PNG_DIR/$SKIN_DIR_NAME.png" ] && [ "$SKIN_DIR_NAME" != "$skin_header" ]; then + mv -f "$PNG_DIR/$SKIN_DIR_NAME.png" \ + "$PNG_DIR/$skin_header.png" || true + echo " ✓ Renamed PNG to $PNG_DIR/$skin_header.png" + fi + + if [ -f "$THUMBNAIL_DIR/$SKIN_DIR_NAME.png" ] && [ "$SKIN_DIR_NAME" != "$skin_header" ]; then + mv -f "$THUMBNAIL_DIR/$SKIN_DIR_NAME.png" \ + "$THUMBNAIL_DIR/$skin_header.png" || true + echo " ✓ Renamed thumbnail to $THUMBNAIL_DIR/$skin_header.png" + fi + + INDEX=$((INDEX + 1)) + done + + echo "" + echo "[Asset Renaming Complete — processed $SKIN_COUNT skins]" + + - name: Generate Mod Icons (WEBP) + shell: bash + run: | + echo "[Mod Icon Generation Job Started]" + + if [ -z "${CHANGED_SKINS_FILE:-}" ] || [ ! -s "$CHANGED_SKINS_FILE" ]; then + echo "No skins changed. Skipping mod icon generation." + exit 0 + fi + + mapfile -t skin_dirs < "$CHANGED_SKINS_FILE" + [ "${#skin_dirs[@]}" -eq 0 ] && { echo "No skins to process. Exiting."; exit 0; } + + sanitize_filename() { + echo "$1" | \ + tr -d '\000-\037' | \ + sed -e 's#[\\/:\*\?"<>|]#-#g' | \ + sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' + } + + ICONS_JSON_FILE="${{ github.workspace }}/.gitea/workflows/icons.json" + group1_icons=$(jq -r '.group1 | join(" ")' "$ICONS_JSON_FILE") + group2_icons=$(jq -r '.group2 | join(" ")' "$ICONS_JSON_FILE") + group3_icons=$(jq -r '.group3 | join(" ")' "$ICONS_JSON_FILE") + + BLANK_IMAGE="blank.png" + magick -size "160x160" xc:none "$BLANK_IMAGE" + + SKIN_COUNT=${#skin_dirs[@]} + INDEX=1 + + for skin_path in "${skin_dirs[@]}"; do + SKIN_DIR="$DANSER_SKINS_DIR/$skin_path" + [ ! -d "$SKIN_DIR" ] && { echo "Skipping missing skin directory: $SKIN_DIR"; ((INDEX++)); continue; } + + skin_header="$skin_path" + ini_file=$(find "$SKIN_DIR" -maxdepth 1 -iname "skin.ini" | head -n1 || true) + if [ -f "$ini_file" ]; then + name_line=$(grep -i '^[[:space:]]*Name:' "$ini_file" | head -n1 || true) + if [ -n "$name_line" ]; then + val="${name_line#*:}" + val="$(echo "$val" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')" + if [ -n "$val" ]; then + sanitized="$(sanitize_filename "$val")" + [ -n "$sanitized" ] && skin_header="$sanitized" + fi + fi + fi + + echo "" + echo "[$INDEX/$SKIN_COUNT] Skin: $skin_header" + + ICON_FOLDER="$SKIN_DIR" + OUTPUT_DIR="$REPO_MOD_ICONS_DIR/$skin_path" + mkdir -p "$OUTPUT_DIR" + OUTPUT="$OUTPUT_DIR/${skin_header}-mod-icons.webp" + + row_images=() + row_index=1 + + for group_list in "$group1_icons" "$group2_icons" "$group3_icons"; do + montage_files=() + for icon in $group_list; do + file="" + if [ -f "${ICON_FOLDER}/selection-mod-${icon}@2x.png" ]; then + file="${ICON_FOLDER}/selection-mod-${icon}@2x.png" + elif [ -f "${ICON_FOLDER}/selection-mod-${icon}.png" ]; then + file="${ICON_FOLDER}/selection-mod-${icon}.png" + elif [ -f "${DEFAULT_SKIN_DIR}/selection-mod-${icon}@2x.png" ]; then + file="${DEFAULT_SKIN_DIR}/selection-mod-${icon}@2x.png" + fi + + [ -n "$file" ] && montage_files+=("$file") + done + + while [ "${#montage_files[@]}" -lt 7 ]; do + montage_files+=("$BLANK_IMAGE") + done + + magick montage "${montage_files[@]}" \ + -tile "7x1" -geometry "160x160+10+10" -background none \ + "row_${row_index}.png" + row_images+=("row_${row_index}.png") + row_index=$((row_index + 1)) + done + + magick montage "${row_images[@]}" \ + -tile "1x${#row_images[@]}" -geometry "+10+10" -background none \ + "temp_combined.png" + + magick "temp_combined.png" -define webp:lossless=true "$OUTPUT" + rm temp_combined.png row_*.png + + echo " ✓ Mod Icons Generated at $OUTPUT" + INDEX=$((INDEX + 1)) + done + + rm "$BLANK_IMAGE" + + echo "" + echo "[Mod Icon Generation Finished — processed $SKIN_COUNT skins]" + + - name: Convert PNGs to WEBPs + shell: bash + run: | + echo "[Convert PNG → WEBP Started]" + + if [ -z "${CHANGED_SKINS_FILE:-}" ] || [ ! -s "$CHANGED_SKINS_FILE" ]; then + echo "No skins changed. Skipping conversion." + exit 0 + fi + + mapfile -t skins < "$CHANGED_SKINS_FILE" + [ "${#skins[@]}" -eq 0 ] && { echo "No skins to process. Exiting."; exit 0; } + + convert_pngs_to_webp() { + local base_dir="$1" + local skin_path="$2" + local dir="$base_dir/$skin_path" + echo " → Processing: $dir" + [ ! -d "$dir" ] && { echo " ✖ Directory does not exist: $dir"; return; } + find "$dir" -type f -iname "*.png" | while read -r png; do + webp="${png%.png}.webp" + echo " ↳ Converting: $png → $webp" + magick "$png" -define webp:lossless=false -quality 90 "$webp" && rm -f "$png" + done + } + + for skin_path in "${skins[@]}"; do + [ -z "$skin_path" ] && continue + convert_pngs_to_webp "$REPO_RANKING_PANEL_DIR" "$skin_path" + convert_pngs_to_webp "$REPO_THUMBNAIL_DIR" "$skin_path" + done + + echo "[Convert PNG → WEBP Finished]" + + - name: Create OSK Files + shell: bash + run: | + echo "[OSK Creation Job Started]" + + if [ -z "${CHANGED_SKINS_FILE:-}" ] || [ ! -s "$CHANGED_SKINS_FILE" ]; then + echo "No skins changed. Skipping OSK creation." + exit 0 + fi + + mapfile -t skin_dirs < "$CHANGED_SKINS_FILE" + [ "${#skin_dirs[@]}" -eq 0 ] && { echo "No skins to process. Exiting."; exit 0; } + + sanitize_filename() { + echo "$1" | \ + tr -d '\000-\037' | \ + sed -e 's#[\\/:\*\?"<>|]#-#g' | \ + sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' + } + + FIXED_TIMESTAMP="2025-01-01 00:00:00" + SKIN_COUNT=${#skin_dirs[@]} + INDEX=1 + + for skin_path in "${skin_dirs[@]}"; do + SKIN_DIR="$DANSER_SKINS_DIR/$skin_path" + [ ! -d "$SKIN_DIR" ] && { echo "Skipping missing skin directory: $SKIN_DIR"; ((INDEX++)); continue; } + + OUTPUT_DIR="$OSK_PATH/$skin_path" + mkdir -p "$OUTPUT_DIR" + + skin_header="$skin_path" + ini_file=$(find "$SKIN_DIR" -maxdepth 1 -iname "skin.ini" | head -n1 || true) + if [ -f "$ini_file" ]; then + name_line=$(grep -i '^[[:space:]]*name:' "$ini_file" | head -n1 || true) + if [ -n "$name_line" ]; then + val="${name_line#*:}" + val="$(echo "$val" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')" + if [ -n "$val" ]; then + sanitized="$(sanitize_filename "$val")" + [ -n "$sanitized" ] && skin_header="$sanitized" + fi + fi + fi + + echo "" + echo "[$INDEX/$SKIN_COUNT] Processing skin: $skin_header" + + (cd "$SKIN_DIR" && find . -type f -exec touch -d "$FIXED_TIMESTAMP" {} +) + + (cd "$SKIN_DIR" && find . -type f | sort | \ + zip -rq -D -X -9 --compression-method deflate \ + "$OUTPUT_DIR/${skin_header}.osk" -@) + + echo " ✓ OSK file created at $OUTPUT_DIR/${skin_header}.osk" + INDEX=$((INDEX + 1)) + done + + echo "" + echo "[OSK Creation Job Finished — processed $SKIN_COUNT skins]" - name: Generate README + shell: bash run: | - echo "Starting README generation..." + echo "Generating README index…" + + sanitize_filename() { + echo "$1" | \ + tr -d '\000-\037' | \ + sed -e 's#[\\/:\*\?"<>|]#-#g' -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' + } + + url_encode_path() { + local IFS='/' + local parts=($1) + local encoded="" + for part in "${parts[@]}"; do + [ -n "$encoded" ] && encoded+="/" + encoded+=$(printf '%s' "$part" | jq -sRr @uri) + done + echo "$encoded" + } SKINS_JSON_FILE="${{ github.workspace }}/.gitea/workflows/skins.json" DESC_FILE=$(mktemp) - jq -r '.descriptions | to_entries[] | "\(.key)=\(.value)"' "$SKINS_JSON_FILE" > "$DESC_FILE" - echo "---" > "$README_PATH" echo "gitea: none" >> "$README_PATH" echo "include_toc: true" >> "$README_PATH" @@ -372,186 +659,336 @@ jobs: echo "" >> "$README_PATH" echo "# Skins" >> "$README_PATH" echo "" >> "$README_PATH" - echo "This README is automatically generated using CI/CD pipelines, Danser, ImageMagick, and FFmpeg. The workflow generates gameplay previews, creates mod icons, packages .osk files, and updates the README with media and descriptions, with the Skins included in [Skins](./Skins)." >> "$README_PATH" + echo "" >> "$README_PATH" + echo "" >> "$README_PATH" + echo "**Go back to [osc/skins]($REGISTRY_URL/osc/skins)**" >> "$README_PATH" + echo "" >> "$README_PATH" + echo "**Click on the Skin name to download it, or click on the thumbnail to see more about the skin, including a video preview, screenshots, and mod icons.**" >> "$README_PATH" echo "" >> "$README_PATH" + jq -r '.descriptions | to_entries[] | "\(.key)=\(.value)"' "$SKINS_JSON_FILE" > "$DESC_FILE" + jq -r '.order[]?' "$SKINS_JSON_FILE" > order.txt + get_desc() { - key=$1 - escaped_key=$(printf '%s\n' "$key" | sed 's/[\/&]/\\&/g') - grep "^${escaped_key}=" "$DESC_FILE" | cut -d '=' -f2- + grep -F -m1 -- "$1=" "$DESC_FILE" 2>/dev/null | cut -d '=' -f2- || true } - ORDER_FILE=$(mktemp) - JSON_SKINS_TMP=$(mktemp) - SEEN_HEADERS_FILE=$(mktemp) - - jq -r '.order[]' "$SKINS_JSON_FILE" > "$ORDER_FILE" - cp "$ORDER_FILE" "$JSON_SKINS_TMP" - + declare -A ordered while IFS= read -r skin; do + [ "$skin" = "default-skin" ] && continue + ordered["$skin"]=1 dir="$DANSER_SKINS_DIR/$skin" - if [ ! -d "$dir" ]; then - echo "Skipping missing skin directory: $skin" - continue - fi + [ ! -d "$dir" ] && continue - ini_file=$(find "$dir" -maxdepth 1 -iname "skin.ini" | head -n 1) + ini_file=$(find "$dir" -maxdepth 1 -iname "skin.ini" | head -n1 || true) skin_header="$skin" - if [ -f "$ini_file" ]; then - name_line=$(grep -i '^[[:space:]]*name:' "$ini_file" | head -n 1) - if [ -n "$name_line" ]; then - skin_header=$(echo "$name_line" | cut -d ':' -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') - fi - fi - if grep -Fxq "$skin_header" "$SEEN_HEADERS_FILE"; then - echo "Skipping duplicate skin header from JSON order: $skin_header" + if [ -f "$ini_file" ]; then + name_line=$(grep -a -i -m1 'Name[[:space:]]*:' "$ini_file" || true) + if [ -n "$name_line" ]; then + val="${name_line#*:}" + val="$(echo "$val" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')" + [ -n "$val" ] && skin_header=$(sanitize_filename "$val") + else + skin_header=$(sanitize_filename "$skin") + fi + else continue fi - echo "$skin_header" >> "$SEEN_HEADERS_FILE" - escaped_img=$(echo "$skin_header.gif" | sed 's/ /%20/g') - escaped_osk=$(echo "$skin_header.osk" | sed 's/ /%20/g') + raw_path="$(printf "%s/%s" "$skin" "$skin_header" | sed 's/^ *//;s/ *$//')" + base_path=$(url_encode_path "$raw_path") - echo "## [$skin_header]($REGISTRY_URL/$USER_REPOSITORY/media/tag/$new_tag/export/$escaped_osk)" >> "$README_PATH" + echo "## [$skin_header]($REGISTRY_URL/$USER_REPOSITORY/media/tag/$new_tag/export/${base_path}.osk)" >> "$README_PATH" echo "" >> "$README_PATH" - skin_desc=$(get_desc "$skin") - if [ -n "$skin_desc" ]; then - echo "$skin_desc" >> "$README_PATH" - echo "" >> "$README_PATH" - fi + desc=$(get_desc "$skin") + [ -n "$desc" ] && { echo "$desc" >> "$README_PATH"; echo "" >> "$README_PATH"; } if [ -f "$ini_file" ]; then - author_line=$(grep -i '^[[:space:]]*Author:' "$ini_file" | head -n 1 || true) + author_line=$(grep -i '^[[:space:]]*Author:' "$ini_file" | head -n1 || true) if [ -n "$author_line" ]; then author=$(echo "$author_line" | cut -d ':' -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') - if [ -n "$author" ]; then - echo "**Author:** $author" >> "$README_PATH" - echo "" >> "$README_PATH" - fi + [ -n "$author" ] && { echo "**Author:** $author" >> "$README_PATH"; echo "" >> "$README_PATH"; } fi fi - echo "![$skin_header Gameplay](media/gameplay/$escaped_img)" >> "$README_PATH" + echo "[![$skin_header Thumbnail](media/thumbnail/${base_path}.webp)](/docs/${base_path}.md)" >> "$README_PATH" echo "" >> "$README_PATH" + done < order.txt - if [ -f "media/panel/${skin_header}.png" ]; then - escaped_panel=$(echo "${skin_header}.png" | sed 's/ /%20/g') - echo "![$skin_header Ranking Panel](media/panel/$escaped_panel)" >> "$README_PATH" - echo "" >> "$README_PATH" - fi + for dir in "$DANSER_SKINS_DIR"/*; do + [ -d "$dir" ] || continue + skin="$(basename "$dir")" + [ "$skin" = "default-skin" ] && continue + [[ -n "${ordered[$skin]}" ]] && continue - mod_icon_file="${skin_header}-mod-icons.png" - if [ -f "media/icons/$mod_icon_file" ]; then - escaped_mod=$(echo "$mod_icon_file" | sed 's/ /%20/g') - echo "![$skin_header Mods](media/icons/$escaped_mod)" >> "$README_PATH" - echo "" >> "$README_PATH" - fi - done < "$ORDER_FILE" - - find "$DANSER_SKINS_DIR" -mindepth 1 -maxdepth 1 -type d | while IFS= read -r dir; do - skin=$(basename "$dir") - - ini_file=$(find "$dir" -maxdepth 1 -iname "skin.ini" | head -n 1) + ini_file=$(find "$dir" -maxdepth 1 -iname "skin.ini" | head -n1 || true) skin_header="$skin" + if [ -f "$ini_file" ]; then - name_line=$(grep -i '^[[:space:]]*name:' "$ini_file" | head -n 1) + name_line=$(grep -a -i -m1 'Name[[:space:]]*:' "$ini_file" || true) if [ -n "$name_line" ]; then - skin_header=$(echo "$name_line" | cut -d ':' -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') + val="${name_line#*:}" + val="$(echo "$val" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')" + [ -n "$val" ] && skin_header=$(sanitize_filename "$val") + else + skin_header=$(sanitize_filename "$skin") fi - fi - - if grep -Fxq "$skin_header" "$SEEN_HEADERS_FILE"; then + else continue fi - if grep -Fxq "$skin" "$JSON_SKINS_TMP"; then - continue - fi + raw_path="$(printf "%s/%s" "$skin" "$skin_header" | sed 's/^ *//;s/ *$//')" + base_path=$(url_encode_path "$raw_path") - echo "$skin_header" >> "$SEEN_HEADERS_FILE" - - escaped_img=$(echo "$skin_header.gif" | sed 's/ /%20/g') - escaped_osk=$(echo "$skin_header.osk" | sed 's/ /%20/g') - - echo "## [$skin_header]($REGISTRY_URL/$USER_REPOSITORY/media/tag/$new_tag/export/$escaped_osk)" >> "$README_PATH" + echo "## [$skin_header]($REGISTRY_URL/$USER_REPOSITORY/media/tag/$new_tag/export/${base_path}.osk)" >> "$README_PATH" echo "" >> "$README_PATH" if [ -f "$ini_file" ]; then - author_line=$(grep -i '^[[:space:]]*Author:' "$ini_file" | head -n 1 || true) + author_line=$(grep -i '^[[:space:]]*Author:' "$ini_file" | head -n1 || true) if [ -n "$author_line" ]; then author=$(echo "$author_line" | cut -d ':' -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') - if [ -n "$author" ]; then - echo "**Author:** $author" >> "$README_PATH" - echo "" >> "$README_PATH" - fi + [ -n "$author" ] && { echo "**Author:** $author" >> "$README_PATH"; echo "" >> "$README_PATH"; } fi fi - echo "![$skin_header Gameplay](media/gameplay/$escaped_img)" >> "$README_PATH" + echo "[![$skin_header Thumbnail](media/thumbnail/${base_path}.webp)](/docs/${base_path}.md)" >> "$README_PATH" echo "" >> "$README_PATH" - - if [ -f "media/panel/${skin_header}.png" ]; then - escaped_panel=$(echo "${skin_header}.png" | sed 's/ /%20/g') - echo "![$skin_header Ranking Panel](media/panel/$escaped_panel)" >> "$README_PATH" - echo "" >> "$README_PATH" - fi - - mod_icon_file="${skin_header}-mod-icons.png" - if [ -f "media/icons/$mod_icon_file" ]; then - escaped_mod=$(echo "$mod_icon_file" | sed 's/ /%20/g') - echo "![$skin_header Mods](media/icons/$escaped_mod)" >> "$README_PATH" - echo "" >> "$README_PATH" - fi done - rm "$DESC_FILE" "$ORDER_FILE" "$JSON_SKINS_TMP" "$SEEN_HEADERS_FILE" - echo "# Build History" >> "$README_PATH" echo "" >> "$README_PATH" echo "| Version | Date |" >> "$README_PATH" echo "| ------- | ---- |" >> "$README_PATH" current_commit_date=$(TZ="Europe/Zurich" date -d "$(git log -1 --format=%cI)" "+%d.%m.%Y %H:%M:%S") - echo "| [\`$new_tag (Current)\`](https://git.sulejmani.xyz/arlind/skins/src/tag/$new_tag/README.md) | $current_commit_date |" >> "$README_PATH" + echo "| [\`$new_tag (Current)\`]($REGISTRY_URL/$USER_REPOSITORY/src/tag/$new_tag/README.md) | $current_commit_date |" >> "$README_PATH" - git tag --sort=-v:refname | grep -v "^$new_tag$" | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' | while read -r tag; do - tag_date=$(git log -1 --format=%ci "$tag") - formatted_date=$(TZ="Europe/Zurich" date -d "$tag_date" "+%d.%m.%Y %H:%M:%S") - echo "| [\`$tag\`](https://git.sulejmani.xyz/arlind/skins/src/tag/$tag/README.md) | $formatted_date |" >> "$README_PATH" + old_tags=$(git tag --sort=-v:refname | grep -v "^$new_tag$" | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' || true) + if [ -n "$old_tags" ]; then + echo "$old_tags" | while read -r tag; do + tag_date=$(git log -1 --format=%ci "$tag") + formatted_date=$(TZ="Europe/Zurich" date -d "$tag_date" "+%d.%m.%Y %H:%M:%S") + echo "| [\`$tag\`]($REGISTRY_URL/$USER_REPOSITORY/src/tag/$tag/README.md) | $formatted_date |" >> "$README_PATH" + done + fi + + echo "README index generated successfully." + + - name: Generate Per-Skin Pages + shell: bash + run: | + echo "Generating detailed per-skin markdown pages…" + + sanitize_filename() { + echo "$1" | \ + tr -d '\000-\037' | \ + sed -e 's#[\\/:\*\?"<>|]#-#g' | \ + sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' + } + + url_encode_path() { + local IFS='/' + local parts=($1) + local encoded="" + for part in "${parts[@]}"; do + [ -n "$encoded" ] && encoded+="/" + encoded+=$(printf '%s' "$part" | jq -sRr @uri) + done + echo "$encoded" + } + + mkdir -p "$DOC_DIR" + + for dir in "$DANSER_SKINS_DIR"/*; do + [ -d "$dir" ] || continue + + skin=$(basename "$dir") + [ "$skin" = "default-skin" ] && continue + ini_file=$(find "$dir" -maxdepth 1 -iname "skin.ini" | head -n1 || true) + skin_header="$skin" + + if [ -f "$ini_file" ]; then + line=$(grep -i '^[[:space:]]*Name:' "$ini_file" | head -n1 || true) + if [ -n "$line" ]; then + val="${line#*:}" + val="$(echo "$val" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')" + if [ -n "$val" ]; then + skin_header=$(sanitize_filename "$val") + fi + fi + fi + + raw_path="${skin}/${skin_header}" + base_path=$(url_encode_path "$raw_path") + osk_url="$REGISTRY_URL/$USER_REPOSITORY/media/tag/$new_tag/export/${base_path}.osk" + md_file_path="${DOC_DIR}/${raw_path}.md" + + mkdir -p "$(dirname "$md_file_path")" + + video_url="$REGISTRY_URL/$USER_REPOSITORY/media/tag/$new_tag/media/gameplay/${base_path}.mp4" + + author="" + if [ -f "$ini_file" ]; then + author_line=$(grep -i '^[[:space:]]*Author:' "$ini_file" | head -n1 || true) + if [ -n "$author_line" ]; then + author=$(echo "$author_line" | cut -d ':' -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') + fi + fi + + { + echo "# [$skin_header]($osk_url)" + echo "" + [ -n "$author" ] && echo "**Author:** $author" + [ -n "$author" ] && echo "" + + echo "## Hitsounds" + echo "" + echo "" + + echo "## Ranking Panel" + echo "![](/media/panel/${base_path}.webp)" + echo "" + + echo "## Mod Icons" + echo "![](/media/icons/${base_path}-mod-icons.webp)" + + echo "" + echo "## Build History" + echo "" + echo "| Version | Date |" + echo "| ------- | ---- |" + + current_commit_date=$(TZ="Europe/Zurich" date -d "$(git log -1 --format=%cI)" "+%d.%m.%Y %H:%M:%S") + echo "| [\`$new_tag (Current)\`]($REGISTRY_URL/$USER_REPOSITORY/src/tag/$new_tag/docs/${base_path}.md) | $current_commit_date |" + + old_tags=$(git tag --sort=-v:refname | grep -v "^$new_tag$" | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' || true) + if [ -n "$old_tags" ]; then + echo "$old_tags" | while read -r tag; do + raw_osk_path="export/${skin}/${skin_header}.osk" + if git ls-tree -r --name-only "$tag" | grep -Fx -- "$raw_osk_path" >/dev/null; then + tag_date=$(git log -1 --format=%ci "$tag") + formatted_date=$(TZ="Europe/Zurich" date -d "$tag_date" "+%d.%m.%Y %H:%M:%S") + echo "| [\`$tag\`]($REGISTRY_URL/$USER_REPOSITORY/src/tag/$tag/docs/${base_path}.md) | $formatted_date |" + fi + done + fi + + } > "$md_file_path" + + echo " → Wrote $md_file_path" done - echo "README generation completed." + echo "Per-skin markdown pages complete." + + - name: Cleanup Extra Files + shell: bash + run: | + set -euo pipefail + echo "[Cleanup Extra Files Started]" + + [ -f how-to-use.md ] && rm -f how-to-use.md + [ -f src/replay.osr ] && rm -f src/replay.osr + [ -d src/default-skin ] && rm -rf src/default-skin + + readarray -t skins <<< "$ALL_SKINS_DIR" + + sanitize_filename() { + echo "$1" | \ + tr -d '\000-\037' | \ + sed -e 's#[\\/:\*\?"<>|]#-#g' | \ + sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' + } + + prune_dir() { + local root="$1" + local skin="$2" + local expected="$3" + + for f in "$root"/*; do + [ -f "$f" ] || continue + name="$(basename "$f")" + if printf '%s\n' "${skins[@]}" | grep -Fxq -- "$name"; then + continue + fi + echo " → Removing unexpected root file: $f" + rm -f "$f" + done + + dir="$root/$skin" + [ -d "$dir" ] || return + for f in "$dir"/*; do + [ -e "$f" ] || continue + if [[ "$(basename "$f")" != "$expected" ]]; then + echo " → Removing unexpected file: $f" + rm -f "$f" + fi + done + } + + for root in "$REPO_SCREENSHOT_DIR" "$REPO_RANKING_PANEL_DIR" "$REPO_MOD_ICONS_DIR" "$REPO_THUMBNAIL_DIR" "$OSK_PATH" "$DOC_DIR"; do + [ -d "$root" ] || continue + for dir in "$root"/*; do + [ -d "$dir" ] || continue + name="$(basename "$dir")" + if ! printf '%s\n' "${skins[@]}" | grep -Fxq -- "$name"; then + echo " → Skin '$name' deleted—removing directory $dir" + rm -rf "$dir" + fi + done + done + + for skin in "${skins[@]}"; do + header=$(sanitize_filename "$skin") + ini=$(find "$DANSER_SKINS_DIR/$skin" -maxdepth 1 -type f -iname "skin.ini" -print -quit || true) + if [[ -f "$ini" ]]; then + raw=$(grep -i '^[[:space:]]*Name:' "$ini" | head -n1 || true) + raw="${raw#*:}" + raw="$(echo "$raw" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')" + tmp_header=$(sanitize_filename "$raw") + [[ -n "$tmp_header" ]] && header="$tmp_header" + fi + + prune_dir "$REPO_SCREENSHOT_DIR" "$skin" "$header.mp4" + prune_dir "$REPO_RANKING_PANEL_DIR" "$skin" "$header.webp" + prune_dir "$REPO_MOD_ICONS_DIR" "$skin" "$header-mod-icons.webp" + prune_dir "$REPO_THUMBNAIL_DIR" "$skin" "$header.webp" + prune_dir "$OSK_PATH" "$skin" "$header.osk" + prune_dir "$DOC_DIR" "$skin" "$header.md" + done + + echo "[Cleanup Extra Files Complete]" - name: Configure Git + shell: bash run: | - echo "Configuring git user and LFS..." git config user.email "arlind@sulej.ch" git config user.name "ci-bot" - git config lfs.https://${{ secrets.CONTAINER_REGISTRY }}/arlind/skins.git/info/lfs.locksverify true - echo "Git configured." - name: Add and Commit changes + shell: bash run: | git config advice.addIgnoredFile false - echo "Staging files for commit..." - git add README.md media/gameplay/* media/panel/* media/icons/* export/* - echo "Committing changes..." + + for p in docs/ media/gameplay media/thumbnail media/panel media/icons export README.md how-to-use.md src; do + if [ -e "$p" ]; then + git add -A "$p" + fi + done + git commit -m "[ci skip] push back from pipeline" -q || echo "No changes to commit" - echo "Commit step completed." - name: Push changes and create tag + shell: bash run: | - echo "Checking branch and pushing changes..." if [ "${GITHUB_REF}" = "refs/heads/main" ]; then - echo "On main branch: pushing to origin main..." git push origin HEAD:main || echo "No changes to push" - echo "Creating and pushing tag $new_tag..." git tag "$new_tag" git push origin "$new_tag" else - echo "On branch ${GITHUB_REF_NAME}: pushing to origin ${GITHUB_REF_NAME}..." git push origin HEAD:"${GITHUB_REF_NAME}" || echo "No changes to push" fi - echo "Push step completed." diff --git a/.gitea/workflows/skins.json b/.gitea/workflows/skins.json index cb28d7b8..9146d7bc 100644 --- a/.gitea/workflows/skins.json +++ b/.gitea/workflows/skins.json @@ -1,10 +1,8 @@ { - "order": [ - "example1", - "example2" - ], - "descriptions": { - "example1": "Description of example1", - "example2": "Description of example2" - } + "order": [ + + ], + "descriptions": { + + } } diff --git a/Skins/++scylla funny mix EPIC/approachcircle.png b/Skins/++scylla funny mix EPIC/approachcircle.png new file mode 100644 index 00000000..7931905a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c05fd79407ca1b2bf7f8ab81e48c64969f41360a5e785fa8d1af95ecc23c3c5 +size 98957 diff --git a/Skins/++scylla funny mix EPIC/arrow-warning.png b/Skins/++scylla funny mix EPIC/arrow-warning.png new file mode 100644 index 00000000..cd79e303 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/arrow-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12208580c5b9906a3f13ca7d33c6d1d81c931b4f6f1860a4f83d189fe5b711e8 +size 22438 diff --git a/Skins/++scylla funny mix EPIC/arrow-warning@2x.png b/Skins/++scylla funny mix EPIC/arrow-warning@2x.png new file mode 100644 index 00000000..0db670b8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/arrow-warning@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae0cd7326e7c6bf2ac5ed7dbc4440d6e935e1816c960dacb1d672fbeb9444fe +size 54790 diff --git a/Skins/++scylla funny mix EPIC/button-left.png b/Skins/++scylla funny mix EPIC/button-left.png new file mode 100644 index 00000000..cd58a579 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244466e0f951dbba43c975fd4b22411a29f352e198dd1f8975005d971e136e22 +size 200 diff --git a/Skins/++scylla funny mix EPIC/button-left@2x.png b/Skins/++scylla funny mix EPIC/button-left@2x.png new file mode 100644 index 00000000..55d4f39e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/button-left@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba3204eb71562df08ca4f4174cfbda4905cbb1d88a3fe5420ef7a9966aab79e +size 1688 diff --git a/Skins/++scylla funny mix EPIC/button-middle.png b/Skins/++scylla funny mix EPIC/button-middle.png new file mode 100644 index 00000000..bfc31fc0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:728f0488b2c64b0369914abd710b2cb03b27e80e4953871525abd1552167fbcb +size 371 diff --git a/Skins/++scylla funny mix EPIC/button-middle@2x.png b/Skins/++scylla funny mix EPIC/button-middle@2x.png new file mode 100644 index 00000000..3a28f276 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/button-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b85978c86533fb3a8c2c6b1122b7cb4983289fe06aed8e4c349f01479354e92 +size 2147 diff --git a/Skins/++scylla funny mix EPIC/button-right.png b/Skins/++scylla funny mix EPIC/button-right.png new file mode 100644 index 00000000..51621da6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8863b3fef763b513a01170b32787b6187515dfd1199b496472f507ac8641c43 +size 250 diff --git a/Skins/++scylla funny mix EPIC/button-right@2x.png b/Skins/++scylla funny mix EPIC/button-right@2x.png new file mode 100644 index 00000000..00409293 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/button-right@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff65efaaeb0d9775d73a7c9a69d64bb0e6e8e7ad5c200923dde28d86a0fa8ad +size 1533 diff --git a/Skins/++scylla funny mix EPIC/cursor - Copy.png b/Skins/++scylla funny mix EPIC/cursor - Copy.png new file mode 100644 index 00000000..0811917d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/cursor - Copy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f71814368275fe4637703e8a89cd089f8ec91f67d75afa11009a886be3348ad +size 27048 diff --git a/Skins/++scylla funny mix EPIC/cursor.png b/Skins/++scylla funny mix EPIC/cursor.png new file mode 100644 index 00000000..b62dcd40 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0835227ce1df2e4d67efc88f6222685a465817ef05241083a62805b2c0600a73 +size 15456 diff --git a/Skins/++scylla funny mix EPIC/cursor123.png b/Skins/++scylla funny mix EPIC/cursor123.png new file mode 100644 index 00000000..cf91083b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/cursor123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bdb9cf4ea82f2c2caca14db97d2aaeef8d89e650f02646360bb0fe72767001 +size 19608 diff --git a/Skins/++scylla funny mix EPIC/cursor@2x2.png b/Skins/++scylla funny mix EPIC/cursor@2x2.png new file mode 100644 index 00000000..c354bc1a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/cursor@2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41100f9ab3c151435e1eb42161eecff4831b6264aabc9e54b85a6a484d5e05a7 +size 24812 diff --git a/Skins/++scylla funny mix EPIC/cursortrail - Copy.png b/Skins/++scylla funny mix EPIC/cursortrail - Copy.png new file mode 100644 index 00000000..563ab2aa --- /dev/null +++ b/Skins/++scylla funny mix EPIC/cursortrail - Copy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5a6a7f8ab20bd9f51ab8cc2e05003df7ef3870b0e083bf7fedc6b3cdd59a6e +size 4248 diff --git a/Skins/++scylla funny mix EPIC/cursortrail.png b/Skins/++scylla funny mix EPIC/cursortrail.png new file mode 100644 index 00000000..0d856d12 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c40208bf24627dd6fab4f986e042f87aef84b3db6836843a31c3a6ab03e3ff +size 4460 diff --git a/Skins/++scylla funny mix EPIC/cursortrail2.png b/Skins/++scylla funny mix EPIC/cursortrail2.png new file mode 100644 index 00000000..ee073a78 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/cursortrail2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1db239bcba8075cec5dd0d55986ea9c0a618ed5fe96391323a2b12a4908ca10e +size 4249 diff --git a/Skins/++scylla funny mix EPIC/cursortrail@2x2.png b/Skins/++scylla funny mix EPIC/cursortrail@2x2.png new file mode 100644 index 00000000..19f88edd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/cursortrail@2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea55d7c84805cd0bd3c164113206eadcf309f22b9fabe3e80240b694a579e61 +size 16556 diff --git a/src/default-skin/default-0.png b/Skins/++scylla funny mix EPIC/default-0.png similarity index 100% rename from src/default-skin/default-0.png rename to Skins/++scylla funny mix EPIC/default-0.png diff --git a/src/default-skin/default-0@2x.png b/Skins/++scylla funny mix EPIC/default-0@2x.png similarity index 100% rename from src/default-skin/default-0@2x.png rename to Skins/++scylla funny mix EPIC/default-0@2x.png diff --git a/src/default-skin/default-1.png b/Skins/++scylla funny mix EPIC/default-1.png similarity index 100% rename from src/default-skin/default-1.png rename to Skins/++scylla funny mix EPIC/default-1.png diff --git a/src/default-skin/default-1@2x.png b/Skins/++scylla funny mix EPIC/default-1@2x.png similarity index 100% rename from src/default-skin/default-1@2x.png rename to Skins/++scylla funny mix EPIC/default-1@2x.png diff --git a/src/default-skin/default-2.png b/Skins/++scylla funny mix EPIC/default-2.png similarity index 100% rename from src/default-skin/default-2.png rename to Skins/++scylla funny mix EPIC/default-2.png diff --git a/src/default-skin/default-2@2x.png b/Skins/++scylla funny mix EPIC/default-2@2x.png similarity index 100% rename from src/default-skin/default-2@2x.png rename to Skins/++scylla funny mix EPIC/default-2@2x.png diff --git a/src/default-skin/default-3.png b/Skins/++scylla funny mix EPIC/default-3.png similarity index 100% rename from src/default-skin/default-3.png rename to Skins/++scylla funny mix EPIC/default-3.png diff --git a/src/default-skin/default-3@2x.png b/Skins/++scylla funny mix EPIC/default-3@2x.png similarity index 100% rename from src/default-skin/default-3@2x.png rename to Skins/++scylla funny mix EPIC/default-3@2x.png diff --git a/src/default-skin/default-4.png b/Skins/++scylla funny mix EPIC/default-4.png similarity index 100% rename from src/default-skin/default-4.png rename to Skins/++scylla funny mix EPIC/default-4.png diff --git a/src/default-skin/default-4@2x.png b/Skins/++scylla funny mix EPIC/default-4@2x.png similarity index 100% rename from src/default-skin/default-4@2x.png rename to Skins/++scylla funny mix EPIC/default-4@2x.png diff --git a/src/default-skin/default-5.png b/Skins/++scylla funny mix EPIC/default-5.png similarity index 100% rename from src/default-skin/default-5.png rename to Skins/++scylla funny mix EPIC/default-5.png diff --git a/src/default-skin/default-5@2x.png b/Skins/++scylla funny mix EPIC/default-5@2x.png similarity index 100% rename from src/default-skin/default-5@2x.png rename to Skins/++scylla funny mix EPIC/default-5@2x.png diff --git a/src/default-skin/default-6.png b/Skins/++scylla funny mix EPIC/default-6.png similarity index 100% rename from src/default-skin/default-6.png rename to Skins/++scylla funny mix EPIC/default-6.png diff --git a/src/default-skin/default-6@2x.png b/Skins/++scylla funny mix EPIC/default-6@2x.png similarity index 100% rename from src/default-skin/default-6@2x.png rename to Skins/++scylla funny mix EPIC/default-6@2x.png diff --git a/src/default-skin/default-7.png b/Skins/++scylla funny mix EPIC/default-7.png similarity index 100% rename from src/default-skin/default-7.png rename to Skins/++scylla funny mix EPIC/default-7.png diff --git a/src/default-skin/default-7@2x.png b/Skins/++scylla funny mix EPIC/default-7@2x.png similarity index 100% rename from src/default-skin/default-7@2x.png rename to Skins/++scylla funny mix EPIC/default-7@2x.png diff --git a/src/default-skin/default-8.png b/Skins/++scylla funny mix EPIC/default-8.png similarity index 100% rename from src/default-skin/default-8.png rename to Skins/++scylla funny mix EPIC/default-8.png diff --git a/src/default-skin/default-8@2x.png b/Skins/++scylla funny mix EPIC/default-8@2x.png similarity index 100% rename from src/default-skin/default-8@2x.png rename to Skins/++scylla funny mix EPIC/default-8@2x.png diff --git a/src/default-skin/default-9.png b/Skins/++scylla funny mix EPIC/default-9.png similarity index 100% rename from src/default-skin/default-9.png rename to Skins/++scylla funny mix EPIC/default-9.png diff --git a/src/default-skin/default-9@2x.png b/Skins/++scylla funny mix EPIC/default-9@2x.png similarity index 100% rename from src/default-skin/default-9@2x.png rename to Skins/++scylla funny mix EPIC/default-9@2x.png diff --git a/Skins/++scylla funny mix EPIC/drum-hitclap.wav b/Skins/++scylla funny mix EPIC/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/++scylla funny mix EPIC/drum-hitfinish.wav b/Skins/++scylla funny mix EPIC/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/++scylla funny mix EPIC/drum-hitnormal.wav b/Skins/++scylla funny mix EPIC/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/src/default-skin/readys.wav b/Skins/++scylla funny mix EPIC/drum-hitwhistle.wav similarity index 100% rename from src/default-skin/readys.wav rename to Skins/++scylla funny mix EPIC/drum-hitwhistle.wav diff --git a/Skins/++scylla funny mix EPIC/drum-sliderslide.wav b/Skins/++scylla funny mix EPIC/drum-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/src/default-skin/spinner-approachcircle.png b/Skins/++scylla funny mix EPIC/followpoint-0.png similarity index 100% rename from src/default-skin/spinner-approachcircle.png rename to Skins/++scylla funny mix EPIC/followpoint-0.png diff --git a/src/default-skin/spinner/new spinner/spinner-approachcircle.png b/Skins/++scylla funny mix EPIC/followpoint-1.png similarity index 100% rename from src/default-skin/spinner/new spinner/spinner-approachcircle.png rename to Skins/++scylla funny mix EPIC/followpoint-1.png diff --git a/Skins/++scylla funny mix EPIC/followpoint-11.png b/Skins/++scylla funny mix EPIC/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/++scylla funny mix EPIC/followpoint-12.png b/Skins/++scylla funny mix EPIC/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/++scylla funny mix EPIC/followpoint-13.png b/Skins/++scylla funny mix EPIC/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/++scylla funny mix EPIC/followpoint-14.png b/Skins/++scylla funny mix EPIC/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/++scylla funny mix EPIC/followpoint-15.png b/Skins/++scylla funny mix EPIC/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/++scylla funny mix EPIC/followpoint-16.png b/Skins/++scylla funny mix EPIC/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/++scylla funny mix EPIC/followpoint-17.png b/Skins/++scylla funny mix EPIC/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/++scylla funny mix EPIC/followpoint-18.png b/Skins/++scylla funny mix EPIC/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/++scylla funny mix EPIC/followpoint-19.png b/Skins/++scylla funny mix EPIC/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/++scylla funny mix EPIC/followpoint-2.png b/Skins/++scylla funny mix EPIC/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/++scylla funny mix EPIC/followpoint-20.png b/Skins/++scylla funny mix EPIC/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/++scylla funny mix EPIC/followpoint-21.png b/Skins/++scylla funny mix EPIC/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/++scylla funny mix EPIC/followpoint-22.png b/Skins/++scylla funny mix EPIC/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/++scylla funny mix EPIC/followpoint-23.png b/Skins/++scylla funny mix EPIC/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/++scylla funny mix EPIC/followpoint-3.png b/Skins/++scylla funny mix EPIC/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/++scylla funny mix EPIC/followpoint-4.png b/Skins/++scylla funny mix EPIC/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/++scylla funny mix EPIC/followpoint-5.png b/Skins/++scylla funny mix EPIC/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/++scylla funny mix EPIC/followpoint-6.png b/Skins/++scylla funny mix EPIC/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/++scylla funny mix EPIC/followpoint-7.png b/Skins/++scylla funny mix EPIC/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/++scylla funny mix EPIC/followpoint-8.png b/Skins/++scylla funny mix EPIC/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/++scylla funny mix EPIC/followpoint-9.png b/Skins/++scylla funny mix EPIC/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/++scylla funny mix EPIC/followpoint.png b/Skins/++scylla funny mix EPIC/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/++scylla funny mix EPIC/hit0-0.png b/Skins/++scylla funny mix EPIC/hit0-0.png new file mode 100644 index 00000000..70bb55ec --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b5f63f4157fb2ceb9a7201f595e0498c93e9e7988d8cd3aa4a96cab6c9fe5 +size 162 diff --git a/Skins/++scylla funny mix EPIC/hit0-0@2x.png b/Skins/++scylla funny mix EPIC/hit0-0@2x.png new file mode 100644 index 00000000..ce5b63df --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efb3eb62b6a7d4d45832d5189c9f2dcded649c9a79dad8004e20c4f8b3d491b +size 205 diff --git a/Skins/++scylla funny mix EPIC/hit0-1.png b/Skins/++scylla funny mix EPIC/hit0-1.png new file mode 100644 index 00000000..a2b6247c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21eed2505d1a97c1dbea77d71cbdab9aaed7e96b1c7e1ef80847a3deafaa1e04 +size 1318 diff --git a/Skins/++scylla funny mix EPIC/hit0-10.png b/Skins/++scylla funny mix EPIC/hit0-10.png new file mode 100644 index 00000000..fc6526eb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7858c78f76bee67eedab4f4e9834164200cb48fd55b2384eafbc6c385b6649 +size 1833 diff --git a/Skins/++scylla funny mix EPIC/hit0-10@2x.png b/Skins/++scylla funny mix EPIC/hit0-10@2x.png new file mode 100644 index 00000000..f79afac9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3046d675c8bfc1df68970ae80a20a8485a9dc1c4b18a3e9883024801129a09 +size 4123 diff --git a/Skins/++scylla funny mix EPIC/hit0-11.png b/Skins/++scylla funny mix EPIC/hit0-11.png new file mode 100644 index 00000000..e3342cfb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841813024aab04cf97e2da4f7d716311e15f605620b0cae4c14088910da189ed +size 1822 diff --git a/Skins/++scylla funny mix EPIC/hit0-11@2x.png b/Skins/++scylla funny mix EPIC/hit0-11@2x.png new file mode 100644 index 00000000..b598670f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10568d5aff57cccc289dbb929af2edf871ff95b6dc0b6b38e6519bb42d62df77 +size 4203 diff --git a/Skins/++scylla funny mix EPIC/hit0-12.png b/Skins/++scylla funny mix EPIC/hit0-12.png new file mode 100644 index 00000000..9f7fe526 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e5ed7c9a40f9d01a8f666cea14471bf536e3db5fc920c6860202792e40332a +size 1797 diff --git a/Skins/++scylla funny mix EPIC/hit0-12@2x.png b/Skins/++scylla funny mix EPIC/hit0-12@2x.png new file mode 100644 index 00000000..9b2b9aa4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f892af472794fc04aa1de22f053bc6bdd28ec5d8b5d06277add0fb1566de72 +size 4134 diff --git a/Skins/++scylla funny mix EPIC/hit0-13.png b/Skins/++scylla funny mix EPIC/hit0-13.png new file mode 100644 index 00000000..1c98db2f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb448afb3d5f1231a02bc68ba083bca6c141ce46df7af84ce034261151b6cea3 +size 1805 diff --git a/Skins/++scylla funny mix EPIC/hit0-13@2x.png b/Skins/++scylla funny mix EPIC/hit0-13@2x.png new file mode 100644 index 00000000..af3e660a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7e000bea229bb7986d55540c3876b8910f054e42d6cb20dd621412e0d66678 +size 4077 diff --git a/Skins/++scylla funny mix EPIC/hit0-14.png b/Skins/++scylla funny mix EPIC/hit0-14.png new file mode 100644 index 00000000..8db5caac --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c606d0c23555352a10e08e30fe7b1f025459378c598340fab7c9f4f516a3967e +size 1743 diff --git a/Skins/++scylla funny mix EPIC/hit0-14@2x.png b/Skins/++scylla funny mix EPIC/hit0-14@2x.png new file mode 100644 index 00000000..9e4e9b5e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb12f139fe979baf43fa2d16ee691cf6215747015d74af4f6fe6b26651e36789 +size 4105 diff --git a/Skins/++scylla funny mix EPIC/hit0-15.png b/Skins/++scylla funny mix EPIC/hit0-15.png new file mode 100644 index 00000000..7bd49eb3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2be2b28fc1c7739b2200551f974f0b3b2a82b247ca3fef23ed47680087e34f2 +size 1748 diff --git a/Skins/++scylla funny mix EPIC/hit0-15@2x.png b/Skins/++scylla funny mix EPIC/hit0-15@2x.png new file mode 100644 index 00000000..09fd5a9b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6bf5ef2ae2045838d4311459f020e05367991a0a2e628e10c7edf5c2bdc40a9 +size 3990 diff --git a/Skins/++scylla funny mix EPIC/hit0-16.png b/Skins/++scylla funny mix EPIC/hit0-16.png new file mode 100644 index 00000000..7388c79a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93cf43408e38782af0aad1014615c5f0fee993a08e043be94f7c25df954980c +size 1711 diff --git a/Skins/++scylla funny mix EPIC/hit0-16@2x.png b/Skins/++scylla funny mix EPIC/hit0-16@2x.png new file mode 100644 index 00000000..87b42a32 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa4834f152c0e959a62f41cb5fff4eb87aaf4347574f6dea85977c3e717dfc7 +size 3883 diff --git a/Skins/++scylla funny mix EPIC/hit0-17.png b/Skins/++scylla funny mix EPIC/hit0-17.png new file mode 100644 index 00000000..caecbdce --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a792a4a7b69d6766fc88be7d4713d5ed53aad1d6de7a93267bfe619e62f0cc +size 1730 diff --git a/Skins/++scylla funny mix EPIC/hit0-17@2x.png b/Skins/++scylla funny mix EPIC/hit0-17@2x.png new file mode 100644 index 00000000..c025fd95 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c71d36820485054958b5190c17dfc0e0a1e6d6ddefe410c3680d4a88f99cad4d +size 3889 diff --git a/Skins/++scylla funny mix EPIC/hit0-18.png b/Skins/++scylla funny mix EPIC/hit0-18.png new file mode 100644 index 00000000..daa54c9d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079c64770951a2b62a185787abe183bfe4b42a888ea348df1cb894b73692aa8b +size 1719 diff --git a/Skins/++scylla funny mix EPIC/hit0-18@2x.png b/Skins/++scylla funny mix EPIC/hit0-18@2x.png new file mode 100644 index 00000000..f72b54ab --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5224eb8307045917bb8aa870c08de2f543b25fbb2ff4cfcf94848586612c51fe +size 3934 diff --git a/Skins/++scylla funny mix EPIC/hit0-19.png b/Skins/++scylla funny mix EPIC/hit0-19.png new file mode 100644 index 00000000..746911e7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8609612408dfe9a750f2ac5b7f2d7ecbe957b5381f2af44efd704ca82e2a959c +size 1719 diff --git a/Skins/++scylla funny mix EPIC/hit0-19@2x.png b/Skins/++scylla funny mix EPIC/hit0-19@2x.png new file mode 100644 index 00000000..7ac357ad --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ca251ca6ac9b90c8765b478d64143ede5f291b7538a4890efcce0364c74083 +size 3877 diff --git a/Skins/++scylla funny mix EPIC/hit0-1@2x.png b/Skins/++scylla funny mix EPIC/hit0-1@2x.png new file mode 100644 index 00000000..802371fb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f2d538a8d3cc876a19cd2dd1692fa065205fc0cf2f866ef50e9a4d087875fe +size 2965 diff --git a/Skins/++scylla funny mix EPIC/hit0-2.png b/Skins/++scylla funny mix EPIC/hit0-2.png new file mode 100644 index 00000000..0cf6efba --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dceb03942570bccf61a2486709c72582c954db3247759e80dd1e97782effdd6c +size 1506 diff --git a/Skins/++scylla funny mix EPIC/hit0-20.png b/Skins/++scylla funny mix EPIC/hit0-20.png new file mode 100644 index 00000000..4053b72f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4886b9cd5bfbf8d530bbf608492674772e3e956eba5eed3470bdee2c732aa19 +size 1648 diff --git a/Skins/++scylla funny mix EPIC/hit0-20@2x.png b/Skins/++scylla funny mix EPIC/hit0-20@2x.png new file mode 100644 index 00000000..be7230e1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5a478de6a2a2c544dd292f9a2211c3e4338ec067ebfc79715113a90f10b31e +size 3743 diff --git a/Skins/++scylla funny mix EPIC/hit0-21.png b/Skins/++scylla funny mix EPIC/hit0-21.png new file mode 100644 index 00000000..892ab1ff --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0536a01d05fb864189bb349a8c97700901a064235c0da296dbb979d8a8970a91 +size 1660 diff --git a/Skins/++scylla funny mix EPIC/hit0-21@2x.png b/Skins/++scylla funny mix EPIC/hit0-21@2x.png new file mode 100644 index 00000000..70697e7c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b25edf18fe913c99d62aa8d8b7df3cceac005d0ff3c7ab1c121b5896dc8789 +size 3719 diff --git a/Skins/++scylla funny mix EPIC/hit0-22.png b/Skins/++scylla funny mix EPIC/hit0-22.png new file mode 100644 index 00000000..0aaa14d0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:981e8ab67ec20a93cc5aea79c8e587138e201180d8896f83f96a7289bf463e36 +size 1590 diff --git a/Skins/++scylla funny mix EPIC/hit0-22@2x.png b/Skins/++scylla funny mix EPIC/hit0-22@2x.png new file mode 100644 index 00000000..caac7451 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b598cd933ce1882c8b9c4d09e199ebd362074a1d51de15056e3ad105be395f +size 3659 diff --git a/Skins/++scylla funny mix EPIC/hit0-23.png b/Skins/++scylla funny mix EPIC/hit0-23.png new file mode 100644 index 00000000..d967c402 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bfa5c44cd3468644f3958eb7d8ddb248691c4123dfc5638f3fe06d652540936 +size 1600 diff --git a/Skins/++scylla funny mix EPIC/hit0-23@2x.png b/Skins/++scylla funny mix EPIC/hit0-23@2x.png new file mode 100644 index 00000000..29421f83 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:897ffa801eae6750ba5ae6060848b279b83a45379ac9116a6912e03230ec9e08 +size 3625 diff --git a/Skins/++scylla funny mix EPIC/hit0-24.png b/Skins/++scylla funny mix EPIC/hit0-24.png new file mode 100644 index 00000000..e80c7057 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db46c26ad19fc790243698b482c3fdfaed95dacbbc77b876d22c039ba6be05fa +size 1594 diff --git a/Skins/++scylla funny mix EPIC/hit0-24@2x.png b/Skins/++scylla funny mix EPIC/hit0-24@2x.png new file mode 100644 index 00000000..0eead992 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0ba7ab4a415bc1cd50a85c0310070bf0513c4af3a8633005ff600727becc43 +size 3649 diff --git a/Skins/++scylla funny mix EPIC/hit0-25.png b/Skins/++scylla funny mix EPIC/hit0-25.png new file mode 100644 index 00000000..940422df --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eba89249942143759b17648ae8f68487bb89501d3e7aa9b6d03411729d87d29 +size 1496 diff --git a/Skins/++scylla funny mix EPIC/hit0-25@2x.png b/Skins/++scylla funny mix EPIC/hit0-25@2x.png new file mode 100644 index 00000000..824298f4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eedc18af4f1cfa27c152d786f1398c74875e8066ddc0605c5cdc63d652fba749 +size 3479 diff --git a/Skins/++scylla funny mix EPIC/hit0-26.png b/Skins/++scylla funny mix EPIC/hit0-26.png new file mode 100644 index 00000000..4a030486 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1120a6da596774066d3ff4a40d5f5588f9410a9fa05318f20aeaf26acb4133e9 +size 1495 diff --git a/Skins/++scylla funny mix EPIC/hit0-26@2x.png b/Skins/++scylla funny mix EPIC/hit0-26@2x.png new file mode 100644 index 00000000..cd8e527e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0da3ebe806df3f3bf8c99e5f9d4dc6529db74ca80b0a7c44d9316c42ffccf25 +size 3406 diff --git a/Skins/++scylla funny mix EPIC/hit0-27.png b/Skins/++scylla funny mix EPIC/hit0-27.png new file mode 100644 index 00000000..bb34a935 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23177a83cebeb451dc1a3fd465590aa96b97fbcc572b1ecccfa076af9a456ffc +size 1465 diff --git a/Skins/++scylla funny mix EPIC/hit0-27@2x.png b/Skins/++scylla funny mix EPIC/hit0-27@2x.png new file mode 100644 index 00000000..91766410 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f65525fd7c5f30a83ccd7f4d083d95265abba812e9136135bf231a32251091df +size 3229 diff --git a/Skins/++scylla funny mix EPIC/hit0-28.png b/Skins/++scylla funny mix EPIC/hit0-28.png new file mode 100644 index 00000000..2ddf090f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61278ad687bad6f18af43a4c6174c5b1a481054507fbef7ed5af2dd7e0103309 +size 1372 diff --git a/Skins/++scylla funny mix EPIC/hit0-28@2x.png b/Skins/++scylla funny mix EPIC/hit0-28@2x.png new file mode 100644 index 00000000..91e4f8ab --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6ad24129401b5709f3035b95927647c385a3541af196b6ddfa86d09fea0c13 +size 3187 diff --git a/Skins/++scylla funny mix EPIC/hit0-29.png b/Skins/++scylla funny mix EPIC/hit0-29.png new file mode 100644 index 00000000..7f75db0c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b450f6ace954cc745f263445161535d5b81b88213e88d134664fa44f0c7ef272 +size 1355 diff --git a/Skins/++scylla funny mix EPIC/hit0-29@2x.png b/Skins/++scylla funny mix EPIC/hit0-29@2x.png new file mode 100644 index 00000000..79bb548d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0161be553d760468c8f9d09c56c9c1713a9ead019dd9b98f98b0fb13b805ae90 +size 3074 diff --git a/Skins/++scylla funny mix EPIC/hit0-2@2x.png b/Skins/++scylla funny mix EPIC/hit0-2@2x.png new file mode 100644 index 00000000..2daf6331 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:539088737875298048eeeb8491bb61c3293722f054a748c49e2ade935574b7ad +size 3277 diff --git a/Skins/++scylla funny mix EPIC/hit0-3.png b/Skins/++scylla funny mix EPIC/hit0-3.png new file mode 100644 index 00000000..de858f32 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c28ac07a0d6cbac9ddaeb163ce12ffad01684d8b6367eace7c74bc16617e29 +size 1550 diff --git a/Skins/++scylla funny mix EPIC/hit0-30.png b/Skins/++scylla funny mix EPIC/hit0-30.png new file mode 100644 index 00000000..d06b4103 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b40e998bed21ffc95ed526cb5a2ed2432cb41705ed9dca93ff567f3b92ca282 +size 1307 diff --git a/Skins/++scylla funny mix EPIC/hit0-30@2x.png b/Skins/++scylla funny mix EPIC/hit0-30@2x.png new file mode 100644 index 00000000..ea3d9191 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0781ac931e4ef00c292dfc966a2bdf17e47e00cf7ed0ed193c8b79da45a4d2 +size 2966 diff --git a/Skins/++scylla funny mix EPIC/hit0-31.png b/Skins/++scylla funny mix EPIC/hit0-31.png new file mode 100644 index 00000000..781e6bd2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1116fd6fcf01fcaf0b84e8ae56602c1e34c09a56af9295dd9c9343362c5ee862 +size 1272 diff --git a/Skins/++scylla funny mix EPIC/hit0-31@2x.png b/Skins/++scylla funny mix EPIC/hit0-31@2x.png new file mode 100644 index 00000000..912d8014 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580b36336c6a64f813003beae41f32f747853ab200e02f8e620b98db0e595104 +size 2883 diff --git a/Skins/++scylla funny mix EPIC/hit0-32.png b/Skins/++scylla funny mix EPIC/hit0-32.png new file mode 100644 index 00000000..210d0af5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f406fa504575f8824b409f535cb356cf6aefefed3c43df37ceadd6b583a35b59 +size 1239 diff --git a/Skins/++scylla funny mix EPIC/hit0-32@2x.png b/Skins/++scylla funny mix EPIC/hit0-32@2x.png new file mode 100644 index 00000000..c1a1474e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27d5afc4c37bf14be673bba96c390bb2e34b3028db1014223c8cda972c5a18f8 +size 2775 diff --git a/Skins/++scylla funny mix EPIC/hit0-33.png b/Skins/++scylla funny mix EPIC/hit0-33.png new file mode 100644 index 00000000..8f130814 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:576523eae741920415f0cb957b4d63b35a4536a1ab77076a60bf7bdd55b4e781 +size 1159 diff --git a/Skins/++scylla funny mix EPIC/hit0-33@2x.png b/Skins/++scylla funny mix EPIC/hit0-33@2x.png new file mode 100644 index 00000000..a2af110e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b32b378b1e13e4680707151bda98b29e7ee115a9fe5d7d4ee8134d99a6b7eb +size 2684 diff --git a/Skins/++scylla funny mix EPIC/hit0-34.png b/Skins/++scylla funny mix EPIC/hit0-34.png new file mode 100644 index 00000000..be9cb68d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789f7de2fee8aeb6291ce2d4fab761a0c497cb47300ddac4f6779326102725c4 +size 1114 diff --git a/Skins/++scylla funny mix EPIC/hit0-34@2x.png b/Skins/++scylla funny mix EPIC/hit0-34@2x.png new file mode 100644 index 00000000..d05f5cf1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ddc97981ceee06eaf9220b9a797ed6e2b3a3c6b4631ee9d0cafdfa7900784e +size 2595 diff --git a/Skins/++scylla funny mix EPIC/hit0-35.png b/Skins/++scylla funny mix EPIC/hit0-35.png new file mode 100644 index 00000000..a2784056 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562a570d4cca2010366df007ef849e10c64a59d4c80cd5fe8a289e33416f412b +size 1046 diff --git a/Skins/++scylla funny mix EPIC/hit0-35@2x.png b/Skins/++scylla funny mix EPIC/hit0-35@2x.png new file mode 100644 index 00000000..aae8b4c9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c0017e11701140331684917902266d2976d966c492d8a901d4cefb16165843 +size 2472 diff --git a/Skins/++scylla funny mix EPIC/hit0-36.png b/Skins/++scylla funny mix EPIC/hit0-36.png new file mode 100644 index 00000000..2938d747 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5499bdf435172b027b7155a74723ebe70c4410031991c4e680e17c0eb1961f +size 1010 diff --git a/Skins/++scylla funny mix EPIC/hit0-36@2x.png b/Skins/++scylla funny mix EPIC/hit0-36@2x.png new file mode 100644 index 00000000..24c6269e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d0ba273a71599045953c13419365f004884fa05ed49a8115a270cffa171e9b +size 2239 diff --git a/Skins/++scylla funny mix EPIC/hit0-37.png b/Skins/++scylla funny mix EPIC/hit0-37.png new file mode 100644 index 00000000..e2618e9f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b9dec7cd728cd6ce2c0f7d5854662698b2a713e32545e36e8987fd8f8029ce +size 990 diff --git a/Skins/++scylla funny mix EPIC/hit0-37@2x.png b/Skins/++scylla funny mix EPIC/hit0-37@2x.png new file mode 100644 index 00000000..e2a9ecd9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122a3c74ee3028c281b3e9d1a8042a04e3e54715ad1dafd767d480648b2c1ae2 +size 2356 diff --git a/Skins/++scylla funny mix EPIC/hit0-38.png b/Skins/++scylla funny mix EPIC/hit0-38.png new file mode 100644 index 00000000..6b693c45 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f6c8b10f9286679bb1f82e7fb58b90c94bea2a47c5e45be3f8f14e765d0506 +size 957 diff --git a/Skins/++scylla funny mix EPIC/hit0-38@2x.png b/Skins/++scylla funny mix EPIC/hit0-38@2x.png new file mode 100644 index 00000000..41962014 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902c38a16139c165e07dcd1854db8798e97437ac72d0b20ade4ff82471b46c26 +size 2212 diff --git a/Skins/++scylla funny mix EPIC/hit0-39.png b/Skins/++scylla funny mix EPIC/hit0-39.png new file mode 100644 index 00000000..10dd7475 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c38363ffc59bf848a3c113b5b643329081575ceef0441225b425bb222f2b015c +size 917 diff --git a/Skins/++scylla funny mix EPIC/hit0-39@2x.png b/Skins/++scylla funny mix EPIC/hit0-39@2x.png new file mode 100644 index 00000000..d4a8df84 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3637d1ef1790561740fc8de43b34a6cd952aa2548a1e07a3c9f2dc81fd90eb3 +size 2186 diff --git a/Skins/++scylla funny mix EPIC/hit0-3@2x.png b/Skins/++scylla funny mix EPIC/hit0-3@2x.png new file mode 100644 index 00000000..c9010739 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff691a80b2cb585c91dc5e95b0f8b84ce385c2978665bb61482545e05a50a208 +size 3447 diff --git a/Skins/++scylla funny mix EPIC/hit0-4.png b/Skins/++scylla funny mix EPIC/hit0-4.png new file mode 100644 index 00000000..8f6ddfbc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c13b979f8086a824794a320f7b6225deb4393b52a804342a68d19a29ec37fd6 +size 1693 diff --git a/Skins/++scylla funny mix EPIC/hit0-40.png b/Skins/++scylla funny mix EPIC/hit0-40.png new file mode 100644 index 00000000..4a743e14 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22792de6c57a19bdaf0795ac6c73f05782cb2017a96958abd5d35634fcbf06aa +size 846 diff --git a/Skins/++scylla funny mix EPIC/hit0-40@2x.png b/Skins/++scylla funny mix EPIC/hit0-40@2x.png new file mode 100644 index 00000000..b79d3a42 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2ebe2a609e544c27f4eeb20a9d39af31d5abf7830f2af3bf709d874d259c54 +size 2050 diff --git a/Skins/++scylla funny mix EPIC/hit0-41.png b/Skins/++scylla funny mix EPIC/hit0-41.png new file mode 100644 index 00000000..d972eea9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc75ece0d412c2d7cae7eb3bd049127736d1ea1bbea1265b319b84c7f3640b0a +size 816 diff --git a/Skins/++scylla funny mix EPIC/hit0-41@2x.png b/Skins/++scylla funny mix EPIC/hit0-41@2x.png new file mode 100644 index 00000000..07e69d3c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:226844b12e7eadd310a23ccc2416ddc460a04bebb6f112d634ebb97c236c6241 +size 2022 diff --git a/Skins/++scylla funny mix EPIC/hit0-42.png b/Skins/++scylla funny mix EPIC/hit0-42.png new file mode 100644 index 00000000..074ae4da --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eac24b1ca161fc504302d00c1263f4773fbc600225e9adb03265945cbc91f8d +size 786 diff --git a/Skins/++scylla funny mix EPIC/hit0-42@2x.png b/Skins/++scylla funny mix EPIC/hit0-42@2x.png new file mode 100644 index 00000000..3b8c7ebc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fffb748b3d02575e9aa4e2b30946039e253d08885de53549c24598138c94f1b +size 1940 diff --git a/Skins/++scylla funny mix EPIC/hit0-43.png b/Skins/++scylla funny mix EPIC/hit0-43.png new file mode 100644 index 00000000..c8898638 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f8e93a6595bb17dea08b81e2a90b648a1473e5df000916029d49b7bebf764c +size 740 diff --git a/Skins/++scylla funny mix EPIC/hit0-43@2x.png b/Skins/++scylla funny mix EPIC/hit0-43@2x.png new file mode 100644 index 00000000..4d34eab3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d35a07624a5b8515bafcb9a6eb247fcfaef61fc63e62140bef237679e773e04 +size 1783 diff --git a/Skins/++scylla funny mix EPIC/hit0-44.png b/Skins/++scylla funny mix EPIC/hit0-44.png new file mode 100644 index 00000000..6c9d1b73 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259e15c3c56a1423cc4a22c3b6db213f5a8b1a6f7229a2ac72f7d9a47a618ee6 +size 707 diff --git a/Skins/++scylla funny mix EPIC/hit0-44@2x.png b/Skins/++scylla funny mix EPIC/hit0-44@2x.png new file mode 100644 index 00000000..d773fff3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1190e22ba2102c7190ff9e0efe9e54634c423163d1f5f759bc64b7afb6dea1 +size 1747 diff --git a/Skins/++scylla funny mix EPIC/hit0-45.png b/Skins/++scylla funny mix EPIC/hit0-45.png new file mode 100644 index 00000000..89c00eb7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ad3cd57f6f8a2baf18f0f4208c4f3b91a77e0f535c2ea3006805a38450a185 +size 664 diff --git a/Skins/++scylla funny mix EPIC/hit0-45@2x.png b/Skins/++scylla funny mix EPIC/hit0-45@2x.png new file mode 100644 index 00000000..16ad9118 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d50e7ec3d5e3dbdc3ace3877c3e01e8c5bdfc6602e6796bb494e31a66263a87 +size 1660 diff --git a/Skins/++scylla funny mix EPIC/hit0-46.png b/Skins/++scylla funny mix EPIC/hit0-46.png new file mode 100644 index 00000000..f0053573 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa5d1a5ca1090bc60e71e35147db64124eb3d4314663eab03e6c4312ad091ad +size 662 diff --git a/Skins/++scylla funny mix EPIC/hit0-46@2x.png b/Skins/++scylla funny mix EPIC/hit0-46@2x.png new file mode 100644 index 00000000..17fe22c8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad1c8adb0b84b0bd9d416de73041e65e7939feeee3363387578a7341378e0a41 +size 1578 diff --git a/Skins/++scylla funny mix EPIC/hit0-47.png b/Skins/++scylla funny mix EPIC/hit0-47.png new file mode 100644 index 00000000..42e347d8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0046160cd5a7df3f97cdf0d9d789c8c0c06e40de198766ba2182f2a8e8bcce2b +size 600 diff --git a/Skins/++scylla funny mix EPIC/hit0-47@2x.png b/Skins/++scylla funny mix EPIC/hit0-47@2x.png new file mode 100644 index 00000000..4463d0a3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065a5680cf164689fa2fe3e513228788e08266d4b8826513409827cc21589685 +size 1510 diff --git a/Skins/++scylla funny mix EPIC/hit0-48.png b/Skins/++scylla funny mix EPIC/hit0-48.png new file mode 100644 index 00000000..d492da09 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e1f571fa6bcee20ba1448560e84cf6a1813de37ef49b387dabd9be0f180b01 +size 559 diff --git a/Skins/++scylla funny mix EPIC/hit0-48@2x.png b/Skins/++scylla funny mix EPIC/hit0-48@2x.png new file mode 100644 index 00000000..2876b74f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edd3f82881e6e869e9fbe35c8deacdb0e4f4598986a4fbd56999fbbb335a5732 +size 1389 diff --git a/Skins/++scylla funny mix EPIC/hit0-49.png b/Skins/++scylla funny mix EPIC/hit0-49.png new file mode 100644 index 00000000..2ae95f1c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8fe136b94bccb40d5a57629f3084eeb9a7456312050b0a1707deccba2d4a3c2 +size 517 diff --git a/Skins/++scylla funny mix EPIC/hit0-49@2x.png b/Skins/++scylla funny mix EPIC/hit0-49@2x.png new file mode 100644 index 00000000..608fb98d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ce2104ae91b408328f883474709dfe7be2277ad6718a154d80001d011246e4 +size 1329 diff --git a/Skins/++scylla funny mix EPIC/hit0-4@2x.png b/Skins/++scylla funny mix EPIC/hit0-4@2x.png new file mode 100644 index 00000000..a0cb923a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8085af73d85889a30cf8d32bc6ce3c3bc0553a55b3f059e3d00241d2d7b822c5 +size 3746 diff --git a/Skins/++scylla funny mix EPIC/hit0-5.png b/Skins/++scylla funny mix EPIC/hit0-5.png new file mode 100644 index 00000000..93307306 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e44da9a54c3fc2f53c63808a3b578ad19933319b94ea6821e92b0085e952f2 +size 1717 diff --git a/Skins/++scylla funny mix EPIC/hit0-50.png b/Skins/++scylla funny mix EPIC/hit0-50.png new file mode 100644 index 00000000..40797c16 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b99485019bc36b08af14d46a1bca51938f41aa84bb8b89d8e0b025fe993a55 +size 485 diff --git a/Skins/++scylla funny mix EPIC/hit0-50@2x.png b/Skins/++scylla funny mix EPIC/hit0-50@2x.png new file mode 100644 index 00000000..f6f76efe --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8332b2297b5c2d03f3d73458779a5e8656f234198c6a0947e2d7f10ceee877ab +size 1217 diff --git a/Skins/++scylla funny mix EPIC/hit0-51.png b/Skins/++scylla funny mix EPIC/hit0-51.png new file mode 100644 index 00000000..e52e3e66 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006b65406c167cc4c18052f06bbfb4de6101a819a3811cc2cf84abb31c23141c +size 467 diff --git a/Skins/++scylla funny mix EPIC/hit0-51@2x.png b/Skins/++scylla funny mix EPIC/hit0-51@2x.png new file mode 100644 index 00000000..e287cfdf --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-51@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ec617d50be16606eeedbc0e7ebb32d3a8cf5af6111a567af05bf8aece2db4a +size 1114 diff --git a/Skins/++scylla funny mix EPIC/hit0-52.png b/Skins/++scylla funny mix EPIC/hit0-52.png new file mode 100644 index 00000000..690c5b4a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42ab4628b74fcbaff8afae34b80b972e248c7085c34922af25d4ffe6f8d01f6 +size 433 diff --git a/Skins/++scylla funny mix EPIC/hit0-52@2x.png b/Skins/++scylla funny mix EPIC/hit0-52@2x.png new file mode 100644 index 00000000..3b8249a1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-52@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1346703db3219514108582cc5a57b644819e91ac297ee64167d5ed729bfde300 +size 1026 diff --git a/Skins/++scylla funny mix EPIC/hit0-53.png b/Skins/++scylla funny mix EPIC/hit0-53.png new file mode 100644 index 00000000..2b4bc107 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4d8d5b83f6087835978a30000939005d53e63fc33dd31d117520870de3034e +size 383 diff --git a/Skins/++scylla funny mix EPIC/hit0-53@2x.png b/Skins/++scylla funny mix EPIC/hit0-53@2x.png new file mode 100644 index 00000000..6619cfcd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-53@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03100023a42310286fe4cd0269ff108927cf60afb632f0fce4a6ec5de41b38cc +size 966 diff --git a/Skins/++scylla funny mix EPIC/hit0-54.png b/Skins/++scylla funny mix EPIC/hit0-54.png new file mode 100644 index 00000000..fb8c8a69 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e654b6b76e7479481d267d3690821e0a7c61f1ad7255180555fe8b465fd576 +size 361 diff --git a/Skins/++scylla funny mix EPIC/hit0-54@2x.png b/Skins/++scylla funny mix EPIC/hit0-54@2x.png new file mode 100644 index 00000000..b6029ad3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-54@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356d465cb8b13aac8190af6e510c4d552109600170ca9ee2627e2eabc117028f +size 855 diff --git a/Skins/++scylla funny mix EPIC/hit0-55.png b/Skins/++scylla funny mix EPIC/hit0-55.png new file mode 100644 index 00000000..8f1f9a34 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863bcfca355100090522a912bae1afee629a18c69b8987be5bbfcff5ac139408 +size 336 diff --git a/Skins/++scylla funny mix EPIC/hit0-55@2x.png b/Skins/++scylla funny mix EPIC/hit0-55@2x.png new file mode 100644 index 00000000..6ef5af39 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-55@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05efbf9bedbbe50c004930dd890a6b288884a10d6d64701541ef4257e0deb923 +size 790 diff --git a/Skins/++scylla funny mix EPIC/hit0-56.png b/Skins/++scylla funny mix EPIC/hit0-56.png new file mode 100644 index 00000000..e41a91ce --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a12341a35955c6df37df5e61a2d13d12f1e426f20e8b2fbe5b3d40f1a9a150 +size 287 diff --git a/Skins/++scylla funny mix EPIC/hit0-56@2x.png b/Skins/++scylla funny mix EPIC/hit0-56@2x.png new file mode 100644 index 00000000..cdc3c120 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-56@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e274a79c59e5a75cf5d011f18bda90d03eb5376e526910844787841774a72d0 +size 695 diff --git a/Skins/++scylla funny mix EPIC/hit0-57.png b/Skins/++scylla funny mix EPIC/hit0-57.png new file mode 100644 index 00000000..0e3bc86a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1394502a2ca1a624f4e08a7d8dca207520c6e378e68d79fb8c3c2aa7f3a8048 +size 269 diff --git a/Skins/++scylla funny mix EPIC/hit0-57@2x.png b/Skins/++scylla funny mix EPIC/hit0-57@2x.png new file mode 100644 index 00000000..dc4dcc51 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-57@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841ea56147d71065563fee5c4c1edf2567073bd6d0568e4b806a94cf2eb3f556 +size 613 diff --git a/Skins/++scylla funny mix EPIC/hit0-58.png b/Skins/++scylla funny mix EPIC/hit0-58.png new file mode 100644 index 00000000..eacd657a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b930cbb0991ca091042f5ad86cb019fdfc67a687ab63e447cb3098363e0839fc +size 247 diff --git a/Skins/++scylla funny mix EPIC/hit0-58@2x.png b/Skins/++scylla funny mix EPIC/hit0-58@2x.png new file mode 100644 index 00000000..dfade807 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-58@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46c165bda51b9053cc958957e0e7151cef5e603381fa5c0a958b8337e5401fd +size 557 diff --git a/Skins/++scylla funny mix EPIC/hit0-59.png b/Skins/++scylla funny mix EPIC/hit0-59.png new file mode 100644 index 00000000..9508622a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a8718e6f485f8f18507c3044cce8cd0e5382d5256cd5641a444548310d9ce7 +size 216 diff --git a/Skins/++scylla funny mix EPIC/hit0-59@2x.png b/Skins/++scylla funny mix EPIC/hit0-59@2x.png new file mode 100644 index 00000000..f29969f2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-59@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:852da657249f6ab65ed23aad6b5a920f200f2bd64c74b9403052c50371734f98 +size 471 diff --git a/Skins/++scylla funny mix EPIC/hit0-5@2x.png b/Skins/++scylla funny mix EPIC/hit0-5@2x.png new file mode 100644 index 00000000..a9e776a6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8c043f8e5e65621388e8cf19b7dc152edb8d895aee71fd713771ba8bf06537 +size 3731 diff --git a/Skins/++scylla funny mix EPIC/hit0-6.png b/Skins/++scylla funny mix EPIC/hit0-6.png new file mode 100644 index 00000000..f5aa3675 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23e226af71b492a9fe73848d376bb1df121f69777318e3e552257cf86ea06ccc +size 1804 diff --git a/Skins/++scylla funny mix EPIC/hit0-6@2x.png b/Skins/++scylla funny mix EPIC/hit0-6@2x.png new file mode 100644 index 00000000..c836e7d2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc93244d36274e7a6aabf7cda0cccd6acbfd2bf98267532142e9f21c3a50d0b9 +size 4036 diff --git a/Skins/++scylla funny mix EPIC/hit0-7.png b/Skins/++scylla funny mix EPIC/hit0-7.png new file mode 100644 index 00000000..c7abab6c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cec7f9275558c46b2ed6825c0b96771d8ca1febfa2156ea92e9a5acbe9b8927 +size 1827 diff --git a/Skins/++scylla funny mix EPIC/hit0-7@2x.png b/Skins/++scylla funny mix EPIC/hit0-7@2x.png new file mode 100644 index 00000000..22516c0d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c874a2eb8ae0366fd42222073ef870cc6e87fb88c3c87d9e37d3c1a448512f +size 4119 diff --git a/Skins/++scylla funny mix EPIC/hit0-8.png b/Skins/++scylla funny mix EPIC/hit0-8.png new file mode 100644 index 00000000..0df1d284 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24deaf09b42ca79f8cf66c5b0e6ceeb353e9d1f9b502b3318e251e713175c87 +size 1643 diff --git a/Skins/++scylla funny mix EPIC/hit0-8@2x.png b/Skins/++scylla funny mix EPIC/hit0-8@2x.png new file mode 100644 index 00000000..5055281c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea04937d83d2e8b317cc5089d93f6be48a89e0d0040964f44d157b2b91901241 +size 3429 diff --git a/Skins/++scylla funny mix EPIC/hit0-9.png b/Skins/++scylla funny mix EPIC/hit0-9.png new file mode 100644 index 00000000..26e37d09 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca8fc04fb5b90a6bd301ae98b4548ac97e7ee255632cfb23ce09a8abf0b1737a +size 1815 diff --git a/Skins/++scylla funny mix EPIC/hit0-9@2x.png b/Skins/++scylla funny mix EPIC/hit0-9@2x.png new file mode 100644 index 00000000..8f1e2331 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b130d0eebce2bc9090b4b4dd1ab34f6173e9924b376a45bff7e2f6abf2aa606a +size 4092 diff --git a/Skins/++scylla funny mix EPIC/hit0.png b/Skins/++scylla funny mix EPIC/hit0.png new file mode 100644 index 00000000..6917ab62 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce01a01a675b2c893b42e6001ac9bf072463b137eec82d1b275bcfaa5d5aa0b0 +size 20674 diff --git a/Skins/++scylla funny mix EPIC/hit0@2x.png b/Skins/++scylla funny mix EPIC/hit0@2x.png new file mode 100644 index 00000000..66756b36 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61f3fcbc62b08524e165c43c601ddefb40ab04c5ff6cbd2ac8263f1d0aedbe17 +size 21743 diff --git a/Skins/++scylla funny mix EPIC/hit100-0.png b/Skins/++scylla funny mix EPIC/hit100-0.png new file mode 100644 index 00000000..70bb55ec --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b5f63f4157fb2ceb9a7201f595e0498c93e9e7988d8cd3aa4a96cab6c9fe5 +size 162 diff --git a/Skins/++scylla funny mix EPIC/hit100-0@2x.png b/Skins/++scylla funny mix EPIC/hit100-0@2x.png new file mode 100644 index 00000000..ce5b63df --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efb3eb62b6a7d4d45832d5189c9f2dcded649c9a79dad8004e20c4f8b3d491b +size 205 diff --git a/Skins/++scylla funny mix EPIC/hit100-1.png b/Skins/++scylla funny mix EPIC/hit100-1.png new file mode 100644 index 00000000..8bb116ae --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de071d5d5cb139210ecb9cbfc3f0b4fe7925f3202007a7413e4ad1b2e01875aa +size 3034 diff --git a/Skins/++scylla funny mix EPIC/hit100-10.png b/Skins/++scylla funny mix EPIC/hit100-10.png new file mode 100644 index 00000000..0f5b572a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe2af8c411a10cad1f5a8b46a43aa441b8cb4e7851efc801d97bc00fa453b12 +size 3293 diff --git a/Skins/++scylla funny mix EPIC/hit100-10@2x.png b/Skins/++scylla funny mix EPIC/hit100-10@2x.png new file mode 100644 index 00000000..de8cbc74 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3bc20d4bb20ad9266dccf6310215a378c00c6f7e2817980a77b6188d9ab3bc +size 7480 diff --git a/Skins/++scylla funny mix EPIC/hit100-11.png b/Skins/++scylla funny mix EPIC/hit100-11.png new file mode 100644 index 00000000..a1d02d14 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10dce2ed46f88600f0d33784551b97fd7b482a731c90d1cd6c8d57a81e007ed8 +size 3361 diff --git a/Skins/++scylla funny mix EPIC/hit100-11@2x.png b/Skins/++scylla funny mix EPIC/hit100-11@2x.png new file mode 100644 index 00000000..7e92d252 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3456e614b51f991d1623d60be6d6e85dab9c92d0d0cb91e524673111a84f5ed3 +size 7520 diff --git a/Skins/++scylla funny mix EPIC/hit100-12.png b/Skins/++scylla funny mix EPIC/hit100-12.png new file mode 100644 index 00000000..306b8207 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c84eedf6bf5779410d9a014eba1feab45ca0c9c2d22b45aab8e118ff50dfbd8 +size 3301 diff --git a/Skins/++scylla funny mix EPIC/hit100-12@2x.png b/Skins/++scylla funny mix EPIC/hit100-12@2x.png new file mode 100644 index 00000000..dcae8a14 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb58558c6bc09113a195ae83f38ffb7f45a12b82ba44d466455776a865e6adf +size 7474 diff --git a/Skins/++scylla funny mix EPIC/hit100-13.png b/Skins/++scylla funny mix EPIC/hit100-13.png new file mode 100644 index 00000000..026997be --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d95ba83b8b605faf5ba03fe00a59a55e5cc97e15906782d8a850682b087819 +size 3284 diff --git a/Skins/++scylla funny mix EPIC/hit100-13@2x.png b/Skins/++scylla funny mix EPIC/hit100-13@2x.png new file mode 100644 index 00000000..91a06c81 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b91e1664ae51ed052db741f32819013968f4f0b52108c92a7e89a1a5a4ae6146 +size 7553 diff --git a/Skins/++scylla funny mix EPIC/hit100-14.png b/Skins/++scylla funny mix EPIC/hit100-14.png new file mode 100644 index 00000000..a7b3c38d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8d31b0a46ed4e53a3b32e04336df6e0670e0dc9f10b2670f9db609f82966d0 +size 3257 diff --git a/Skins/++scylla funny mix EPIC/hit100-14@2x.png b/Skins/++scylla funny mix EPIC/hit100-14@2x.png new file mode 100644 index 00000000..2b14432c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d11e06138833fdb0018961a12066c3d014a2c6ecb743c3725c63d233a2fc67 +size 7345 diff --git a/Skins/++scylla funny mix EPIC/hit100-15.png b/Skins/++scylla funny mix EPIC/hit100-15.png new file mode 100644 index 00000000..be3b680f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5888c7e1dbac2bc0bb4976b633db4aa9771ed77546fcc436f54b7fcb6d01176 +size 3219 diff --git a/Skins/++scylla funny mix EPIC/hit100-15@2x.png b/Skins/++scylla funny mix EPIC/hit100-15@2x.png new file mode 100644 index 00000000..9e6c9a68 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b629a4bfe97ae74530c5922b98708630e1dfe738f4f35bbafd9c1de5c9ca54 +size 7243 diff --git a/Skins/++scylla funny mix EPIC/hit100-16.png b/Skins/++scylla funny mix EPIC/hit100-16.png new file mode 100644 index 00000000..7257cf58 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cad1cbc5d4b6956ba847f3d3a80859f8e0aeee154d74008305eee9b189354c +size 3237 diff --git a/Skins/++scylla funny mix EPIC/hit100-16@2x.png b/Skins/++scylla funny mix EPIC/hit100-16@2x.png new file mode 100644 index 00000000..fce8e531 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20116660e875339a29efe6abea154990ffc896da8d0add3fa7b93c581b8f1a41 +size 7257 diff --git a/Skins/++scylla funny mix EPIC/hit100-17.png b/Skins/++scylla funny mix EPIC/hit100-17.png new file mode 100644 index 00000000..f4fbfb6a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8088b3aea7cf2ff942f588deb0505bb6c422840c334dcb5646f4749073793c99 +size 3239 diff --git a/Skins/++scylla funny mix EPIC/hit100-17@2x.png b/Skins/++scylla funny mix EPIC/hit100-17@2x.png new file mode 100644 index 00000000..09902c42 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9222766c9b6ffbfd7a9e6bd2b6cbe61f67f121827c2830654ea39bc6bf280d99 +size 7172 diff --git a/Skins/++scylla funny mix EPIC/hit100-18.png b/Skins/++scylla funny mix EPIC/hit100-18.png new file mode 100644 index 00000000..7d79434e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054c4a309a685804e1af315616686e4bf4f8a71c052a6133f6f58d4658ff7b62 +size 3122 diff --git a/Skins/++scylla funny mix EPIC/hit100-18@2x.png b/Skins/++scylla funny mix EPIC/hit100-18@2x.png new file mode 100644 index 00000000..4985b964 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daea07ff536012fc9e9ef3984907b74fb34dcd1bfaede713bc8c361816a70ff2 +size 7252 diff --git a/Skins/++scylla funny mix EPIC/hit100-19.png b/Skins/++scylla funny mix EPIC/hit100-19.png new file mode 100644 index 00000000..3f88fe8c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:223b50f95d355d9841c764537a393d57996b748732fd088853c7c70f12f5d976 +size 3139 diff --git a/Skins/++scylla funny mix EPIC/hit100-19@2x.png b/Skins/++scylla funny mix EPIC/hit100-19@2x.png new file mode 100644 index 00000000..a6595008 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be062cde9641914c5eb17de15f069575d7c77b8a42df76cf65855e9f275c364 +size 7091 diff --git a/Skins/++scylla funny mix EPIC/hit100-1@2x.png b/Skins/++scylla funny mix EPIC/hit100-1@2x.png new file mode 100644 index 00000000..8a749f60 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7946456debe7e688314a216dd282b91f2672f1f329a3cfc7e9048ebfafdb0b11 +size 6681 diff --git a/Skins/++scylla funny mix EPIC/hit100-2.png b/Skins/++scylla funny mix EPIC/hit100-2.png new file mode 100644 index 00000000..99f77eef --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71e0014ec9e3d1645363812cd109f845b93bf021872d5005010db47e4e79af8 +size 3184 diff --git a/Skins/++scylla funny mix EPIC/hit100-20.png b/Skins/++scylla funny mix EPIC/hit100-20.png new file mode 100644 index 00000000..b344f9e6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377ab0d7c5d5d7df216c27a4e6de653aeb05704772f66afffdfe2dd5023d694e +size 3125 diff --git a/Skins/++scylla funny mix EPIC/hit100-20@2x.png b/Skins/++scylla funny mix EPIC/hit100-20@2x.png new file mode 100644 index 00000000..b391595e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5186fe5ec131d96a17785358013cb4b8f345d7ecb9c073d629e161135f65b316 +size 7014 diff --git a/Skins/++scylla funny mix EPIC/hit100-21.png b/Skins/++scylla funny mix EPIC/hit100-21.png new file mode 100644 index 00000000..aa358c73 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d17b98a4caedbbe6d187aa3f26b975885efbf49783d88f118b56fa63e5daa24 +size 3127 diff --git a/Skins/++scylla funny mix EPIC/hit100-21@2x.png b/Skins/++scylla funny mix EPIC/hit100-21@2x.png new file mode 100644 index 00000000..97d4fb25 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d43e045f0f1c6c735412855b43db02182bed5ccf19c1c7f9a8435d7119711db +size 6901 diff --git a/Skins/++scylla funny mix EPIC/hit100-22.png b/Skins/++scylla funny mix EPIC/hit100-22.png new file mode 100644 index 00000000..554c7ab2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b5305b8ec880b5fd5515d93e76770685497d6847e8dfdf471a1f2e4ac32020c +size 3115 diff --git a/Skins/++scylla funny mix EPIC/hit100-22@2x.png b/Skins/++scylla funny mix EPIC/hit100-22@2x.png new file mode 100644 index 00000000..f5899049 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610a998b91299092f05ce4b80003324432d63ad90ed3696f719b0fa4d80c5915 +size 6869 diff --git a/Skins/++scylla funny mix EPIC/hit100-23.png b/Skins/++scylla funny mix EPIC/hit100-23.png new file mode 100644 index 00000000..c19309ae --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d208941b9b462349b9e75f31829053f16f1807ea866fe69d4aab48330553a45 +size 3041 diff --git a/Skins/++scylla funny mix EPIC/hit100-23@2x.png b/Skins/++scylla funny mix EPIC/hit100-23@2x.png new file mode 100644 index 00000000..d1fac478 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cea218b7abc2581add2a8152e6962f6166abdb5de1961c3111e44b20cef1f50 +size 6892 diff --git a/Skins/++scylla funny mix EPIC/hit100-24.png b/Skins/++scylla funny mix EPIC/hit100-24.png new file mode 100644 index 00000000..3750863a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6b39a7fd5d8ff21cd87cccaec75bcb367796a89e380820f7cc37f958ab05ec +size 3036 diff --git a/Skins/++scylla funny mix EPIC/hit100-24@2x.png b/Skins/++scylla funny mix EPIC/hit100-24@2x.png new file mode 100644 index 00000000..a82cc312 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22949ef9f52404704f4f076a1e99d3ba576f814cd36f89a5b387cb5059c655d1 +size 6836 diff --git a/Skins/++scylla funny mix EPIC/hit100-25.png b/Skins/++scylla funny mix EPIC/hit100-25.png new file mode 100644 index 00000000..fc5f2d35 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5282e42b09a1971828610cc51ad9a31de6b694901681e3b59494b505ed42fe0 +size 2970 diff --git a/Skins/++scylla funny mix EPIC/hit100-25@2x.png b/Skins/++scylla funny mix EPIC/hit100-25@2x.png new file mode 100644 index 00000000..790bafed --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e407e675d8fd6d52d9a02a483cbe33cb53bb953d42414b5ae1b37769c8ad0d76 +size 6682 diff --git a/Skins/++scylla funny mix EPIC/hit100-26.png b/Skins/++scylla funny mix EPIC/hit100-26.png new file mode 100644 index 00000000..02d5066b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d922d4a0811acd3743ffe1e87ff0e8aaf2239c71ee171705d0778c57a1570a65 +size 2886 diff --git a/Skins/++scylla funny mix EPIC/hit100-26@2x.png b/Skins/++scylla funny mix EPIC/hit100-26@2x.png new file mode 100644 index 00000000..26031e5d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6459f3206ba8346e1832d8270125a00a3cdb248497c7993ed8d6f8d0ca22e70b +size 6388 diff --git a/Skins/++scylla funny mix EPIC/hit100-27.png b/Skins/++scylla funny mix EPIC/hit100-27.png new file mode 100644 index 00000000..12c9641d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb075c716f68ee4b131bf5e4f53d6cda2cb63a1648853d6cc6cfe271c99d3e4e +size 2781 diff --git a/Skins/++scylla funny mix EPIC/hit100-27@2x.png b/Skins/++scylla funny mix EPIC/hit100-27@2x.png new file mode 100644 index 00000000..f4550abd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67979dd27f21059fbc0e70cad9209b42694de5ea39b43c280075c412d843925 +size 6197 diff --git a/Skins/++scylla funny mix EPIC/hit100-28.png b/Skins/++scylla funny mix EPIC/hit100-28.png new file mode 100644 index 00000000..92cd90df --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66ff8940e276380852b8f0655d82c32b9773c9e22cafc700175a3a629a741f6 +size 2680 diff --git a/Skins/++scylla funny mix EPIC/hit100-28@2x.png b/Skins/++scylla funny mix EPIC/hit100-28@2x.png new file mode 100644 index 00000000..85e09831 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c8362343a2e3dbdd81c0564411b45930c16332c7e0a36ab2f8d23507f8ece0b +size 6034 diff --git a/Skins/++scylla funny mix EPIC/hit100-29.png b/Skins/++scylla funny mix EPIC/hit100-29.png new file mode 100644 index 00000000..a98bcc9e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:836d84346cdf5a20b8f48db70fe646e2d17b4c9d89cf365d5bed81563726eb7c +size 2604 diff --git a/Skins/++scylla funny mix EPIC/hit100-29@2x.png b/Skins/++scylla funny mix EPIC/hit100-29@2x.png new file mode 100644 index 00000000..81df2ab9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff2361fc5f946550406b804babc53f90bb5dca3b4bc19a8b63989b2e224fbf4 +size 5852 diff --git a/Skins/++scylla funny mix EPIC/hit100-2@2x.png b/Skins/++scylla funny mix EPIC/hit100-2@2x.png new file mode 100644 index 00000000..e7e17e41 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d3de5f4ac79d07a4ef6b8c49cdbf6bd00dfbdecac68b1c62221df7e0d4a259 +size 7242 diff --git a/Skins/++scylla funny mix EPIC/hit100-3.png b/Skins/++scylla funny mix EPIC/hit100-3.png new file mode 100644 index 00000000..224d74d8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39ca2c91665235261bc0e7b6c498d796b54968723f05373b4f8819d7e077be7 +size 3243 diff --git a/Skins/++scylla funny mix EPIC/hit100-30.png b/Skins/++scylla funny mix EPIC/hit100-30.png new file mode 100644 index 00000000..a0f131f4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e07949fd5cce3dd8fda8c3e3c76c58ead80bf0fc61d20605e7326a1a2e10b0 +size 2509 diff --git a/Skins/++scylla funny mix EPIC/hit100-30@2x.png b/Skins/++scylla funny mix EPIC/hit100-30@2x.png new file mode 100644 index 00000000..e559ec40 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbec4e7cad48ac6cd7c404361a499e44a8f5b321f5805f717d0c4e37d7e26f9 +size 5616 diff --git a/Skins/++scylla funny mix EPIC/hit100-31.png b/Skins/++scylla funny mix EPIC/hit100-31.png new file mode 100644 index 00000000..efb6c475 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fac25b4c9e653404afe487b643ba77a7f403a62a4eb5b6e68cf4a3721bb6956 +size 2446 diff --git a/Skins/++scylla funny mix EPIC/hit100-31@2x.png b/Skins/++scylla funny mix EPIC/hit100-31@2x.png new file mode 100644 index 00000000..cb843332 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93bb63ad00f7dc377468c14517534b40589555078346b8f782da36e3bb0f568a +size 5388 diff --git a/Skins/++scylla funny mix EPIC/hit100-32.png b/Skins/++scylla funny mix EPIC/hit100-32.png new file mode 100644 index 00000000..a2f883ac --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cbc20de2fa6567af9c5684a8e22ddd5d2596007095d6442b156edc07417403 +size 2310 diff --git a/Skins/++scylla funny mix EPIC/hit100-32@2x.png b/Skins/++scylla funny mix EPIC/hit100-32@2x.png new file mode 100644 index 00000000..de3d2796 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0bf9b18e7cb542e1d3c49372795f046739530dc543dbacd8f5f62151ff13d8 +size 5246 diff --git a/Skins/++scylla funny mix EPIC/hit100-33.png b/Skins/++scylla funny mix EPIC/hit100-33.png new file mode 100644 index 00000000..94985a33 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f737a8a8c40d71a02f27b3d915106b9156dfe2e6df06b82f0fcc5de08119ee82 +size 2212 diff --git a/Skins/++scylla funny mix EPIC/hit100-33@2x.png b/Skins/++scylla funny mix EPIC/hit100-33@2x.png new file mode 100644 index 00000000..ba8cebd9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6729900cde08bdd21726ce388d3beea0a347edf0c6d96173d03c69a622a44eb9 +size 5025 diff --git a/Skins/++scylla funny mix EPIC/hit100-34.png b/Skins/++scylla funny mix EPIC/hit100-34.png new file mode 100644 index 00000000..c1a9c139 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d50a1a96dd8fd7e52bc56440be31827bbceba72b4414b587999dd3040beb365 +size 2137 diff --git a/Skins/++scylla funny mix EPIC/hit100-34@2x.png b/Skins/++scylla funny mix EPIC/hit100-34@2x.png new file mode 100644 index 00000000..ca81fc68 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56de622c387429ffd74f4662ec775f798c6bca6b3d7a0b2a583598cd932c91e1 +size 4845 diff --git a/Skins/++scylla funny mix EPIC/hit100-35.png b/Skins/++scylla funny mix EPIC/hit100-35.png new file mode 100644 index 00000000..8645e24c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2209e01db1bd32dc4fefb91ed66085865a931ea9299640697c956a16316546 +size 2012 diff --git a/Skins/++scylla funny mix EPIC/hit100-35@2x.png b/Skins/++scylla funny mix EPIC/hit100-35@2x.png new file mode 100644 index 00000000..dba55b17 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c5139baa1fe16a71c005c55966789cffe6d66c270dde81a58678438cb7aaa8 +size 4651 diff --git a/Skins/++scylla funny mix EPIC/hit100-36.png b/Skins/++scylla funny mix EPIC/hit100-36.png new file mode 100644 index 00000000..9ce1befa --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599d4f1f192c1fd13c85b25c12f337b310d536058c6c69e0e51a40da17d8acf9 +size 1939 diff --git a/Skins/++scylla funny mix EPIC/hit100-36@2x.png b/Skins/++scylla funny mix EPIC/hit100-36@2x.png new file mode 100644 index 00000000..1b4a4a4c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20dde69341a08bd1e9649d866b97dd809c259ac3dac88d1d1587e00e356cdfa4 +size 4332 diff --git a/Skins/++scylla funny mix EPIC/hit100-37.png b/Skins/++scylla funny mix EPIC/hit100-37.png new file mode 100644 index 00000000..63814c26 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f99dcca537620982575cface345c20f4f7c6403e1656348ad76784a18b44c46 +size 1807 diff --git a/Skins/++scylla funny mix EPIC/hit100-37@2x.png b/Skins/++scylla funny mix EPIC/hit100-37@2x.png new file mode 100644 index 00000000..06438323 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310a783a6a4ff27f58210de977fe82b65f17c33b0609c381d8d3cdfa9ac3b504 +size 4295 diff --git a/Skins/++scylla funny mix EPIC/hit100-38.png b/Skins/++scylla funny mix EPIC/hit100-38.png new file mode 100644 index 00000000..756cfd17 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283e4375eb7676b14a2eb55c11f3180a13e4c226d7b4d65d8d04a3ef34639190 +size 1740 diff --git a/Skins/++scylla funny mix EPIC/hit100-38@2x.png b/Skins/++scylla funny mix EPIC/hit100-38@2x.png new file mode 100644 index 00000000..d7b862f3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ee5e214cd37758651d0fb701f0e9b7df7a3c869cc468ec08aa96983877f256 +size 4100 diff --git a/Skins/++scylla funny mix EPIC/hit100-39.png b/Skins/++scylla funny mix EPIC/hit100-39.png new file mode 100644 index 00000000..a6cbe467 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e400c7af959416cf9c8208f68856ef44a14bd7da4af2f99135a1ce7e7ba439b +size 1656 diff --git a/Skins/++scylla funny mix EPIC/hit100-39@2x.png b/Skins/++scylla funny mix EPIC/hit100-39@2x.png new file mode 100644 index 00000000..134b8b69 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa7d58a1dd0a047ba363d76dd8068065e4fac9de4651ed42560b12458c87d63 +size 3850 diff --git a/Skins/++scylla funny mix EPIC/hit100-3@2x.png b/Skins/++scylla funny mix EPIC/hit100-3@2x.png new file mode 100644 index 00000000..2b16ab0e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c31d0d03babb7587aff5f57e01d51db23eb650b7f2be073e200063616bf929f5 +size 7331 diff --git a/Skins/++scylla funny mix EPIC/hit100-4.png b/Skins/++scylla funny mix EPIC/hit100-4.png new file mode 100644 index 00000000..5dcd263f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f685c49b40ce2d9fbe2e13de307a089737d6b5042d9d1162c1e28e026b6eb6af +size 3341 diff --git a/Skins/++scylla funny mix EPIC/hit100-40.png b/Skins/++scylla funny mix EPIC/hit100-40.png new file mode 100644 index 00000000..4b8aad28 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ed606c8420439cd09e5171286902c5b8a2ea075c6f0b815c70fbdaa95118c5 +size 1569 diff --git a/Skins/++scylla funny mix EPIC/hit100-40@2x.png b/Skins/++scylla funny mix EPIC/hit100-40@2x.png new file mode 100644 index 00000000..9a69111f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7253d1362ad5b63697bb6562a70ac1ff0d2968b8de40ee7977fc40f3e0df2541 +size 3654 diff --git a/Skins/++scylla funny mix EPIC/hit100-41.png b/Skins/++scylla funny mix EPIC/hit100-41.png new file mode 100644 index 00000000..ac6b1eb8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6a8ff7e136b73e8a00f2b43470fb9dace9d7d6c8c535494dd0b155d79b779c +size 1465 diff --git a/Skins/++scylla funny mix EPIC/hit100-41@2x.png b/Skins/++scylla funny mix EPIC/hit100-41@2x.png new file mode 100644 index 00000000..ffc87429 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e31853c5e4820e3b3f0bcdf24b580e0f831e11229b0de468ce02236e899956bf +size 3504 diff --git a/Skins/++scylla funny mix EPIC/hit100-42.png b/Skins/++scylla funny mix EPIC/hit100-42.png new file mode 100644 index 00000000..7187dc02 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac091ee7d6300974373eca65a1530ab988144b73d831cd6576b231ecae7f272e +size 1350 diff --git a/Skins/++scylla funny mix EPIC/hit100-42@2x.png b/Skins/++scylla funny mix EPIC/hit100-42@2x.png new file mode 100644 index 00000000..e2242814 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d431fac33628596dce91ba86e981f043b8aa024ca1863286988bbaec854e839 +size 3241 diff --git a/Skins/++scylla funny mix EPIC/hit100-43.png b/Skins/++scylla funny mix EPIC/hit100-43.png new file mode 100644 index 00000000..b5a227fb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487057d31229643f044b3b63288f40c7c2748b67fba63c201a7680dbacd2be48 +size 1284 diff --git a/Skins/++scylla funny mix EPIC/hit100-43@2x.png b/Skins/++scylla funny mix EPIC/hit100-43@2x.png new file mode 100644 index 00000000..2ddd13e1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ddf58a3802f25bb876b21dc0c8b18304fc11a1b25440f84fcb4f276294fd26 +size 3065 diff --git a/Skins/++scylla funny mix EPIC/hit100-44.png b/Skins/++scylla funny mix EPIC/hit100-44.png new file mode 100644 index 00000000..4520de2b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6381ade738c72807e69882798739c18d836bb8644da6e851e027ccb7204274ee +size 1179 diff --git a/Skins/++scylla funny mix EPIC/hit100-44@2x.png b/Skins/++scylla funny mix EPIC/hit100-44@2x.png new file mode 100644 index 00000000..5243b590 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab95e734c9f5b880f2bae517d15bd799a653565d42992819c138b777ac17940d +size 2972 diff --git a/Skins/++scylla funny mix EPIC/hit100-45.png b/Skins/++scylla funny mix EPIC/hit100-45.png new file mode 100644 index 00000000..e4d5d042 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e798e3a905b1c6dd84d98a34a2ee5907443899c425d5e3d077dc2eb0eb4ed8d8 +size 1108 diff --git a/Skins/++scylla funny mix EPIC/hit100-45@2x.png b/Skins/++scylla funny mix EPIC/hit100-45@2x.png new file mode 100644 index 00000000..98e57c6b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3fe57f8f9c5349c33d82295a9ed797d77e85eef5205bee911d06050895dc9b0 +size 2749 diff --git a/Skins/++scylla funny mix EPIC/hit100-46.png b/Skins/++scylla funny mix EPIC/hit100-46.png new file mode 100644 index 00000000..7ef0895b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7fa42e72d07a07c16d11102e362804cd8e6c1c799a7ae9bd650cdbb805fa3cf +size 1054 diff --git a/Skins/++scylla funny mix EPIC/hit100-46@2x.png b/Skins/++scylla funny mix EPIC/hit100-46@2x.png new file mode 100644 index 00000000..fe40ef29 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8f591a2a4a5ea36898bc19395b060d274bd8340359b6d6d85a1f52f4a8b753 +size 2648 diff --git a/Skins/++scylla funny mix EPIC/hit100-47.png b/Skins/++scylla funny mix EPIC/hit100-47.png new file mode 100644 index 00000000..8f5c1680 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52bfd44edc59ed3e3901c144d252d21a621938b356b900acb08f1e2d2cb4fc4d +size 977 diff --git a/Skins/++scylla funny mix EPIC/hit100-47@2x.png b/Skins/++scylla funny mix EPIC/hit100-47@2x.png new file mode 100644 index 00000000..dd14c699 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691c39aba2b781760c73f5259c7804274f5f3f65048f5fe31bbd80900367497c +size 2449 diff --git a/Skins/++scylla funny mix EPIC/hit100-48.png b/Skins/++scylla funny mix EPIC/hit100-48.png new file mode 100644 index 00000000..7085e859 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a8c8455520ecdaef1e777ac3a9b9f727bfb0eeb48441d32ceef44fd78c618f +size 912 diff --git a/Skins/++scylla funny mix EPIC/hit100-48@2x.png b/Skins/++scylla funny mix EPIC/hit100-48@2x.png new file mode 100644 index 00000000..86d8dd35 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1453bb915b9b9300906de84d95f946cbba4c1fc8a5f6c1a50f03fec4618535d5 +size 2236 diff --git a/Skins/++scylla funny mix EPIC/hit100-49.png b/Skins/++scylla funny mix EPIC/hit100-49.png new file mode 100644 index 00000000..ea4560a6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba7526a8659b6e77dcf2d2e42df00e30a1e8856f436a0e9172722ab28fb2f0f +size 834 diff --git a/Skins/++scylla funny mix EPIC/hit100-49@2x.png b/Skins/++scylla funny mix EPIC/hit100-49@2x.png new file mode 100644 index 00000000..76614b58 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa0edc51bcd7842edb91faf44acac07ffb92fd7053c58d26f6713e936a9589e +size 2087 diff --git a/Skins/++scylla funny mix EPIC/hit100-4@2x.png b/Skins/++scylla funny mix EPIC/hit100-4@2x.png new file mode 100644 index 00000000..8aa95c50 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1259ffe82de38fd9ca935fb17e109d5127efb8328d84410395f2695192b612d4 +size 7530 diff --git a/Skins/++scylla funny mix EPIC/hit100-5.png b/Skins/++scylla funny mix EPIC/hit100-5.png new file mode 100644 index 00000000..541c857d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8336cea154933a3c38f4d84e4db23e267f28139db21f44f291ce129489c5c466 +size 3329 diff --git a/Skins/++scylla funny mix EPIC/hit100-50.png b/Skins/++scylla funny mix EPIC/hit100-50.png new file mode 100644 index 00000000..92e22000 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f97fdb199fc3deb1c1dc54ea5b55711e1b298e0dfae56c4da028ee8f7df9c705 +size 739 diff --git a/Skins/++scylla funny mix EPIC/hit100-50@2x.png b/Skins/++scylla funny mix EPIC/hit100-50@2x.png new file mode 100644 index 00000000..d5c74c2a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ddf7d5a6a40b0acee492dd2f90dc8ca56ea0fa6498381bf3d0457fbc8565d8 +size 1915 diff --git a/Skins/++scylla funny mix EPIC/hit100-51.png b/Skins/++scylla funny mix EPIC/hit100-51.png new file mode 100644 index 00000000..6e8be78a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c932000016f4b8e51e9b8cb5c689aa13c4caecd17ed5a901d65453c60df5a8 +size 690 diff --git a/Skins/++scylla funny mix EPIC/hit100-51@2x.png b/Skins/++scylla funny mix EPIC/hit100-51@2x.png new file mode 100644 index 00000000..3bb7916e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-51@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ae8153c8a5d4cac05a29cf828380db3792c3193b2f8b79574e318b361ae0f0 +size 1793 diff --git a/Skins/++scylla funny mix EPIC/hit100-52.png b/Skins/++scylla funny mix EPIC/hit100-52.png new file mode 100644 index 00000000..0522a75c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7abf5f06f020c4154f056a1529528b32ebb5cdc793d6179d46066183190892 +size 625 diff --git a/Skins/++scylla funny mix EPIC/hit100-52@2x.png b/Skins/++scylla funny mix EPIC/hit100-52@2x.png new file mode 100644 index 00000000..714b12c6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-52@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86eaf6c5f13c9a142d8955861d8efc5386ad0abec7de044e015841d5e0c5a6b +size 1617 diff --git a/Skins/++scylla funny mix EPIC/hit100-53.png b/Skins/++scylla funny mix EPIC/hit100-53.png new file mode 100644 index 00000000..fdf72861 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6112f3b65c419521d113331dce8b991ced47b2c6d38a8ced7ad43ae59a126d +size 563 diff --git a/Skins/++scylla funny mix EPIC/hit100-53@2x.png b/Skins/++scylla funny mix EPIC/hit100-53@2x.png new file mode 100644 index 00000000..fda1f3e6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-53@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1612e7459bde7eeb30588c4cbbc23341fff36b62b9ee095a42ac62c3c4357d +size 1452 diff --git a/Skins/++scylla funny mix EPIC/hit100-54.png b/Skins/++scylla funny mix EPIC/hit100-54.png new file mode 100644 index 00000000..051856f3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eaea16e40493794ec90b1247f24c84178ea283d2786be707251ed60fa441dcc +size 475 diff --git a/Skins/++scylla funny mix EPIC/hit100-54@2x.png b/Skins/++scylla funny mix EPIC/hit100-54@2x.png new file mode 100644 index 00000000..2f91b752 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-54@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901a544c63e5817bcb4874da21c7374a7218c3dde43c399855746f54701fafc0 +size 1298 diff --git a/Skins/++scylla funny mix EPIC/hit100-55.png b/Skins/++scylla funny mix EPIC/hit100-55.png new file mode 100644 index 00000000..7d6a0d56 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f82c2310820ab56059540a1776bef02308adc6f47d347bcff9fc264d4bb9764c +size 437 diff --git a/Skins/++scylla funny mix EPIC/hit100-55@2x.png b/Skins/++scylla funny mix EPIC/hit100-55@2x.png new file mode 100644 index 00000000..91c5b907 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-55@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:913b83d47cd16e15b5b68062b9ded23c2b13223bc7fd8244238c8745ed57613b +size 1118 diff --git a/Skins/++scylla funny mix EPIC/hit100-56.png b/Skins/++scylla funny mix EPIC/hit100-56.png new file mode 100644 index 00000000..644594d0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562d8a459ad66b4ec508d843b6d4987e970622a1860ab9ae964d56e07b10b34e +size 377 diff --git a/Skins/++scylla funny mix EPIC/hit100-56@2x.png b/Skins/++scylla funny mix EPIC/hit100-56@2x.png new file mode 100644 index 00000000..3ac2265b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-56@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9213aa29f3e2d02ded6297327b9b49339121ea3efbf9dd3b5b2fb13dd0456696 +size 944 diff --git a/Skins/++scylla funny mix EPIC/hit100-57.png b/Skins/++scylla funny mix EPIC/hit100-57.png new file mode 100644 index 00000000..fd8b8976 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c6255d5775961f9a46030eb45f1d2ef6c38568d50a4ebdb8160a9d79adb12a +size 316 diff --git a/Skins/++scylla funny mix EPIC/hit100-57@2x.png b/Skins/++scylla funny mix EPIC/hit100-57@2x.png new file mode 100644 index 00000000..7d421611 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-57@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ddafd9c07132dcddbfdef364a33568a5b74d78215725acbe33d57ad909b5058 +size 782 diff --git a/Skins/++scylla funny mix EPIC/hit100-58.png b/Skins/++scylla funny mix EPIC/hit100-58.png new file mode 100644 index 00000000..09ee58b3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a213b58156000ef7af41df766100b402f96649f2eb7aff80bd6a004e3c58b18 +size 270 diff --git a/Skins/++scylla funny mix EPIC/hit100-58@2x.png b/Skins/++scylla funny mix EPIC/hit100-58@2x.png new file mode 100644 index 00000000..66a83abb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-58@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4841977342cd0f18cbb0cbebd364ba8becb37bff47907b69047d8466b0f24607 +size 638 diff --git a/Skins/++scylla funny mix EPIC/hit100-59.png b/Skins/++scylla funny mix EPIC/hit100-59.png new file mode 100644 index 00000000..70502805 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9efa8006cffe487d0ead8f9ca270d5a0c146ae875f488ec0892b61db57819e9a +size 235 diff --git a/Skins/++scylla funny mix EPIC/hit100-59@2x.png b/Skins/++scylla funny mix EPIC/hit100-59@2x.png new file mode 100644 index 00000000..dd35625e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-59@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d1132ae5215e374e795c183eab423f7d7342820e0a3664b03b37a2a350bbfde +size 547 diff --git a/Skins/++scylla funny mix EPIC/hit100-5@2x.png b/Skins/++scylla funny mix EPIC/hit100-5@2x.png new file mode 100644 index 00000000..fe2d6559 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d46500c3e8fed99a45794c06f18e9b164e0fd5cbd42dd6632abd56457bcf8a32 +size 7552 diff --git a/Skins/++scylla funny mix EPIC/hit100-6.png b/Skins/++scylla funny mix EPIC/hit100-6.png new file mode 100644 index 00000000..76a06644 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23125baa887eb8184813a82faeb23b9184fd9fc3693258f37513cfd5db72cf7 +size 3482 diff --git a/Skins/++scylla funny mix EPIC/hit100-6@2x.png b/Skins/++scylla funny mix EPIC/hit100-6@2x.png new file mode 100644 index 00000000..91fdcc86 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1d2228a22339d7f80b145b858e32f843b02468d1d3a678f1486ccc49fbe852 +size 7684 diff --git a/Skins/++scylla funny mix EPIC/hit100-7.png b/Skins/++scylla funny mix EPIC/hit100-7.png new file mode 100644 index 00000000..16a981cd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59e52a06a8de52f3d9b9488093883ae985a5ee925ca94bc09cc62a2dd66e7c2c +size 3424 diff --git a/Skins/++scylla funny mix EPIC/hit100-7@2x.png b/Skins/++scylla funny mix EPIC/hit100-7@2x.png new file mode 100644 index 00000000..220a1da5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ecece5b58657ee1df12aeffaa4dd281ec3d3bc1cef5e7e281bbeded5dd2259 +size 7752 diff --git a/Skins/++scylla funny mix EPIC/hit100-8.png b/Skins/++scylla funny mix EPIC/hit100-8.png new file mode 100644 index 00000000..2413feef --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed49a2bdf1b60998e3ef18be9c26998750d133e3d3670da82342362a68f43ebb +size 3187 diff --git a/Skins/++scylla funny mix EPIC/hit100-8@2x.png b/Skins/++scylla funny mix EPIC/hit100-8@2x.png new file mode 100644 index 00000000..ee70a45d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b69fff05aad19d4927277a8e6f3b9eeb6f8fdcb453b59719d86bb2899007ce6 +size 7240 diff --git a/Skins/++scylla funny mix EPIC/hit100-9.png b/Skins/++scylla funny mix EPIC/hit100-9.png new file mode 100644 index 00000000..8e09efb7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67ed6cdb5831605924b57c9b4561bbd237d862642ddd91de85a7527a43f7dec +size 3336 diff --git a/Skins/++scylla funny mix EPIC/hit100-9@2x.png b/Skins/++scylla funny mix EPIC/hit100-9@2x.png new file mode 100644 index 00000000..9200a394 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eddb7867e9ea9d6a5bcb5598b3b42770edb68c535cf46b47af1de349abe7df06 +size 7461 diff --git a/Skins/++scylla funny mix EPIC/hit100.png b/Skins/++scylla funny mix EPIC/hit100.png new file mode 100644 index 00000000..42c174fc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9816ed4a142393d32997fa26d1525838bdd2fed8a10f2e345e2cda04d2633f +size 25577 diff --git a/Skins/++scylla funny mix EPIC/hit100@2x.png b/Skins/++scylla funny mix EPIC/hit100@2x.png new file mode 100644 index 00000000..f3bee5ea --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e6c90ab42cb0ed39730b606528ff83c52d60c2a50f9eb91f591753ee4f5da12 +size 27608 diff --git a/Skins/++scylla funny mix EPIC/hit100k-0.png b/Skins/++scylla funny mix EPIC/hit100k-0.png new file mode 100644 index 00000000..70bb55ec --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b5f63f4157fb2ceb9a7201f595e0498c93e9e7988d8cd3aa4a96cab6c9fe5 +size 162 diff --git a/Skins/++scylla funny mix EPIC/hit100k-0@2x.png b/Skins/++scylla funny mix EPIC/hit100k-0@2x.png new file mode 100644 index 00000000..ce5b63df --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efb3eb62b6a7d4d45832d5189c9f2dcded649c9a79dad8004e20c4f8b3d491b +size 205 diff --git a/Skins/++scylla funny mix EPIC/hit100k-1.png b/Skins/++scylla funny mix EPIC/hit100k-1.png new file mode 100644 index 00000000..271bc2ee --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0fd73486769acff76167ac1d87591db64bdedba44d455ee8c7f313c85dbd78 +size 2217 diff --git a/Skins/++scylla funny mix EPIC/hit100k-10.png b/Skins/++scylla funny mix EPIC/hit100k-10.png new file mode 100644 index 00000000..94f2cc6f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5816cd2e768fc2b087ba45452979d0bfc674151a811526e3607a25804e41b12d +size 2234 diff --git a/Skins/++scylla funny mix EPIC/hit100k-10@2x.png b/Skins/++scylla funny mix EPIC/hit100k-10@2x.png new file mode 100644 index 00000000..88554377 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c16fbbc1a26dc534ad3535a4ac59f970c6173fa70ba147b44522fc61227156f +size 4875 diff --git a/Skins/++scylla funny mix EPIC/hit100k-11.png b/Skins/++scylla funny mix EPIC/hit100k-11.png new file mode 100644 index 00000000..d66418bc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec5e653a3d71f5793f0648e2e7fee50e3b64e87851ce165a5c2c51d1ab3b988f +size 2262 diff --git a/Skins/++scylla funny mix EPIC/hit100k-11@2x.png b/Skins/++scylla funny mix EPIC/hit100k-11@2x.png new file mode 100644 index 00000000..ee42c018 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2392e19545f4213b5a7d0b1acd913825b45432d917a13f8cddaf32c66a679d +size 4934 diff --git a/Skins/++scylla funny mix EPIC/hit100k-12.png b/Skins/++scylla funny mix EPIC/hit100k-12.png new file mode 100644 index 00000000..5a04b6fc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642056f4acd282b499e9fa04000fc60f5ef4ca07bd5ab6d641ef3fc87e3a439b +size 2237 diff --git a/Skins/++scylla funny mix EPIC/hit100k-12@2x.png b/Skins/++scylla funny mix EPIC/hit100k-12@2x.png new file mode 100644 index 00000000..f4e7e0de --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ca4b64030e969c833452ed5b1e3072aa74774f6ad411e090067125f59db9b1 +size 4860 diff --git a/Skins/++scylla funny mix EPIC/hit100k-13.png b/Skins/++scylla funny mix EPIC/hit100k-13.png new file mode 100644 index 00000000..26adaa6b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c59dd60f58673a47e9edd847196b683d56be7199fdfd2bd3cee842647ea5ef6 +size 2262 diff --git a/Skins/++scylla funny mix EPIC/hit100k-13@2x.png b/Skins/++scylla funny mix EPIC/hit100k-13@2x.png new file mode 100644 index 00000000..945de426 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bacff184d4565364a5629b4725f89e6c52f4ec2c8c9ead5e0d8fe23ecdbf27ce +size 4765 diff --git a/Skins/++scylla funny mix EPIC/hit100k-14.png b/Skins/++scylla funny mix EPIC/hit100k-14.png new file mode 100644 index 00000000..52ad6249 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e59e09f1e02a07fe578cbc074b7355f86c0fb7b56e7f1165be8ba0be6aaefb +size 2328 diff --git a/Skins/++scylla funny mix EPIC/hit100k-14@2x.png b/Skins/++scylla funny mix EPIC/hit100k-14@2x.png new file mode 100644 index 00000000..0622698c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:515f4891f50231a57ff811a22407991d5b037d9dc0c500793ba5f4cd9782e6b2 +size 4890 diff --git a/Skins/++scylla funny mix EPIC/hit100k-15.png b/Skins/++scylla funny mix EPIC/hit100k-15.png new file mode 100644 index 00000000..eae7deeb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65b1ba98557ad45f31253375c096f196a7bcf8d5fbd9d4fd6816231cf1cb9fd +size 2290 diff --git a/Skins/++scylla funny mix EPIC/hit100k-15@2x.png b/Skins/++scylla funny mix EPIC/hit100k-15@2x.png new file mode 100644 index 00000000..b54e6e43 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d67bc1586fd1a6ad2fa0bbce8d77d4115d2b0235cf29d74a4655c16f2f6d3af +size 4908 diff --git a/Skins/++scylla funny mix EPIC/hit100k-16.png b/Skins/++scylla funny mix EPIC/hit100k-16.png new file mode 100644 index 00000000..e8ebdfa3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de1e3539333ba330f6890d2e9ab2e31a91bcd58310d6a542e03854d4344ab7dc +size 2265 diff --git a/Skins/++scylla funny mix EPIC/hit100k-16@2x.png b/Skins/++scylla funny mix EPIC/hit100k-16@2x.png new file mode 100644 index 00000000..d93909eb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ed601ce146190ce22d267256a787b6bfc33f148d9e7474154fd9bfd9a618ef +size 4847 diff --git a/Skins/++scylla funny mix EPIC/hit100k-17.png b/Skins/++scylla funny mix EPIC/hit100k-17.png new file mode 100644 index 00000000..1d2262a1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e1b2c549bb0ccaa7abfc241fa7c7bc1d467f743e1523c53738f0df53606fc1 +size 2268 diff --git a/Skins/++scylla funny mix EPIC/hit100k-17@2x.png b/Skins/++scylla funny mix EPIC/hit100k-17@2x.png new file mode 100644 index 00000000..19e3de8a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a23e7c2a4ba742fe409b907a64e13bce008c1b97db4d2a190b7185e90f2eb8 +size 4872 diff --git a/Skins/++scylla funny mix EPIC/hit100k-18.png b/Skins/++scylla funny mix EPIC/hit100k-18.png new file mode 100644 index 00000000..3221e1c6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d862b348b52dc4efac93f0a19dd21cf5181c80b674afdb6ce99af3bdbd8030c +size 2265 diff --git a/Skins/++scylla funny mix EPIC/hit100k-18@2x.png b/Skins/++scylla funny mix EPIC/hit100k-18@2x.png new file mode 100644 index 00000000..deaf90c2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab960515f5e3a7c2909d0c30cb8194575ac8fa9bb58628bb1c89519e2a0661f +size 4931 diff --git a/Skins/++scylla funny mix EPIC/hit100k-19.png b/Skins/++scylla funny mix EPIC/hit100k-19.png new file mode 100644 index 00000000..116cb8bc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2200a10c831b4e831cca09740ae76cf0f502da5ec5194148db6009c5f4fb106 +size 2276 diff --git a/Skins/++scylla funny mix EPIC/hit100k-19@2x.png b/Skins/++scylla funny mix EPIC/hit100k-19@2x.png new file mode 100644 index 00000000..7cade8fe --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b334598f2a4967bfa2516a1658e677ef8f6537f8c28cc0721f517898245c13ea +size 4859 diff --git a/Skins/++scylla funny mix EPIC/hit100k-1@2x.png b/Skins/++scylla funny mix EPIC/hit100k-1@2x.png new file mode 100644 index 00000000..a0ff54ea --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e7c0cd00df20e9f7c3d8a6716294a429581ebdd0b5be1517fe1b3264b9cdc1 +size 4918 diff --git a/Skins/++scylla funny mix EPIC/hit100k-2.png b/Skins/++scylla funny mix EPIC/hit100k-2.png new file mode 100644 index 00000000..5b77d779 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502fc9be5eae42ceeb1624a713e066d8f09b57bfe6b02fb705677e82028a5bd2 +size 2390 diff --git a/Skins/++scylla funny mix EPIC/hit100k-20.png b/Skins/++scylla funny mix EPIC/hit100k-20.png new file mode 100644 index 00000000..3d66f920 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996c021a7f1cb9ae2fe2e84b566dfdfc264a5c25daeeaa63329e245771702bf7 +size 2238 diff --git a/Skins/++scylla funny mix EPIC/hit100k-20@2x.png b/Skins/++scylla funny mix EPIC/hit100k-20@2x.png new file mode 100644 index 00000000..668c528c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1eddd5291bbbde495ecc400c43dac32ec5fe48f1a44aedf8c05ca381cfd65e +size 4943 diff --git a/Skins/++scylla funny mix EPIC/hit100k-21.png b/Skins/++scylla funny mix EPIC/hit100k-21.png new file mode 100644 index 00000000..6c0f27a6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac48ec8e7e2d8dd2b849887df20ac4dae777e468ce30841e720c4fb74ede16bb +size 2257 diff --git a/Skins/++scylla funny mix EPIC/hit100k-21@2x.png b/Skins/++scylla funny mix EPIC/hit100k-21@2x.png new file mode 100644 index 00000000..d475fe0e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4a50f5cad4e6d816e3ff3dd327c0e868fe8a1eed5e33dda9be236c4cc377da +size 4893 diff --git a/Skins/++scylla funny mix EPIC/hit100k-22.png b/Skins/++scylla funny mix EPIC/hit100k-22.png new file mode 100644 index 00000000..de808e67 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e772cc924eb0a1f14ea29201b346e62dcce36bde75480633df5d2d8e271abc1d +size 2259 diff --git a/Skins/++scylla funny mix EPIC/hit100k-22@2x.png b/Skins/++scylla funny mix EPIC/hit100k-22@2x.png new file mode 100644 index 00000000..cc70af80 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46323d2d51c2c94126b88135948f6f4d0726d522342e0cab5d15c60fcd172486 +size 4923 diff --git a/Skins/++scylla funny mix EPIC/hit100k-23.png b/Skins/++scylla funny mix EPIC/hit100k-23.png new file mode 100644 index 00000000..321e41d5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92f920d2ce3ff53794d57c016db68579b3dec46867eb21ba8c18f14d8e96b93d +size 2200 diff --git a/Skins/++scylla funny mix EPIC/hit100k-23@2x.png b/Skins/++scylla funny mix EPIC/hit100k-23@2x.png new file mode 100644 index 00000000..2fdd0779 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2806c3a05f0f245f6f86eb6a5803e0957f619de013798d04b27ad202778a9eb7 +size 4885 diff --git a/Skins/++scylla funny mix EPIC/hit100k-24.png b/Skins/++scylla funny mix EPIC/hit100k-24.png new file mode 100644 index 00000000..fe0e514b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0869fb071580b98d6545da221c17dc42821173d3f8eb02636b353dfc343599d0 +size 2197 diff --git a/Skins/++scylla funny mix EPIC/hit100k-24@2x.png b/Skins/++scylla funny mix EPIC/hit100k-24@2x.png new file mode 100644 index 00000000..b25e1b6a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331d24f83d75a091c5f98d38c349fcd152b75a2390d1c23ebe5f0a422ca57886 +size 4799 diff --git a/Skins/++scylla funny mix EPIC/hit100k-25.png b/Skins/++scylla funny mix EPIC/hit100k-25.png new file mode 100644 index 00000000..24c13774 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3128ec836f29f3fafcc238e6537779069b4411a7f4a5a5e7ccda15a9f7e0c243 +size 2140 diff --git a/Skins/++scylla funny mix EPIC/hit100k-25@2x.png b/Skins/++scylla funny mix EPIC/hit100k-25@2x.png new file mode 100644 index 00000000..71d5dea4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8628f6a8b461be99df8676eec7f3478000af43eeef3e82a409e0cdcb90af8623 +size 4718 diff --git a/Skins/++scylla funny mix EPIC/hit100k-26.png b/Skins/++scylla funny mix EPIC/hit100k-26.png new file mode 100644 index 00000000..b3f934f9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aada8a9c717ab7a4ba14af6e576e16a0714890120a4b43f80351ab0554f74314 +size 2072 diff --git a/Skins/++scylla funny mix EPIC/hit100k-26@2x.png b/Skins/++scylla funny mix EPIC/hit100k-26@2x.png new file mode 100644 index 00000000..80ecbb65 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce169ddec9df6b7849dca83bd18ed392ef9dc4871e406bba30f347778047a457 +size 4618 diff --git a/Skins/++scylla funny mix EPIC/hit100k-27.png b/Skins/++scylla funny mix EPIC/hit100k-27.png new file mode 100644 index 00000000..db54e855 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5204b995150b4b8d8bd9e4201c25e7fecff451236ba9ee843daf6b3248319604 +size 2042 diff --git a/Skins/++scylla funny mix EPIC/hit100k-27@2x.png b/Skins/++scylla funny mix EPIC/hit100k-27@2x.png new file mode 100644 index 00000000..0dbf4835 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66abf8b22c07a8f4a5c71c32b8cbd45a96dbbaf48e82df9b8d2366c17c3729d +size 4460 diff --git a/Skins/++scylla funny mix EPIC/hit100k-28.png b/Skins/++scylla funny mix EPIC/hit100k-28.png new file mode 100644 index 00000000..4261abb0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c7d17041cd7273641eb4b3803b2217d432237fdb7c56e37bd7cba6353b78c0c +size 1971 diff --git a/Skins/++scylla funny mix EPIC/hit100k-28@2x.png b/Skins/++scylla funny mix EPIC/hit100k-28@2x.png new file mode 100644 index 00000000..80b09fb4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d527fa2070d771d381a42c6136bf389fc0b28396ab1533152179ebd5517ed3e +size 4430 diff --git a/Skins/++scylla funny mix EPIC/hit100k-29.png b/Skins/++scylla funny mix EPIC/hit100k-29.png new file mode 100644 index 00000000..9342aebc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a76f1034797a2ac2288fe8664762b7e0ebc598c954c5caecd2d681d60f94c3b +size 1899 diff --git a/Skins/++scylla funny mix EPIC/hit100k-29@2x.png b/Skins/++scylla funny mix EPIC/hit100k-29@2x.png new file mode 100644 index 00000000..06e0fc90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6934ab9c258f384d44adce2a20a0afe17a2b05be0dd1d407485bc9e9c83bfc +size 4343 diff --git a/Skins/++scylla funny mix EPIC/hit100k-2@2x.png b/Skins/++scylla funny mix EPIC/hit100k-2@2x.png new file mode 100644 index 00000000..5860109a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b804cc1f4c855dce71e2625594ca3ab6fc0b5688288d0d81c6af35730610d3a +size 5428 diff --git a/Skins/++scylla funny mix EPIC/hit100k-3.png b/Skins/++scylla funny mix EPIC/hit100k-3.png new file mode 100644 index 00000000..e5e00b82 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5a9e9b1bfbd9fbf79ca8d5707b40bc24b3d1ace2eb27787fe32a3f33cef184 +size 2460 diff --git a/Skins/++scylla funny mix EPIC/hit100k-30.png b/Skins/++scylla funny mix EPIC/hit100k-30.png new file mode 100644 index 00000000..90ee8685 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cabcfbf53aac8c662126365b0e96008e63776bc3f0f801f0523057d1a73980 +size 1824 diff --git a/Skins/++scylla funny mix EPIC/hit100k-30@2x.png b/Skins/++scylla funny mix EPIC/hit100k-30@2x.png new file mode 100644 index 00000000..9f84d7a2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a271621511a89dda0ee2813d88d76ae8250c8e893fbe70d55eee48be64753a3 +size 4214 diff --git a/Skins/++scylla funny mix EPIC/hit100k-31.png b/Skins/++scylla funny mix EPIC/hit100k-31.png new file mode 100644 index 00000000..5f75e523 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad34a3c32d2d6e0323af5ed9b51a3dc78f2d5fdc194bc5ff51f257ce9def1491 +size 1769 diff --git a/Skins/++scylla funny mix EPIC/hit100k-31@2x.png b/Skins/++scylla funny mix EPIC/hit100k-31@2x.png new file mode 100644 index 00000000..7212e44d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d788ae3e978e905a38c006646b354b08de4a7db73d2ed7c5152e5c52036d3d19 +size 4142 diff --git a/Skins/++scylla funny mix EPIC/hit100k-32.png b/Skins/++scylla funny mix EPIC/hit100k-32.png new file mode 100644 index 00000000..f458c12d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:550c7fe3a92bc31a3d3fb4d628e795cb55a7c8e9c98ad7a93f467be52b5a5e01 +size 1732 diff --git a/Skins/++scylla funny mix EPIC/hit100k-32@2x.png b/Skins/++scylla funny mix EPIC/hit100k-32@2x.png new file mode 100644 index 00000000..6583d877 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c7bceef0a7266e7f995459d0045864f67994951cfb14136f5c09e770daa1024 +size 4001 diff --git a/Skins/++scylla funny mix EPIC/hit100k-33.png b/Skins/++scylla funny mix EPIC/hit100k-33.png new file mode 100644 index 00000000..ce219e0c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3815c58a5b73dc99d6183fe219751a9f9e86d3f65c476a28b2e5c00e4e52b49b +size 1641 diff --git a/Skins/++scylla funny mix EPIC/hit100k-33@2x.png b/Skins/++scylla funny mix EPIC/hit100k-33@2x.png new file mode 100644 index 00000000..8d024dc1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700e59f49eef818db46a6cfe39faddef4c6bf67514f04d20e0cfdeffde182b41 +size 3831 diff --git a/Skins/++scylla funny mix EPIC/hit100k-34.png b/Skins/++scylla funny mix EPIC/hit100k-34.png new file mode 100644 index 00000000..1fe5f971 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab37ec79d369923d1646ebd3ef6f8c3069a5717f0a88b64d283010bef244a5 +size 1590 diff --git a/Skins/++scylla funny mix EPIC/hit100k-34@2x.png b/Skins/++scylla funny mix EPIC/hit100k-34@2x.png new file mode 100644 index 00000000..43022592 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eebc2a7e13793c2ddc70c300d64894d580dfcdd3a42bc0c96946a0da2ddfeb5d +size 3730 diff --git a/Skins/++scylla funny mix EPIC/hit100k-35.png b/Skins/++scylla funny mix EPIC/hit100k-35.png new file mode 100644 index 00000000..c7e8d37d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a3f577e89727b87de94edd1166c5c5f8ee027003d2990be1f0a24e206c3bd7 +size 1487 diff --git a/Skins/++scylla funny mix EPIC/hit100k-35@2x.png b/Skins/++scylla funny mix EPIC/hit100k-35@2x.png new file mode 100644 index 00000000..feef6a3d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beec4c8ee165f12790a8b153f891ef60a4b038e87571508936188b12fac7c882 +size 3614 diff --git a/Skins/++scylla funny mix EPIC/hit100k-36.png b/Skins/++scylla funny mix EPIC/hit100k-36.png new file mode 100644 index 00000000..8af9c1cc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b731810c646bc65262b361821932f1a8f70b098c4521249d015859dd3a60e1c3 +size 1413 diff --git a/Skins/++scylla funny mix EPIC/hit100k-36@2x.png b/Skins/++scylla funny mix EPIC/hit100k-36@2x.png new file mode 100644 index 00000000..ed00890e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283077451263a88ad93981966b99aa2466ff635e0f3886998ec250ed47537ae4 +size 3338 diff --git a/Skins/++scylla funny mix EPIC/hit100k-37.png b/Skins/++scylla funny mix EPIC/hit100k-37.png new file mode 100644 index 00000000..c37008c7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1588730ffbb170af8f6848142124bbee51f13c42515e53795d3c5cc32de5ccc +size 1363 diff --git a/Skins/++scylla funny mix EPIC/hit100k-37@2x.png b/Skins/++scylla funny mix EPIC/hit100k-37@2x.png new file mode 100644 index 00000000..71b85b47 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad6524aaf36530f2c046d3599f5317188ad4c102e1e78ac08af0718976c0b6e +size 3409 diff --git a/Skins/++scylla funny mix EPIC/hit100k-38.png b/Skins/++scylla funny mix EPIC/hit100k-38.png new file mode 100644 index 00000000..352a368c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe10f9876accf34d25301ffc7979f57c80e7f73ffc1754e7184f4793524dbaf +size 1315 diff --git a/Skins/++scylla funny mix EPIC/hit100k-38@2x.png b/Skins/++scylla funny mix EPIC/hit100k-38@2x.png new file mode 100644 index 00000000..450b2d79 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a5ed39cf39bc5d8c5c390cda7fd02fa77ff16ed8e54b3d29793aede21a6bac +size 3320 diff --git a/Skins/++scylla funny mix EPIC/hit100k-39.png b/Skins/++scylla funny mix EPIC/hit100k-39.png new file mode 100644 index 00000000..c77a32dc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c42d260f08834240bf57a3a79293d83306bb53d75c5bfdbe2dfd2d054958fd +size 1239 diff --git a/Skins/++scylla funny mix EPIC/hit100k-39@2x.png b/Skins/++scylla funny mix EPIC/hit100k-39@2x.png new file mode 100644 index 00000000..c37e2f80 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe51347f7c725dafa08efccd4a24e84a96f088b5b71716865ef63994343b7e28 +size 3148 diff --git a/Skins/++scylla funny mix EPIC/hit100k-3@2x.png b/Skins/++scylla funny mix EPIC/hit100k-3@2x.png new file mode 100644 index 00000000..a0288d4b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c8485bef73b4342e01cc9fee39c01f38672574245c9f9628e2688f9a70cb694 +size 5507 diff --git a/Skins/++scylla funny mix EPIC/hit100k-4.png b/Skins/++scylla funny mix EPIC/hit100k-4.png new file mode 100644 index 00000000..c0f4a500 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6139a9be880d25958dd8e6d7112e3a7e388a52c8ef8b51b6d0a237bd6c1bee +size 2490 diff --git a/Skins/++scylla funny mix EPIC/hit100k-40.png b/Skins/++scylla funny mix EPIC/hit100k-40.png new file mode 100644 index 00000000..c22a235f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563333a39c657e74f487437514a1829bd24ca850174839d5e1dbf2b7efb872d4 +size 1188 diff --git a/Skins/++scylla funny mix EPIC/hit100k-40@2x.png b/Skins/++scylla funny mix EPIC/hit100k-40@2x.png new file mode 100644 index 00000000..6de8a451 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fc1b6ad65c4342b8eed38cc06fdc28281f4299579727afe9357febcc1c65b3 +size 3002 diff --git a/Skins/++scylla funny mix EPIC/hit100k-41.png b/Skins/++scylla funny mix EPIC/hit100k-41.png new file mode 100644 index 00000000..50211ed2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1e3377bd388e1f93fd8e6c4fc56bd6f16ef9640a9fe2ea1d577e0a0d8ae673 +size 1117 diff --git a/Skins/++scylla funny mix EPIC/hit100k-41@2x.png b/Skins/++scylla funny mix EPIC/hit100k-41@2x.png new file mode 100644 index 00000000..5d8db864 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db13daa713d5a3ebca154478452836a543eb7cf0e44e6f68fade3043dd2d01b4 +size 2902 diff --git a/Skins/++scylla funny mix EPIC/hit100k-42.png b/Skins/++scylla funny mix EPIC/hit100k-42.png new file mode 100644 index 00000000..accc4bbe --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5acaffefaeb8274cdbf02317c1a1b192b1320c320a5113c02dadc336db2b1f42 +size 1042 diff --git a/Skins/++scylla funny mix EPIC/hit100k-42@2x.png b/Skins/++scylla funny mix EPIC/hit100k-42@2x.png new file mode 100644 index 00000000..5a2eae57 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834c38737de75c7c28631aebb5c2f34ea5d0b030afe9e87f1737d1d5c96dd8f6 +size 2709 diff --git a/Skins/++scylla funny mix EPIC/hit100k-43.png b/Skins/++scylla funny mix EPIC/hit100k-43.png new file mode 100644 index 00000000..c04c3955 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a5769d6b00cc16703f2a18547c697f2ea333ea745db4020189b899ad569d3e6 +size 998 diff --git a/Skins/++scylla funny mix EPIC/hit100k-43@2x.png b/Skins/++scylla funny mix EPIC/hit100k-43@2x.png new file mode 100644 index 00000000..6a517be6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f2c7e9836fe39f288ecba09c488da9910729fd0af657d33a105ba45ab0512b +size 2607 diff --git a/Skins/++scylla funny mix EPIC/hit100k-44.png b/Skins/++scylla funny mix EPIC/hit100k-44.png new file mode 100644 index 00000000..b13d3671 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09be08ad696d0138afd582d161bddb846bc9c9492c4bb1a8ca1d932219919af +size 944 diff --git a/Skins/++scylla funny mix EPIC/hit100k-44@2x.png b/Skins/++scylla funny mix EPIC/hit100k-44@2x.png new file mode 100644 index 00000000..9b54bbb1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d84f2e2280687d9d07c485de4b09178e77a971f668a4931bc1cac25196cf46ee +size 2448 diff --git a/Skins/++scylla funny mix EPIC/hit100k-45.png b/Skins/++scylla funny mix EPIC/hit100k-45.png new file mode 100644 index 00000000..23cae60e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef37eb550e653afa585168a02396aec94bbb3e284502c6983b25f27f791e231 +size 890 diff --git a/Skins/++scylla funny mix EPIC/hit100k-45@2x.png b/Skins/++scylla funny mix EPIC/hit100k-45@2x.png new file mode 100644 index 00000000..e21a5e68 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349bf4d94eb7f28eb48642a2e26f09f941c863296a5ec8b105c867597693d183 +size 2420 diff --git a/Skins/++scylla funny mix EPIC/hit100k-46.png b/Skins/++scylla funny mix EPIC/hit100k-46.png new file mode 100644 index 00000000..b185dd87 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6087e3d78fc0b0ccdc3b7f05860a2839f049265ebed64b3ce8ba07f5a429f363 +size 835 diff --git a/Skins/++scylla funny mix EPIC/hit100k-46@2x.png b/Skins/++scylla funny mix EPIC/hit100k-46@2x.png new file mode 100644 index 00000000..0d0be75c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf3ecae571cc3662a58a514850a126961b9cf12339e2b79472b2d752f0d542cb +size 2248 diff --git a/Skins/++scylla funny mix EPIC/hit100k-47.png b/Skins/++scylla funny mix EPIC/hit100k-47.png new file mode 100644 index 00000000..c1fcaaad --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbe9efc32fe5019afbcbf1f49dcf4978f56767723a23fb3a742470240dfe565 +size 769 diff --git a/Skins/++scylla funny mix EPIC/hit100k-47@2x.png b/Skins/++scylla funny mix EPIC/hit100k-47@2x.png new file mode 100644 index 00000000..e2eb2d86 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb1643934f78813e5296195108af719e6f9080dccb81fa347d4585b88715e73 +size 2074 diff --git a/Skins/++scylla funny mix EPIC/hit100k-48.png b/Skins/++scylla funny mix EPIC/hit100k-48.png new file mode 100644 index 00000000..6de25d06 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8772ca5d645fd9887054af03ff31f87a0d8b2ab4c625ec5e0489301ec1330755 +size 724 diff --git a/Skins/++scylla funny mix EPIC/hit100k-48@2x.png b/Skins/++scylla funny mix EPIC/hit100k-48@2x.png new file mode 100644 index 00000000..940d0e74 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c08fc1284215d5f0d28d1d760d6733955195f9efb9350326d761f02b915258 +size 1966 diff --git a/Skins/++scylla funny mix EPIC/hit100k-49.png b/Skins/++scylla funny mix EPIC/hit100k-49.png new file mode 100644 index 00000000..2d65f1a2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f4253ad9f6b57f70c607caa02d0fa042335067b5041be0fafe9da496f7a990 +size 677 diff --git a/Skins/++scylla funny mix EPIC/hit100k-49@2x.png b/Skins/++scylla funny mix EPIC/hit100k-49@2x.png new file mode 100644 index 00000000..863a0954 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02cb1cf6f9ecf547d4e92a018139bc4f16950c5b26b0881ae5060c0624a2d11d +size 1771 diff --git a/Skins/++scylla funny mix EPIC/hit100k-4@2x.png b/Skins/++scylla funny mix EPIC/hit100k-4@2x.png new file mode 100644 index 00000000..f7a12e63 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c44df4be1fa772273e99bd528f9e6b2932ccd7ec2c9b7ffd210dd451eca46f +size 5470 diff --git a/Skins/++scylla funny mix EPIC/hit100k-5.png b/Skins/++scylla funny mix EPIC/hit100k-5.png new file mode 100644 index 00000000..e71c09cb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192a50853f9fa7254bab40be613f57e2e8f9c2f96087bad4cf0465a1da8b544d +size 2423 diff --git a/Skins/++scylla funny mix EPIC/hit100k-50.png b/Skins/++scylla funny mix EPIC/hit100k-50.png new file mode 100644 index 00000000..0cc86d65 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e18de77e8c811afdeebb0127a670553f4d4a1f22369a8113d66d041c528839ec +size 615 diff --git a/Skins/++scylla funny mix EPIC/hit100k-50@2x.png b/Skins/++scylla funny mix EPIC/hit100k-50@2x.png new file mode 100644 index 00000000..19d9a71a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150cab1f3c5d3d66013088989472d99ea6fe6d7dfa23984c3052260650714cf8 +size 1638 diff --git a/Skins/++scylla funny mix EPIC/hit100k-51.png b/Skins/++scylla funny mix EPIC/hit100k-51.png new file mode 100644 index 00000000..d7070944 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284361ce53c2394a200c608aa9bdc80aafd8fde0a161de510aa11058273cf046 +size 557 diff --git a/Skins/++scylla funny mix EPIC/hit100k-51@2x.png b/Skins/++scylla funny mix EPIC/hit100k-51@2x.png new file mode 100644 index 00000000..d1d1698c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-51@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf08cb4435375890f19ee6dc67a2074256478eaff12d700b2008c1f473c2be15 +size 1502 diff --git a/Skins/++scylla funny mix EPIC/hit100k-52.png b/Skins/++scylla funny mix EPIC/hit100k-52.png new file mode 100644 index 00000000..501db250 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf82cdd36f847f247fd4f50f6848f83d0eaae6cc5003323da95f1868cd952f71 +size 529 diff --git a/Skins/++scylla funny mix EPIC/hit100k-52@2x.png b/Skins/++scylla funny mix EPIC/hit100k-52@2x.png new file mode 100644 index 00000000..6f32d524 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-52@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9abaee7da20db0950147991ad967355a2d71c8b346e9f396728f1c71b04b1313 +size 1343 diff --git a/Skins/++scylla funny mix EPIC/hit100k-53.png b/Skins/++scylla funny mix EPIC/hit100k-53.png new file mode 100644 index 00000000..0e3ca2ff --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578de0e51b65b79ea95e0253f5180ddf7ad55de268e8e634bbccc77c145ca173 +size 483 diff --git a/Skins/++scylla funny mix EPIC/hit100k-53@2x.png b/Skins/++scylla funny mix EPIC/hit100k-53@2x.png new file mode 100644 index 00000000..a5f6ef7f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-53@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4511a7dfa5aa930a73cde7f364ab4a8a9bae97daa2d1453ede4d4f89fa9e12 +size 1243 diff --git a/Skins/++scylla funny mix EPIC/hit100k-54.png b/Skins/++scylla funny mix EPIC/hit100k-54.png new file mode 100644 index 00000000..e9cc4010 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e6e8bcd93624f77f5f9cc2f4130fdc0f4d0f9356c70c32e5cf082392c4e962 +size 443 diff --git a/Skins/++scylla funny mix EPIC/hit100k-54@2x.png b/Skins/++scylla funny mix EPIC/hit100k-54@2x.png new file mode 100644 index 00000000..2403d7bf --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-54@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3757ce4d1736336e574c74adcc06833af271582ec7e549b47e35cde471e639ea +size 1085 diff --git a/Skins/++scylla funny mix EPIC/hit100k-55.png b/Skins/++scylla funny mix EPIC/hit100k-55.png new file mode 100644 index 00000000..0096812d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533039867e10768f52afb0dbf2a47ebe48acca0b89126f3522d54421678b0713 +size 396 diff --git a/Skins/++scylla funny mix EPIC/hit100k-55@2x.png b/Skins/++scylla funny mix EPIC/hit100k-55@2x.png new file mode 100644 index 00000000..01fa16f9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-55@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c1df6e42c6bb21e7838dee6935d95178a6dca946d1c7e6f0648ff6bdae00b5e +size 945 diff --git a/Skins/++scylla funny mix EPIC/hit100k-56.png b/Skins/++scylla funny mix EPIC/hit100k-56.png new file mode 100644 index 00000000..e50dc8df --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57490c26d83e12f9df19e813b474a7a7341e35b0e8145bac3278d2e636adbed +size 337 diff --git a/Skins/++scylla funny mix EPIC/hit100k-56@2x.png b/Skins/++scylla funny mix EPIC/hit100k-56@2x.png new file mode 100644 index 00000000..347b5939 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-56@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc5746df647e3cd56191d41dbf6379bbdb16d5716e4daff4d15bd687a1e6862 +size 800 diff --git a/Skins/++scylla funny mix EPIC/hit100k-57.png b/Skins/++scylla funny mix EPIC/hit100k-57.png new file mode 100644 index 00000000..97573750 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5818bb4048168b65241d1d6504f5faa48887e73050f0f058c47fc08e765172b7 +size 295 diff --git a/Skins/++scylla funny mix EPIC/hit100k-57@2x.png b/Skins/++scylla funny mix EPIC/hit100k-57@2x.png new file mode 100644 index 00000000..4dd6af18 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-57@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9a6b92ca4779e4a69882aa6b636b1dc62a98b14e62440a89d8df045e9e2bee +size 696 diff --git a/Skins/++scylla funny mix EPIC/hit100k-58.png b/Skins/++scylla funny mix EPIC/hit100k-58.png new file mode 100644 index 00000000..8f4d6a29 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c51db65bbf0e6a402bda635221d08c7a8eefc6eb77e2b4d28a46afa6316e109 +size 261 diff --git a/Skins/++scylla funny mix EPIC/hit100k-58@2x.png b/Skins/++scylla funny mix EPIC/hit100k-58@2x.png new file mode 100644 index 00000000..84aa2349 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-58@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cefb310c5f97a451ced237e0d1fb5985bce26a1048ad642b3c4f1f7ae719de05 +size 586 diff --git a/Skins/++scylla funny mix EPIC/hit100k-59.png b/Skins/++scylla funny mix EPIC/hit100k-59.png new file mode 100644 index 00000000..d2b431b2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd54c1105ecff1e68155a059f4e47eb35a2eec9e4718856b864e6811b627d2e7 +size 228 diff --git a/Skins/++scylla funny mix EPIC/hit100k-59@2x.png b/Skins/++scylla funny mix EPIC/hit100k-59@2x.png new file mode 100644 index 00000000..ce762939 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-59@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bbab9b60f582543e7500a5c4515af638fb55dfae0b5098a944c4463ed1b92e5 +size 525 diff --git a/Skins/++scylla funny mix EPIC/hit100k-5@2x.png b/Skins/++scylla funny mix EPIC/hit100k-5@2x.png new file mode 100644 index 00000000..3b46f961 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2c672d2bfcd0a741aa9977dd27c8f93c7451d625084d5da573a18759c2b608 +size 5310 diff --git a/Skins/++scylla funny mix EPIC/hit100k-6.png b/Skins/++scylla funny mix EPIC/hit100k-6.png new file mode 100644 index 00000000..970c1d54 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2c1bb031a6b02b2f087c21f712be59af87bf9731a63de2579574873eec8016 +size 2417 diff --git a/Skins/++scylla funny mix EPIC/hit100k-6@2x.png b/Skins/++scylla funny mix EPIC/hit100k-6@2x.png new file mode 100644 index 00000000..a7413438 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef90f15c87ea96396ad4d12b16ef380efd0069b6200f71a6484930027a032947 +size 5296 diff --git a/Skins/++scylla funny mix EPIC/hit100k-7.png b/Skins/++scylla funny mix EPIC/hit100k-7.png new file mode 100644 index 00000000..ca4c371f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79262d39796ef96f8a35202330ba7ad14847f29766fc7cd183dfc64d2f19d2dd +size 2305 diff --git a/Skins/++scylla funny mix EPIC/hit100k-7@2x.png b/Skins/++scylla funny mix EPIC/hit100k-7@2x.png new file mode 100644 index 00000000..ed42210b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8362e9adf3a4dab70a4580bddb307ea4ffd33d2d14717ab0b96d9dfe1a655035 +size 5073 diff --git a/Skins/++scylla funny mix EPIC/hit100k-8.png b/Skins/++scylla funny mix EPIC/hit100k-8.png new file mode 100644 index 00000000..e2b7f3aa --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710f0c7e71427e93c9332679502a704e6f3c689303ffe3571c1da10885eb23f8 +size 2067 diff --git a/Skins/++scylla funny mix EPIC/hit100k-8@2x.png b/Skins/++scylla funny mix EPIC/hit100k-8@2x.png new file mode 100644 index 00000000..cca91145 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b653e80362ee102d09142a7728ecda6d51e2079e010bfe6e64a29b3bf61b3d6c +size 4285 diff --git a/Skins/++scylla funny mix EPIC/hit100k-9.png b/Skins/++scylla funny mix EPIC/hit100k-9.png new file mode 100644 index 00000000..4b3d9c97 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2ccd65e63a7f43470bc4e4b5999551980a6cade8dcc901c76a0b15d9135e2a +size 2222 diff --git a/Skins/++scylla funny mix EPIC/hit100k-9@2x.png b/Skins/++scylla funny mix EPIC/hit100k-9@2x.png new file mode 100644 index 00000000..298178b8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687386d9a1d8cd49fa6b22c531f471558bdc1dafd968efc4147b3fa350e027f3 +size 4580 diff --git a/Skins/++scylla funny mix EPIC/hit100k.png b/Skins/++scylla funny mix EPIC/hit100k.png new file mode 100644 index 00000000..9148b8e9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694db35a76a47cd609f5bfb9c73798320da74ebb19ca01da5895edc3a38e6fcf +size 22967 diff --git a/Skins/++scylla funny mix EPIC/hit100k@2x.png b/Skins/++scylla funny mix EPIC/hit100k@2x.png new file mode 100644 index 00000000..79bcccb6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4174fa339467f076dbaad9e8521345a5c9d2507adf803f60a6ea618a1852076 +size 23870 diff --git a/Skins/++scylla funny mix EPIC/hit300-0.png b/Skins/++scylla funny mix EPIC/hit300-0.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/hit300-1.png b/Skins/++scylla funny mix EPIC/hit300-1.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/hit300.png b/Skins/++scylla funny mix EPIC/hit300.png new file mode 100644 index 00000000..253721bf --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9248cddd6d0aff3588d968fe4df2752f89076070ac829a65171fedffcaed158e +size 27266 diff --git a/Skins/++scylla funny mix EPIC/hit300@2x.png b/Skins/++scylla funny mix EPIC/hit300@2x.png new file mode 100644 index 00000000..8e1805f5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63bc4731a93a3dfc4709e2810a7e04830805ad23427aee6b95c56226f59d4e17 +size 30030 diff --git a/Skins/++scylla funny mix EPIC/hit300g-0.png b/Skins/++scylla funny mix EPIC/hit300g-0.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/hit300g-1.png b/Skins/++scylla funny mix EPIC/hit300g-1.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/hit300g.png b/Skins/++scylla funny mix EPIC/hit300g.png new file mode 100644 index 00000000..b40c66b8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cca65a35cc408b1f5ed9267288086f5cb1f7a358f54d1da58d03354e580e5e87 +size 25396 diff --git a/Skins/++scylla funny mix EPIC/hit300g@2x.png b/Skins/++scylla funny mix EPIC/hit300g@2x.png new file mode 100644 index 00000000..08d15bdd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad5215905b91ce76288784b7ac437943aef0801e7c6f59b06f1114d59532afef +size 26719 diff --git a/Skins/++scylla funny mix EPIC/hit300k-0.png b/Skins/++scylla funny mix EPIC/hit300k-0.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/hit300k-1.png b/Skins/++scylla funny mix EPIC/hit300k-1.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/hit50-0.png b/Skins/++scylla funny mix EPIC/hit50-0.png new file mode 100644 index 00000000..70bb55ec --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b5f63f4157fb2ceb9a7201f595e0498c93e9e7988d8cd3aa4a96cab6c9fe5 +size 162 diff --git a/Skins/++scylla funny mix EPIC/hit50-0@2x.png b/Skins/++scylla funny mix EPIC/hit50-0@2x.png new file mode 100644 index 00000000..ce5b63df --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efb3eb62b6a7d4d45832d5189c9f2dcded649c9a79dad8004e20c4f8b3d491b +size 205 diff --git a/Skins/++scylla funny mix EPIC/hit50-1.png b/Skins/++scylla funny mix EPIC/hit50-1.png new file mode 100644 index 00000000..0ea68fc9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:390587bfa2df25b3710e4e34f5c52ed195fcad8e08696d54648cef298eeac24b +size 2367 diff --git a/Skins/++scylla funny mix EPIC/hit50-10.png b/Skins/++scylla funny mix EPIC/hit50-10.png new file mode 100644 index 00000000..b5f87ab6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f14e35100b6035fc064969866a2fe2f71c8a00f626bf2165270dce1f526cb04 +size 2705 diff --git a/Skins/++scylla funny mix EPIC/hit50-10@2x.png b/Skins/++scylla funny mix EPIC/hit50-10@2x.png new file mode 100644 index 00000000..bc55329b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b91ca4950464f1d106a2c6c271c962ba19e887d6a3c66f2401e84d79ebeaafd +size 6217 diff --git a/Skins/++scylla funny mix EPIC/hit50-11.png b/Skins/++scylla funny mix EPIC/hit50-11.png new file mode 100644 index 00000000..e6a356ba --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961fd321ad80fe04f7dd51d1f83a09ac642c9348cf124a9c73e557125e073f3c +size 2701 diff --git a/Skins/++scylla funny mix EPIC/hit50-11@2x.png b/Skins/++scylla funny mix EPIC/hit50-11@2x.png new file mode 100644 index 00000000..0eb4960a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42f02c4cbb1508d7d329003ca395f9312666e1a839575fc2e9698e0808d357f +size 6079 diff --git a/Skins/++scylla funny mix EPIC/hit50-12.png b/Skins/++scylla funny mix EPIC/hit50-12.png new file mode 100644 index 00000000..25b49e9d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4537627cc7dbf97943f242d020675e91e9f414426729bb6dfc89c1c32a908fda +size 2674 diff --git a/Skins/++scylla funny mix EPIC/hit50-12@2x.png b/Skins/++scylla funny mix EPIC/hit50-12@2x.png new file mode 100644 index 00000000..31f6978b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b69c74da8e009c0b94df479639b1d14bd597af22e02424fe072c1fadae98a77 +size 6054 diff --git a/Skins/++scylla funny mix EPIC/hit50-13.png b/Skins/++scylla funny mix EPIC/hit50-13.png new file mode 100644 index 00000000..2371b92b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71501e3669041fb936e4cf121e905fecec6878d8dfd90406985e2f82976fd40e +size 2645 diff --git a/Skins/++scylla funny mix EPIC/hit50-13@2x.png b/Skins/++scylla funny mix EPIC/hit50-13@2x.png new file mode 100644 index 00000000..66606300 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59c3fb818fb3761ddcd9476cc21cd6f70fa305fc2e5f899aae2c834ae6d6667 +size 5985 diff --git a/Skins/++scylla funny mix EPIC/hit50-14.png b/Skins/++scylla funny mix EPIC/hit50-14.png new file mode 100644 index 00000000..3811ddd3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaac2320d2603a302e55899bd7f67bf64d861c4e005740bb40b7a4b8b5ea6e3a +size 2620 diff --git a/Skins/++scylla funny mix EPIC/hit50-14@2x.png b/Skins/++scylla funny mix EPIC/hit50-14@2x.png new file mode 100644 index 00000000..6dfc23d9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc34fdfeb4730ab6720751a94fa609b1a1a060be55ef24411bd41c30853ea41 +size 5855 diff --git a/Skins/++scylla funny mix EPIC/hit50-15.png b/Skins/++scylla funny mix EPIC/hit50-15.png new file mode 100644 index 00000000..bde48ba7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecaa51cf73144ed23fc11c5297f8ed2650307caff173b3ab9ee46dadd13a8171 +size 2566 diff --git a/Skins/++scylla funny mix EPIC/hit50-15@2x.png b/Skins/++scylla funny mix EPIC/hit50-15@2x.png new file mode 100644 index 00000000..3ff5b423 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fcea923e62c34df274def53e41bd39884cd8669ebd5da5c69eaf61dcf465ac +size 5891 diff --git a/Skins/++scylla funny mix EPIC/hit50-16.png b/Skins/++scylla funny mix EPIC/hit50-16.png new file mode 100644 index 00000000..c19d36c4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c330f656cebd089b022070a18bdcf1d48ecb807ecc503ed9441f42cd7b2befa +size 2575 diff --git a/Skins/++scylla funny mix EPIC/hit50-16@2x.png b/Skins/++scylla funny mix EPIC/hit50-16@2x.png new file mode 100644 index 00000000..12e76725 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d39d990a621eed7f2bb1af6260d5ed314c1eb3c3b5036b4b27f5718fa0f0fc +size 5851 diff --git a/Skins/++scylla funny mix EPIC/hit50-17.png b/Skins/++scylla funny mix EPIC/hit50-17.png new file mode 100644 index 00000000..8a8f176d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbabfb99a374ad9dcc285b9b5c99a767892a475d8d4128bf29ade4d95eabc7e +size 2581 diff --git a/Skins/++scylla funny mix EPIC/hit50-17@2x.png b/Skins/++scylla funny mix EPIC/hit50-17@2x.png new file mode 100644 index 00000000..f250d758 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611a2a20ef1b2f4a1bd4f80f52cc915acad0baaab6c917285af15c89a42055a7 +size 5852 diff --git a/Skins/++scylla funny mix EPIC/hit50-18.png b/Skins/++scylla funny mix EPIC/hit50-18.png new file mode 100644 index 00000000..1c9c1186 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376b794b94e0a15a485d489d197ade153251e65c403efaaa7252a033206d4f66 +size 2529 diff --git a/Skins/++scylla funny mix EPIC/hit50-18@2x.png b/Skins/++scylla funny mix EPIC/hit50-18@2x.png new file mode 100644 index 00000000..70b58ec6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66939f47bfca534d4c3b3fa0788056070dd10b7e34b541364bb8ae83cfcb179a +size 5790 diff --git a/Skins/++scylla funny mix EPIC/hit50-19.png b/Skins/++scylla funny mix EPIC/hit50-19.png new file mode 100644 index 00000000..83de4161 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88dc8b49ade9bfda1e59a144aaee19e1b1d5a0be0c2ac33eeb6879c812dc0cdf +size 2486 diff --git a/Skins/++scylla funny mix EPIC/hit50-19@2x.png b/Skins/++scylla funny mix EPIC/hit50-19@2x.png new file mode 100644 index 00000000..28d65cdd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c15eb88de2f87485259af630e21ddc48e2efab87386d7ece098f8d8802b5ed2 +size 5741 diff --git a/Skins/++scylla funny mix EPIC/hit50-1@2x.png b/Skins/++scylla funny mix EPIC/hit50-1@2x.png new file mode 100644 index 00000000..782adaad --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80aee5a872fd0ecc134f79f61e65c7623e4f507a0956725f93e8af9f4cae22bb +size 5372 diff --git a/Skins/++scylla funny mix EPIC/hit50-2.png b/Skins/++scylla funny mix EPIC/hit50-2.png new file mode 100644 index 00000000..7d782beb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbf674e6d522b4df9adcdaf16eafa01b2e7ba5c08ca518906c35028626cc3b5c +size 2491 diff --git a/Skins/++scylla funny mix EPIC/hit50-20.png b/Skins/++scylla funny mix EPIC/hit50-20.png new file mode 100644 index 00000000..975c29cf --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a89957370fe16389e057c46d66db074a85493b9a75c6da43d91ffb8849bac9 +size 2446 diff --git a/Skins/++scylla funny mix EPIC/hit50-20@2x.png b/Skins/++scylla funny mix EPIC/hit50-20@2x.png new file mode 100644 index 00000000..51ec154e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d056e21c2e2844abeb8914d646d92da9c7638e101a804ce95b06d3473a0d0e +size 5591 diff --git a/Skins/++scylla funny mix EPIC/hit50-21.png b/Skins/++scylla funny mix EPIC/hit50-21.png new file mode 100644 index 00000000..a7b120e8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3668c479a27fcfaee92d208d421b3e75425be62bac5ecf1645c2f25d58733ab1 +size 2491 diff --git a/Skins/++scylla funny mix EPIC/hit50-21@2x.png b/Skins/++scylla funny mix EPIC/hit50-21@2x.png new file mode 100644 index 00000000..aed4c559 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:950081e46daee0e2b2f14fa1e993372060e0520b75ac7cd48b5ad89541eb40fc +size 5520 diff --git a/Skins/++scylla funny mix EPIC/hit50-22.png b/Skins/++scylla funny mix EPIC/hit50-22.png new file mode 100644 index 00000000..72987f28 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bedf3759d58cf66c5a0cc334e582c2cd9e32e2ed69640a105f286336307466 +size 2443 diff --git a/Skins/++scylla funny mix EPIC/hit50-22@2x.png b/Skins/++scylla funny mix EPIC/hit50-22@2x.png new file mode 100644 index 00000000..2f059750 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283ef5e238071b76503b2b63994d3bb708a2b305e2f41cac9b15177bb06e71f8 +size 5537 diff --git a/Skins/++scylla funny mix EPIC/hit50-23.png b/Skins/++scylla funny mix EPIC/hit50-23.png new file mode 100644 index 00000000..30b76f52 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:223b3ee2676bb0bd33542e0e7fc0bd531ac566984247f686b1fe125121ca324d +size 2378 diff --git a/Skins/++scylla funny mix EPIC/hit50-23@2x.png b/Skins/++scylla funny mix EPIC/hit50-23@2x.png new file mode 100644 index 00000000..95a967e6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9445b9fc1253bb9dbd6a684bd1a8bcfefc2ab5a1f722c570d5c832a9669c69be +size 5435 diff --git a/Skins/++scylla funny mix EPIC/hit50-24.png b/Skins/++scylla funny mix EPIC/hit50-24.png new file mode 100644 index 00000000..6e9a275f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6105367849498a3a3e8ea2efbb180c96616d1e5f4d972b28763b4f6d303fbb59 +size 2416 diff --git a/Skins/++scylla funny mix EPIC/hit50-24@2x.png b/Skins/++scylla funny mix EPIC/hit50-24@2x.png new file mode 100644 index 00000000..9ebf1284 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6f23f5da21394a5d7ac6fe7a9ccaea2bd4e6fa7f1b0b9ae335fd3ddb9e9788 +size 5490 diff --git a/Skins/++scylla funny mix EPIC/hit50-25.png b/Skins/++scylla funny mix EPIC/hit50-25.png new file mode 100644 index 00000000..1852dbe6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c71038bac382dd41bfa60eb2a9c011416997ca859c381912c8cde2e767efe290 +size 2310 diff --git a/Skins/++scylla funny mix EPIC/hit50-25@2x.png b/Skins/++scylla funny mix EPIC/hit50-25@2x.png new file mode 100644 index 00000000..fa8964ee --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22521b2d35fc0096ceb1ea205a0ace66994e5e333b28828d92d05d9ddba32e92 +size 5287 diff --git a/Skins/++scylla funny mix EPIC/hit50-26.png b/Skins/++scylla funny mix EPIC/hit50-26.png new file mode 100644 index 00000000..bbdcad87 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75aaacf2607854866b128364d86b414dbc73469362815928811cea3312d32c34 +size 2274 diff --git a/Skins/++scylla funny mix EPIC/hit50-26@2x.png b/Skins/++scylla funny mix EPIC/hit50-26@2x.png new file mode 100644 index 00000000..461116d5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e68538b0d71444a31ddf481ec8d4213ed1c15de83aaf91d0f0bc514813f36360 +size 5211 diff --git a/Skins/++scylla funny mix EPIC/hit50-27.png b/Skins/++scylla funny mix EPIC/hit50-27.png new file mode 100644 index 00000000..81046453 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bbaeed691ccc44523b69b8a3a441e456edb53879693a2aaaf362cdb336b4be8 +size 2216 diff --git a/Skins/++scylla funny mix EPIC/hit50-27@2x.png b/Skins/++scylla funny mix EPIC/hit50-27@2x.png new file mode 100644 index 00000000..8dfbbf9e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f48f5eb42b2d80307b6b623d566ada44c03925f7b90da81ba950459f442b94 +size 4942 diff --git a/Skins/++scylla funny mix EPIC/hit50-28.png b/Skins/++scylla funny mix EPIC/hit50-28.png new file mode 100644 index 00000000..2ed1de4b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b1a705a96ef1d1cdd74fe71ff0ba534833baee21d417336c2cd80c7d5f06024 +size 2115 diff --git a/Skins/++scylla funny mix EPIC/hit50-28@2x.png b/Skins/++scylla funny mix EPIC/hit50-28@2x.png new file mode 100644 index 00000000..f45970c5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02cd133311d92c741916efcf8dd35434473c1fd7257bc8fb4cad6d4614a76641 +size 4802 diff --git a/Skins/++scylla funny mix EPIC/hit50-29.png b/Skins/++scylla funny mix EPIC/hit50-29.png new file mode 100644 index 00000000..3c8fe3e4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8632559f3872dab4e0f37f014737c320c275f1cf46c428f12223e94ac496e75f +size 2020 diff --git a/Skins/++scylla funny mix EPIC/hit50-29@2x.png b/Skins/++scylla funny mix EPIC/hit50-29@2x.png new file mode 100644 index 00000000..0075ccf2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284ee687604929cb40eca5e9dc304b3236603169359e19d570c32ff53282bb35 +size 4641 diff --git a/Skins/++scylla funny mix EPIC/hit50-2@2x.png b/Skins/++scylla funny mix EPIC/hit50-2@2x.png new file mode 100644 index 00000000..a084316c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb2a8fe5f6d18a64ffa9a13ac33445f0810d9d2442add454cac37ae3e9ad752 +size 5578 diff --git a/Skins/++scylla funny mix EPIC/hit50-3.png b/Skins/++scylla funny mix EPIC/hit50-3.png new file mode 100644 index 00000000..a4c1bf9e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc79649ecc828d2c9d2fde3bca5b04596e9701c46be5a6879d884fa8f038406 +size 2577 diff --git a/Skins/++scylla funny mix EPIC/hit50-30.png b/Skins/++scylla funny mix EPIC/hit50-30.png new file mode 100644 index 00000000..a53835f3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11d635c264e0487fe02559b01163db6fd63d670ec7aecc17c3afbbc05af923d6 +size 1975 diff --git a/Skins/++scylla funny mix EPIC/hit50-30@2x.png b/Skins/++scylla funny mix EPIC/hit50-30@2x.png new file mode 100644 index 00000000..7e4344e6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369a2ec90c2e442e0b3cf9750dbd5391adaaa07f8c5c85bb9c15a2029aa8ae4d +size 4397 diff --git a/Skins/++scylla funny mix EPIC/hit50-31.png b/Skins/++scylla funny mix EPIC/hit50-31.png new file mode 100644 index 00000000..7d04fc71 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5b615f4a2d05f8ac4fe08947cda022c9d26c6a7296ffd6f3b150a3c328aa71 +size 1889 diff --git a/Skins/++scylla funny mix EPIC/hit50-31@2x.png b/Skins/++scylla funny mix EPIC/hit50-31@2x.png new file mode 100644 index 00000000..2f6e9fd8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8cd830742988a52da7998368a3d69cf8f3d32f0ff4a2132a144a4adc6d7634 +size 4293 diff --git a/Skins/++scylla funny mix EPIC/hit50-32.png b/Skins/++scylla funny mix EPIC/hit50-32.png new file mode 100644 index 00000000..54cadccf --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:760196866e3531840d9f8334a71e7149eab3f61c947ab32b51612ac3ffa95b63 +size 1841 diff --git a/Skins/++scylla funny mix EPIC/hit50-32@2x.png b/Skins/++scylla funny mix EPIC/hit50-32@2x.png new file mode 100644 index 00000000..3b90c996 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676684cb034a1f1d72eae3bdf1b07976aad35f0e997e13813a7ae7f50abdcb69 +size 4186 diff --git a/Skins/++scylla funny mix EPIC/hit50-33.png b/Skins/++scylla funny mix EPIC/hit50-33.png new file mode 100644 index 00000000..3bf246ca --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593291488021a22ad8ca2be7cdeaf76052f49dd9b8370346dbe26c8c5b58920c +size 1753 diff --git a/Skins/++scylla funny mix EPIC/hit50-33@2x.png b/Skins/++scylla funny mix EPIC/hit50-33@2x.png new file mode 100644 index 00000000..1a0de46c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3ca84fc335baeb4c8ddcc7b8f9ec26e85753edd1d9d58f0a2cfe65f588dc8d +size 4055 diff --git a/Skins/++scylla funny mix EPIC/hit50-34.png b/Skins/++scylla funny mix EPIC/hit50-34.png new file mode 100644 index 00000000..78676082 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ac06202d32bff430ca271dca23be470823d13bd26974f4977324e2d5fb09c6 +size 1673 diff --git a/Skins/++scylla funny mix EPIC/hit50-34@2x.png b/Skins/++scylla funny mix EPIC/hit50-34@2x.png new file mode 100644 index 00000000..f6045366 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95ab5d34808591a6d2e0fc8a9a382e87b25662278eacd0edf9232987ced08ae9 +size 3921 diff --git a/Skins/++scylla funny mix EPIC/hit50-35.png b/Skins/++scylla funny mix EPIC/hit50-35.png new file mode 100644 index 00000000..c5429e2a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:739faa3c86e90732dadfb7aada02c8869ffa98cffb57381332a129e2750c24e8 +size 1611 diff --git a/Skins/++scylla funny mix EPIC/hit50-35@2x.png b/Skins/++scylla funny mix EPIC/hit50-35@2x.png new file mode 100644 index 00000000..b7da7a31 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1926b494b2a01313e8cf7be4bf8cfa6ad8d1e96acd8ca5e22736a34dff6be5f1 +size 3657 diff --git a/Skins/++scylla funny mix EPIC/hit50-36.png b/Skins/++scylla funny mix EPIC/hit50-36.png new file mode 100644 index 00000000..ca644ac0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e66bcb359b5bfeb9295fa90a119ed93b50314df8160f1de7a0e38ff3ba4b046 +size 1532 diff --git a/Skins/++scylla funny mix EPIC/hit50-36@2x.png b/Skins/++scylla funny mix EPIC/hit50-36@2x.png new file mode 100644 index 00000000..75e1f9bd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f763e6b1463b348e6258b321656bdacd22ac06334b018113058305eb1253f471 +size 3549 diff --git a/Skins/++scylla funny mix EPIC/hit50-37.png b/Skins/++scylla funny mix EPIC/hit50-37.png new file mode 100644 index 00000000..22bb537d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd7ff08a616678fb887e9debec06d8dad0243e1c64b5db2c58f793ec61fda41 +size 1469 diff --git a/Skins/++scylla funny mix EPIC/hit50-37@2x.png b/Skins/++scylla funny mix EPIC/hit50-37@2x.png new file mode 100644 index 00000000..fe2f659f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5045fb6bb8ba529ff1a0e593bd14c975747c348c7c238888e9c5eb3bde00cbe4 +size 3366 diff --git a/Skins/++scylla funny mix EPIC/hit50-38.png b/Skins/++scylla funny mix EPIC/hit50-38.png new file mode 100644 index 00000000..911aac70 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58275c675b4cadc590cde0ebf5315889e0155e39c35cb4928e2e5c02ae8e8c1f +size 1383 diff --git a/Skins/++scylla funny mix EPIC/hit50-38@2x.png b/Skins/++scylla funny mix EPIC/hit50-38@2x.png new file mode 100644 index 00000000..8c6bd554 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c16ea22505cc123eb6487719aec52433c9a222f4620d239647005e1526599eab +size 3270 diff --git a/Skins/++scylla funny mix EPIC/hit50-39.png b/Skins/++scylla funny mix EPIC/hit50-39.png new file mode 100644 index 00000000..2a03bf8c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df70e8c4dae8f3d99892874bd1dd3d3907bf51254ff99798d709ca23482a3b3 +size 1286 diff --git a/Skins/++scylla funny mix EPIC/hit50-39@2x.png b/Skins/++scylla funny mix EPIC/hit50-39@2x.png new file mode 100644 index 00000000..2851f270 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e80a9afd5712481e2424e6de3860ee9e5fa96ae47e3f1120c7b3bd332124ce8 +size 3061 diff --git a/Skins/++scylla funny mix EPIC/hit50-3@2x.png b/Skins/++scylla funny mix EPIC/hit50-3@2x.png new file mode 100644 index 00000000..880e0e97 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23822edf645e7a0540feebcbbf8aa8e4529a1db98b7358146966ddbc5e4b8d2 +size 5813 diff --git a/Skins/++scylla funny mix EPIC/hit50-4.png b/Skins/++scylla funny mix EPIC/hit50-4.png new file mode 100644 index 00000000..dd5ce567 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce52dd27045a4219e0372ddec768a3193e190dc4a9345483216392994f450c2 +size 2654 diff --git a/Skins/++scylla funny mix EPIC/hit50-40.png b/Skins/++scylla funny mix EPIC/hit50-40.png new file mode 100644 index 00000000..a27dd0be --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b42eb68d87f025e13a44e10bf14c93f71400289ab586e5afde4679934580053 +size 1257 diff --git a/Skins/++scylla funny mix EPIC/hit50-40@2x.png b/Skins/++scylla funny mix EPIC/hit50-40@2x.png new file mode 100644 index 00000000..608d5a04 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66465d33050305585c1428d9faba5d92bb8939ed3a24429a2e7fee0307596590 +size 2962 diff --git a/Skins/++scylla funny mix EPIC/hit50-41.png b/Skins/++scylla funny mix EPIC/hit50-41.png new file mode 100644 index 00000000..a2da835e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334f05e49b9180fc6ad61562f2154396fe7554a8a99b3f6c26e1903e61ab6946 +size 1151 diff --git a/Skins/++scylla funny mix EPIC/hit50-41@2x.png b/Skins/++scylla funny mix EPIC/hit50-41@2x.png new file mode 100644 index 00000000..e43ded62 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2271ffd1139d42b862804d696245d524a43c943665aa77ed154ab1fa65923cc8 +size 2778 diff --git a/Skins/++scylla funny mix EPIC/hit50-42.png b/Skins/++scylla funny mix EPIC/hit50-42.png new file mode 100644 index 00000000..2aa1d2b4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5121bd5098bfe6f944d6c28070f9c7cb1efca61dd7946cc5f01211c91e32d38 +size 1081 diff --git a/Skins/++scylla funny mix EPIC/hit50-42@2x.png b/Skins/++scylla funny mix EPIC/hit50-42@2x.png new file mode 100644 index 00000000..3e811ecf --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9a8ae2a8bcb6d17817e13b4326847d8ebf7eea5b2c733e95f784c38817f5a3 +size 2582 diff --git a/Skins/++scylla funny mix EPIC/hit50-43.png b/Skins/++scylla funny mix EPIC/hit50-43.png new file mode 100644 index 00000000..7e8f25f7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca9a50d7f8a2030fff50bba5349025b37b76e5694fc8017da09683721dd37f4 +size 1067 diff --git a/Skins/++scylla funny mix EPIC/hit50-43@2x.png b/Skins/++scylla funny mix EPIC/hit50-43@2x.png new file mode 100644 index 00000000..e9cc0780 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:826348bc25f93f7645414f5ea94e93b1c91064b1742d11241299b7f468659126 +size 2515 diff --git a/Skins/++scylla funny mix EPIC/hit50-44.png b/Skins/++scylla funny mix EPIC/hit50-44.png new file mode 100644 index 00000000..bba9030a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62434abe5101c847719a573efc0ba8dfd282fd6c9e67250a060f24153ca98cf +size 1002 diff --git a/Skins/++scylla funny mix EPIC/hit50-44@2x.png b/Skins/++scylla funny mix EPIC/hit50-44@2x.png new file mode 100644 index 00000000..33a7d66c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525b2adcc95e40c1bd18c45a7e6df0ad3d52b165a26c83cbf400d6efe10058b6 +size 2368 diff --git a/Skins/++scylla funny mix EPIC/hit50-45.png b/Skins/++scylla funny mix EPIC/hit50-45.png new file mode 100644 index 00000000..8a2f65d6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f05b7e4a0e1f67e06b6daff834c60a5f749b6fe11b94d0c22d62991eddce55 +size 924 diff --git a/Skins/++scylla funny mix EPIC/hit50-45@2x.png b/Skins/++scylla funny mix EPIC/hit50-45@2x.png new file mode 100644 index 00000000..356b7387 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f02925d5d07c11845448413c6aeff78da3c88af3a7061ae142f4ada89980e2a5 +size 2274 diff --git a/Skins/++scylla funny mix EPIC/hit50-46.png b/Skins/++scylla funny mix EPIC/hit50-46.png new file mode 100644 index 00000000..64422d60 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b5fdb4a4d883405e76aab6a1c5b525e583e6ec8884268d0dc68a82a62633f2 +size 875 diff --git a/Skins/++scylla funny mix EPIC/hit50-46@2x.png b/Skins/++scylla funny mix EPIC/hit50-46@2x.png new file mode 100644 index 00000000..32dc455b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0642019e4d80ed6aade9ecb2f607c7cc8dd58116366e12ae0506554c310371 +size 2111 diff --git a/Skins/++scylla funny mix EPIC/hit50-47.png b/Skins/++scylla funny mix EPIC/hit50-47.png new file mode 100644 index 00000000..ab404371 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4d7cbc97dd94a875d96b2644baedb01aca6e8ab6875ba78bb802e2a543f3fa +size 821 diff --git a/Skins/++scylla funny mix EPIC/hit50-47@2x.png b/Skins/++scylla funny mix EPIC/hit50-47@2x.png new file mode 100644 index 00000000..4c440246 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a55eb1d6b0ca6b9f9a54b326bae5244e0d38a1727488e8e33bd36842f4d50a6 +size 2022 diff --git a/Skins/++scylla funny mix EPIC/hit50-48.png b/Skins/++scylla funny mix EPIC/hit50-48.png new file mode 100644 index 00000000..2e78000f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214bebc6d81402b239951511d6626f0f0ce1b426e21b624b855aca04debdfad8 +size 753 diff --git a/Skins/++scylla funny mix EPIC/hit50-48@2x.png b/Skins/++scylla funny mix EPIC/hit50-48@2x.png new file mode 100644 index 00000000..79caa58f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2727f501b370b4783d9517ebcaa0cc219a56b3d411f9c2b46accdd84a22edd0e +size 1920 diff --git a/Skins/++scylla funny mix EPIC/hit50-49.png b/Skins/++scylla funny mix EPIC/hit50-49.png new file mode 100644 index 00000000..fffc904f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b08d36a6eafaaee613bc177154e26ce0873b5d7f8aea9fa76cb0bba3f150e40 +size 706 diff --git a/Skins/++scylla funny mix EPIC/hit50-49@2x.png b/Skins/++scylla funny mix EPIC/hit50-49@2x.png new file mode 100644 index 00000000..4a8eb8ac --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7c020a4b587fec4d904d3ff95658e06afe4fa1933b2a39cd265d3cea182480 +size 1766 diff --git a/Skins/++scylla funny mix EPIC/hit50-4@2x.png b/Skins/++scylla funny mix EPIC/hit50-4@2x.png new file mode 100644 index 00000000..1c52068f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1784a379374d14123ce98a56c81188326a3ec9dff506f546eaff98f3bc864b3 +size 5889 diff --git a/Skins/++scylla funny mix EPIC/hit50-5.png b/Skins/++scylla funny mix EPIC/hit50-5.png new file mode 100644 index 00000000..a2e0ed05 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e452ac36ef4bd16136d60e50b6a372c949867a9bc53211945c3af6760f8e748 +size 2660 diff --git a/Skins/++scylla funny mix EPIC/hit50-50.png b/Skins/++scylla funny mix EPIC/hit50-50.png new file mode 100644 index 00000000..0daaadf5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6879c05814e7b6216a748dfe9deb55baa17540b3514f43454df379a78178aa2 +size 627 diff --git a/Skins/++scylla funny mix EPIC/hit50-50@2x.png b/Skins/++scylla funny mix EPIC/hit50-50@2x.png new file mode 100644 index 00000000..1e529d7a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b836f905000a523443cf9abef4e7ece32263fe41695da9ac4a1e49da1c29f5d +size 1634 diff --git a/Skins/++scylla funny mix EPIC/hit50-51.png b/Skins/++scylla funny mix EPIC/hit50-51.png new file mode 100644 index 00000000..4306b0fc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f3eadbeef5a336681bac558c6379b82bde426ff51201c230932d7624245ae23 +size 600 diff --git a/Skins/++scylla funny mix EPIC/hit50-51@2x.png b/Skins/++scylla funny mix EPIC/hit50-51@2x.png new file mode 100644 index 00000000..f7fa5dd4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-51@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e7e974901827c915a665c4b4e291de5853702c076ac2a6590d34e72fb75443 +size 1502 diff --git a/Skins/++scylla funny mix EPIC/hit50-52.png b/Skins/++scylla funny mix EPIC/hit50-52.png new file mode 100644 index 00000000..b38631f0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ae1d72a115e80fa78469b8239da489d9bde595ae8b6ae01f3b4cd5ab853147 +size 530 diff --git a/Skins/++scylla funny mix EPIC/hit50-52@2x.png b/Skins/++scylla funny mix EPIC/hit50-52@2x.png new file mode 100644 index 00000000..5ab2e70c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-52@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da17ce326ee32121077e068a7361829678bf3c782b4944fc0704992d442852f +size 1345 diff --git a/Skins/++scylla funny mix EPIC/hit50-53.png b/Skins/++scylla funny mix EPIC/hit50-53.png new file mode 100644 index 00000000..227d150e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2146ec80fec74d403b4fc26262fb1575888eaf57c1f52980c3e54ac0e0c0b9ca +size 477 diff --git a/Skins/++scylla funny mix EPIC/hit50-53@2x.png b/Skins/++scylla funny mix EPIC/hit50-53@2x.png new file mode 100644 index 00000000..1bfcdc57 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-53@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506f88de01584994faa51650b93d4fb21e917f75e0b3ebe5778ab2f7102a5753 +size 1217 diff --git a/Skins/++scylla funny mix EPIC/hit50-54.png b/Skins/++scylla funny mix EPIC/hit50-54.png new file mode 100644 index 00000000..45069388 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8bc951c16b13cf0e8bf65a2f3f304d5216c8aca90b614168ce0dd504ca1237 +size 442 diff --git a/Skins/++scylla funny mix EPIC/hit50-54@2x.png b/Skins/++scylla funny mix EPIC/hit50-54@2x.png new file mode 100644 index 00000000..d760220e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-54@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ffd31f1f86314335cc1c520a5051901883ca3456e200b8ef4691d953c440c6 +size 1111 diff --git a/Skins/++scylla funny mix EPIC/hit50-55.png b/Skins/++scylla funny mix EPIC/hit50-55.png new file mode 100644 index 00000000..4e79794c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366a69d1fd9c935c7edf43a454fcf9771ba3af952b485d6d80472091729b8be2 +size 403 diff --git a/Skins/++scylla funny mix EPIC/hit50-55@2x.png b/Skins/++scylla funny mix EPIC/hit50-55@2x.png new file mode 100644 index 00000000..9cbb8d86 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-55@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3dd438e00efd670124ae79051101a661cef1f47eb5e8541a8f0397f6dbf39f2 +size 943 diff --git a/Skins/++scylla funny mix EPIC/hit50-56.png b/Skins/++scylla funny mix EPIC/hit50-56.png new file mode 100644 index 00000000..a4ef9a9d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241096b0bc6fcb6687f16d215677566efb22a8fde9450fc4d1661366e487e56c +size 332 diff --git a/Skins/++scylla funny mix EPIC/hit50-56@2x.png b/Skins/++scylla funny mix EPIC/hit50-56@2x.png new file mode 100644 index 00000000..6a99aaea --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-56@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11bd449096156d65a10f7b74ef206216a000813580f1c59b388ea934ef1611d +size 822 diff --git a/Skins/++scylla funny mix EPIC/hit50-57.png b/Skins/++scylla funny mix EPIC/hit50-57.png new file mode 100644 index 00000000..9ef52e7e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a544de95b038ccee1671662ff41923b40f57139d4db255a298062533b59ed6 +size 295 diff --git a/Skins/++scylla funny mix EPIC/hit50-57@2x.png b/Skins/++scylla funny mix EPIC/hit50-57@2x.png new file mode 100644 index 00000000..a8fe3042 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-57@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927789b9d5745d88449335456fd07833e8c0453c150c092ba253b02dd84a6c8c +size 696 diff --git a/Skins/++scylla funny mix EPIC/hit50-58.png b/Skins/++scylla funny mix EPIC/hit50-58.png new file mode 100644 index 00000000..802393bd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90a19153b2f80ae0c76e2c9bb5d8c1106b55e060cfedff95f26c1fc20433e861 +size 262 diff --git a/Skins/++scylla funny mix EPIC/hit50-58@2x.png b/Skins/++scylla funny mix EPIC/hit50-58@2x.png new file mode 100644 index 00000000..8ded96f0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-58@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca50b41be7ac6289934015396d68629dace0350f8b643861877f872bc5e9a8ac +size 607 diff --git a/Skins/++scylla funny mix EPIC/hit50-59.png b/Skins/++scylla funny mix EPIC/hit50-59.png new file mode 100644 index 00000000..50b5c8d0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2e9511818385f818dc2cc48c647cb357b8bdf04236b5f0a96f1d31447bc3b4 +size 229 diff --git a/Skins/++scylla funny mix EPIC/hit50-59@2x.png b/Skins/++scylla funny mix EPIC/hit50-59@2x.png new file mode 100644 index 00000000..43a8bd12 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-59@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547cbcc11ef1b968b9687d3682c38d6c2c25121499bfa1f6baab31c555439e7a +size 511 diff --git a/Skins/++scylla funny mix EPIC/hit50-5@2x.png b/Skins/++scylla funny mix EPIC/hit50-5@2x.png new file mode 100644 index 00000000..e1bda07e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16bbc1cfb72ee3211bcbb80ae9a18b227fd6cf4adaff9e9c4f812ecc8765b9d6 +size 6097 diff --git a/Skins/++scylla funny mix EPIC/hit50-6.png b/Skins/++scylla funny mix EPIC/hit50-6.png new file mode 100644 index 00000000..ec30c89e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814c96dad9c1de4e75568e5485359e773cad5a5a39a8cb0abe0b09ebbb6a17cd +size 2772 diff --git a/Skins/++scylla funny mix EPIC/hit50-6@2x.png b/Skins/++scylla funny mix EPIC/hit50-6@2x.png new file mode 100644 index 00000000..34ba83ad --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865adf525f880cb2827618a023bea08b099a0e30681319314119e4499344b4fa +size 6157 diff --git a/Skins/++scylla funny mix EPIC/hit50-7.png b/Skins/++scylla funny mix EPIC/hit50-7.png new file mode 100644 index 00000000..9c5d2d54 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:859332427b364a01534af77b5a77818726e120c39ce0fd343ccad4cd0703102f +size 2826 diff --git a/Skins/++scylla funny mix EPIC/hit50-7@2x.png b/Skins/++scylla funny mix EPIC/hit50-7@2x.png new file mode 100644 index 00000000..86c4031a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67687ee83fa520e9e180177026262fcd31e76cd728ee6d0faf27a647299de8f3 +size 6339 diff --git a/Skins/++scylla funny mix EPIC/hit50-8.png b/Skins/++scylla funny mix EPIC/hit50-8.png new file mode 100644 index 00000000..941914af --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f32d913f4fa52e13b296aa1637ae63ec983729d826f6a22b0b78f10aaeab8e +size 2742 diff --git a/Skins/++scylla funny mix EPIC/hit50-8@2x.png b/Skins/++scylla funny mix EPIC/hit50-8@2x.png new file mode 100644 index 00000000..f0699a97 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2877a5daf30880a13c3b1ca8f49e04350802db28b8e132b93e76c015d8161c3 +size 6179 diff --git a/Skins/++scylla funny mix EPIC/hit50-9.png b/Skins/++scylla funny mix EPIC/hit50-9.png new file mode 100644 index 00000000..a86c5295 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06489efdb0f9ee8d4abe0ff6ea7e6399d2ffb038a9a25d935258542d70884196 +size 2791 diff --git a/Skins/++scylla funny mix EPIC/hit50-9@2x.png b/Skins/++scylla funny mix EPIC/hit50-9@2x.png new file mode 100644 index 00000000..fd741180 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3486d716c974c1c074d67baa2eacc95f3b4ed626ed8a6eaea01aa1dcf6e7bb35 +size 6154 diff --git a/Skins/++scylla funny mix EPIC/hit50.png b/Skins/++scylla funny mix EPIC/hit50.png new file mode 100644 index 00000000..464af7f7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:140d3ac1fbd89e0da17fcb62b18cc22a20b6e2b9b6d344cfe11ebe7a7a2a44e1 +size 24542 diff --git a/Skins/++scylla funny mix EPIC/hit50@2x.png b/Skins/++scylla funny mix EPIC/hit50@2x.png new file mode 100644 index 00000000..b096cd56 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75214cb11313c6dd34f6bb2fcb3592e00ebb5ead5253d23d47c1381d38e9b668 +size 26736 diff --git a/Skins/++scylla funny mix EPIC/hitcircle.png b/Skins/++scylla funny mix EPIC/hitcircle.png new file mode 100644 index 00000000..aa74e334 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3237333f46211bfa98014abb2e5bf433a70f536638210e2fbb148a338699f04e +size 26042 diff --git a/Skins/++scylla funny mix EPIC/hitcircle@2x.png b/Skins/++scylla funny mix EPIC/hitcircle@2x.png new file mode 100644 index 00000000..4ec95042 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f7319d95836767575692437d033f1103f366b78ee07b44c78929ea9165468f +size 35512 diff --git a/Skins/++scylla funny mix EPIC/hitcircleoverlay.png b/Skins/++scylla funny mix EPIC/hitcircleoverlay.png new file mode 100644 index 00000000..bb956480 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23eaa362ae2b42d72eba27a7c8dedbd054d08366b4d2ef8863a4d6f5cf792b3a +size 34293 diff --git a/Skins/++scylla funny mix EPIC/hitcircleoverlay@2x.png b/Skins/++scylla funny mix EPIC/hitcircleoverlay@2x.png new file mode 100644 index 00000000..46cb5c1a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da3b0ff822aeb2e139175d427542c62c02b9af5ffbb1797e24273ae7a1e0f61 +size 52963 diff --git a/Skins/++scylla funny mix EPIC/inputoverlay-background.png b/Skins/++scylla funny mix EPIC/inputoverlay-background.png new file mode 100644 index 00000000..387ddaf7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd92c02dd5fdd2c2618feed428a566dbbd73b6b528e61db6c9b15c330609aa2 +size 1169 diff --git a/Skins/++scylla funny mix EPIC/inputoverlay-background@2x.png b/Skins/++scylla funny mix EPIC/inputoverlay-background@2x.png new file mode 100644 index 00000000..093958fe --- /dev/null +++ b/Skins/++scylla funny mix EPIC/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f34234694d5e4ebca79f877fc3339b4f220f3a9e7496216e072469fd247ecd4 +size 1259 diff --git a/Skins/++scylla funny mix EPIC/inputoverlay-key.png b/Skins/++scylla funny mix EPIC/inputoverlay-key.png new file mode 100644 index 00000000..69015029 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d3f3c4c24643aac3be0284becb5356082373deedbba6b32396629678201112 +size 375 diff --git a/Skins/++scylla funny mix EPIC/inputoverlay-key@2x.png b/Skins/++scylla funny mix EPIC/inputoverlay-key@2x.png new file mode 100644 index 00000000..11e713c9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa110a706defda797fa41406579fa01181abc3a149c8b82637efe05b0857d2d +size 677 diff --git a/Skins/++scylla funny mix EPIC/menu-background.jpg b/Skins/++scylla funny mix EPIC/menu-background.jpg new file mode 100644 index 00000000..5559c755 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b49819999aaf6c3cb4be76e38a76e3ce5a4abc666639f626b3122408d37f731 +size 423378 diff --git a/Skins/++scylla funny mix EPIC/menu-button-background.png b/Skins/++scylla funny mix EPIC/menu-button-background.png new file mode 100644 index 00000000..3bc64a6a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3cc6d752c19f5c4a82ce861c03573062024ae27602391ff5f6a1d601596ec3 +size 3851 diff --git a/Skins/++scylla funny mix EPIC/menu-button-background@2x.png b/Skins/++scylla funny mix EPIC/menu-button-background@2x.png new file mode 100644 index 00000000..7a37197e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad3a3b18d8f992c1cae749103ba1d793c19a5a1cfe0d8e63f0e77bb77485cd7 +size 283514 diff --git a/Skins/++scylla funny mix EPIC/mode-fruits.png b/Skins/++scylla funny mix EPIC/mode-fruits.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/mode-fruits.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/mode-mania.png b/Skins/++scylla funny mix EPIC/mode-mania.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/mode-mania.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/mode-osu-small@2x.png b/Skins/++scylla funny mix EPIC/mode-osu-small@2x.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/mode-osu.png b/Skins/++scylla funny mix EPIC/mode-osu.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/mode-taiko.png b/Skins/++scylla funny mix EPIC/mode-taiko.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/nightcore-clap.wav b/Skins/++scylla funny mix EPIC/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/++scylla funny mix EPIC/nightcore-finish.wav b/Skins/++scylla funny mix EPIC/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/++scylla funny mix EPIC/nightcore-hat.wav b/Skins/++scylla funny mix EPIC/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/++scylla funny mix EPIC/nightcore-kick.wav b/Skins/++scylla funny mix EPIC/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/src/default-skin/soft-sliderslide.wav b/Skins/++scylla funny mix EPIC/nomal-sliderslide.wav similarity index 100% rename from src/default-skin/soft-sliderslide.wav rename to Skins/++scylla funny mix EPIC/nomal-sliderslide.wav diff --git a/Skins/++scylla funny mix EPIC/normal-hitclap.wav b/Skins/++scylla funny mix EPIC/normal-hitclap.wav new file mode 100644 index 00000000..80b82219 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6ab364fcadd6d9d756b27ed30339ab01848acfd00aeb50be1d9fa4825b6fd27 +size 49418 diff --git a/Skins/++scylla funny mix EPIC/normal-hitclap2.wav b/Skins/++scylla funny mix EPIC/normal-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/++scylla funny mix EPIC/normal-hitfinish.wav b/Skins/++scylla funny mix EPIC/normal-hitfinish.wav new file mode 100644 index 00000000..eb9bed29 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf95415b2455d6463d9f18cdff953f9e242aac973183b0ca07eb1b2c2627c91 +size 20264 diff --git a/Skins/++scylla funny mix EPIC/normal-hitfinish2.wav b/Skins/++scylla funny mix EPIC/normal-hitfinish2.wav new file mode 100644 index 00000000..f4647136 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f272833b9f0ba3dff5679939d942a58942f51e7eebde12de6ccfa0ea648d8a +size 258960 diff --git a/Skins/++scylla funny mix EPIC/normal-hitnormal.wav b/Skins/++scylla funny mix EPIC/normal-hitnormal.wav new file mode 100644 index 00000000..673544f7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5faa198f2fcd4b811331b3731e470b7daa4d83c924af498638deb6ce30b0b44 +size 23518 diff --git a/Skins/++scylla funny mix EPIC/normal-hitnormal2.wav b/Skins/++scylla funny mix EPIC/normal-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/++scylla funny mix EPIC/normal-hitwhistle.wav b/Skins/++scylla funny mix EPIC/normal-hitwhistle.wav new file mode 100644 index 00000000..c08f8152 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a887ebce775d2ddeae551082c74b85d3e510df5deff7d631eaade8dcb92f6c8a +size 95690 diff --git a/Skins/++scylla funny mix EPIC/normal-hitwhistle2.wav b/Skins/++scylla funny mix EPIC/normal-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/++scylla funny mix EPIC/normal-sliderslide.wav b/Skins/++scylla funny mix EPIC/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/++scylla funny mix EPIC/normal-sliderslide2.wav b/Skins/++scylla funny mix EPIC/normal-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/++scylla funny mix EPIC/normal-slidertick.wav b/Skins/++scylla funny mix EPIC/normal-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/++scylla funny mix EPIC/normal-sliderwhistle.wav b/Skins/++scylla funny mix EPIC/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/++scylla funny mix EPIC/pause-.psd b/Skins/++scylla funny mix EPIC/pause-.psd new file mode 100644 index 00000000..0daf67a6 Binary files /dev/null and b/Skins/++scylla funny mix EPIC/pause-.psd differ diff --git a/Skins/++scylla funny mix EPIC/pause-back.png b/Skins/++scylla funny mix EPIC/pause-back.png new file mode 100644 index 00000000..82757730 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e9348c8b9939a1dce615580a970cef5d984be0f7bd97c4dbbd56d02cafce41 +size 31583 diff --git a/Skins/++scylla funny mix EPIC/pause-back@2x.png b/Skins/++scylla funny mix EPIC/pause-back@2x.png new file mode 100644 index 00000000..33b5de9e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eace59b1a055223f51a2c488556356db85c74623caa742040101b80e3fa36730 +size 101286 diff --git a/Skins/++scylla funny mix EPIC/pause-continue.png b/Skins/++scylla funny mix EPIC/pause-continue.png new file mode 100644 index 00000000..986ffda6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37837808a8f0d0c1a1229107da42e4dbb950fb97f44f3483c75ccaeee5fbf631 +size 31485 diff --git a/Skins/++scylla funny mix EPIC/pause-continue@2x.png b/Skins/++scylla funny mix EPIC/pause-continue@2x.png new file mode 100644 index 00000000..3a288cd5 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731805915ea083bec4c58d88812cf1b798d723e72535950e708dbb22452a45f7 +size 107403 diff --git a/Skins/++scylla funny mix EPIC/pause-replay.png b/Skins/++scylla funny mix EPIC/pause-replay.png new file mode 100644 index 00000000..d53234ef --- /dev/null +++ b/Skins/++scylla funny mix EPIC/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2f8f9e6216e5937bec7db38bacf4d7db8ee8f6507b9f666a3bca54d193f937 +size 33928 diff --git a/Skins/++scylla funny mix EPIC/pause-replay@2x.png b/Skins/++scylla funny mix EPIC/pause-replay@2x.png new file mode 100644 index 00000000..a92ec9de --- /dev/null +++ b/Skins/++scylla funny mix EPIC/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbdca139548c83dbcafea25e6243380b15b0b0bc624b89e20feff4f637f389de +size 116171 diff --git a/Skins/++scylla funny mix EPIC/pause-retry.png b/Skins/++scylla funny mix EPIC/pause-retry.png new file mode 100644 index 00000000..f46a4ea1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bab0a5ec35c028f363df49f10145966b6e0bdc27719d58a77538ae427f0cfdb5 +size 33249 diff --git a/Skins/++scylla funny mix EPIC/pause-retry@2x.png b/Skins/++scylla funny mix EPIC/pause-retry@2x.png new file mode 100644 index 00000000..56b12bb7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494ac1185560cb64abfd7d13bc45a1fab67dec00593e416deffbd7598a240da8 +size 106554 diff --git a/Skins/++scylla funny mix EPIC/ranking-A-small.png b/Skins/++scylla funny mix EPIC/ranking-A-small.png new file mode 100644 index 00000000..72aeee62 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcddaed01492f87ca74b1b4750625bcc3dc14e36b273f08cd2555f14c494d7b +size 2449 diff --git a/Skins/++scylla funny mix EPIC/ranking-A-small@2x.png b/Skins/++scylla funny mix EPIC/ranking-A-small@2x.png new file mode 100644 index 00000000..a93cc2ca --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d5fe063b6750d7ff88fb2a2c4bccafe03661705cfff33f59a27a6243c40cd1 +size 3419 diff --git a/Skins/++scylla funny mix EPIC/ranking-A.png b/Skins/++scylla funny mix EPIC/ranking-A.png new file mode 100644 index 00000000..d0c3e8c6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd65ca4fa074bf115b3d777774c348aa1a947b524d378b5ee26d04a6f5ccf8d0 +size 32249 diff --git a/Skins/++scylla funny mix EPIC/ranking-A@2x.png b/Skins/++scylla funny mix EPIC/ranking-A@2x.png new file mode 100644 index 00000000..c07a22c7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70c7f0714da1e9724a659e0dc00b09a24756cc62b488f75d459accbf38b2fb5 +size 29424 diff --git a/Skins/++scylla funny mix EPIC/ranking-B-small.png b/Skins/++scylla funny mix EPIC/ranking-B-small.png new file mode 100644 index 00000000..94207d31 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca1302ad197cb4960fe6effa7caa3c67620179d11a0d9c45c22ff672038fc33 +size 2609 diff --git a/Skins/++scylla funny mix EPIC/ranking-B-small@2x.png b/Skins/++scylla funny mix EPIC/ranking-B-small@2x.png new file mode 100644 index 00000000..11d127b1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a290a1888eb107bfeabc5ad7c9e4aab7f44fb06996ef84202341c81e9609fe +size 3951 diff --git a/Skins/++scylla funny mix EPIC/ranking-B.png b/Skins/++scylla funny mix EPIC/ranking-B.png new file mode 100644 index 00000000..44446050 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b8cbbbbae894fc742a835a72a3cb408abb018ad0ed94a0f5ff15cf3f1359175 +size 34819 diff --git a/Skins/++scylla funny mix EPIC/ranking-B@2x.png b/Skins/++scylla funny mix EPIC/ranking-B@2x.png new file mode 100644 index 00000000..394c76a3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f343de9aa42b5dd01894b17af1d364da6cc9123478757ba30b49aac417cc4f2 +size 35789 diff --git a/Skins/++scylla funny mix EPIC/ranking-C-small.png b/Skins/++scylla funny mix EPIC/ranking-C-small.png new file mode 100644 index 00000000..564fdc9c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec2582294b981c4e3e629211304e60304589f0dd468c7c75da87883a95fa2ce +size 2231 diff --git a/Skins/++scylla funny mix EPIC/ranking-C-small@2x.png b/Skins/++scylla funny mix EPIC/ranking-C-small@2x.png new file mode 100644 index 00000000..e49bc2fc --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ed38d7f2a0ffd062724d288bbac4cdec135837b755e00b5701f13650d0524b +size 3676 diff --git a/Skins/++scylla funny mix EPIC/ranking-C.png b/Skins/++scylla funny mix EPIC/ranking-C.png new file mode 100644 index 00000000..72abf315 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46926558f7c6f9286f3c2ac1872a960837dde85cecd8ed0d8de584518b29e337 +size 26350 diff --git a/Skins/++scylla funny mix EPIC/ranking-C@2x.png b/Skins/++scylla funny mix EPIC/ranking-C@2x.png new file mode 100644 index 00000000..2a97d6cb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89565f3b2b84ceaaa28b812943997b1398ad60d0b2dd1407565ba35efeffca9 +size 29103 diff --git a/Skins/++scylla funny mix EPIC/ranking-D-small.png b/Skins/++scylla funny mix EPIC/ranking-D-small.png new file mode 100644 index 00000000..d9dd3701 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a74a765cdeb9d71439b84a559fa7cb3fd7dae90089a4c612c351837f1dd4cda +size 2373 diff --git a/Skins/++scylla funny mix EPIC/ranking-D-small@2x.png b/Skins/++scylla funny mix EPIC/ranking-D-small@2x.png new file mode 100644 index 00000000..aec1d90a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f017d2eb2a08ae702c93ff34a8437ffce5a65915f912df2ec9732c8bcd630831 +size 3164 diff --git a/Skins/++scylla funny mix EPIC/ranking-D.png b/Skins/++scylla funny mix EPIC/ranking-D.png new file mode 100644 index 00000000..e3f0c657 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf7437aac17376908500f4abfaed8aa4fb9cb867e3e6a2ab1f68664de4a2c92 +size 28303 diff --git a/Skins/++scylla funny mix EPIC/ranking-D@2x.png b/Skins/++scylla funny mix EPIC/ranking-D@2x.png new file mode 100644 index 00000000..562487e8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9aafa65fcd93b8d3461a53ce7e6984a09122c6cad6a8e807a25fd5ff9f6091 +size 25199 diff --git a/Skins/++scylla funny mix EPIC/ranking-S-small.png b/Skins/++scylla funny mix EPIC/ranking-S-small.png new file mode 100644 index 00000000..0f704721 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aba21d357ce76f2ae53c5da263a54cc1398fba784ac277b689e208a7ae76eee +size 2272 diff --git a/Skins/++scylla funny mix EPIC/ranking-S-small@2x.png b/Skins/++scylla funny mix EPIC/ranking-S-small@2x.png new file mode 100644 index 00000000..67bb2509 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1489c257b8dac2550c0806424a292ef52acb85aacf6c70363ffd2cf09492aae7 +size 3957 diff --git a/Skins/++scylla funny mix EPIC/ranking-S.png b/Skins/++scylla funny mix EPIC/ranking-S.png new file mode 100644 index 00000000..89dc6108 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1179738dfd4cda7556f224f060325b396e868c9c04ccb9d324ad24e4448c14eb +size 27058 diff --git a/Skins/++scylla funny mix EPIC/ranking-S@2x.png b/Skins/++scylla funny mix EPIC/ranking-S@2x.png new file mode 100644 index 00000000..5ca466ce --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ef38d29b147734ff59d4f0364f40d9a3ce88880de57ff49f8baa24386fbdec +size 32768 diff --git a/Skins/++scylla funny mix EPIC/ranking-SH-small.png b/Skins/++scylla funny mix EPIC/ranking-SH-small.png new file mode 100644 index 00000000..c58cba89 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98a6420daea3c686b0c3766b48e815834919872da88bd983e942172ac32301d +size 1699 diff --git a/Skins/++scylla funny mix EPIC/ranking-SH-small@2x.png b/Skins/++scylla funny mix EPIC/ranking-SH-small@2x.png new file mode 100644 index 00000000..5f308b64 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5bf28250646ef2f81a443b2bfceb091cfdaa188ca058889fefe1591c48753d +size 3037 diff --git a/Skins/++scylla funny mix EPIC/ranking-SH.png b/Skins/++scylla funny mix EPIC/ranking-SH.png new file mode 100644 index 00000000..f0441565 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612c181ae756b9c4cb34ac8efec057da34200c648d464f2a8263e64562ae97de +size 15214 diff --git a/Skins/++scylla funny mix EPIC/ranking-SH@2x.png b/Skins/++scylla funny mix EPIC/ranking-SH@2x.png new file mode 100644 index 00000000..a25cfc7d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7f25b2e09f39db7962514719cda8e0dd65d0585883bbec9257d7c4790eb838 +size 21193 diff --git a/Skins/++scylla funny mix EPIC/ranking-X-small.png b/Skins/++scylla funny mix EPIC/ranking-X-small.png new file mode 100644 index 00000000..067e9a1c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4947b02713595006489ec0429ffc7d88845f4466354a8974b65a221fb7d3ec +size 3722 diff --git a/Skins/++scylla funny mix EPIC/ranking-X-small@2x.png b/Skins/++scylla funny mix EPIC/ranking-X-small@2x.png new file mode 100644 index 00000000..39aed49a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff823bc51509ade3c6979fb7b91314974116de1985d2d2e52a02dc6edafebbfa +size 6987 diff --git a/Skins/++scylla funny mix EPIC/ranking-X.png b/Skins/++scylla funny mix EPIC/ranking-X.png new file mode 100644 index 00000000..d6e51fa8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696e67e865ff4daccdf9674d929b1b876b1dbe1c9b1076e57e67be46824dee1c +size 27290 diff --git a/Skins/++scylla funny mix EPIC/ranking-X@2x.png b/Skins/++scylla funny mix EPIC/ranking-X@2x.png new file mode 100644 index 00000000..6b0640e8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fc57c0d9ce25a2e406cb97da1a0e34d6c3a95cba393a16292ae3764899f326 +size 62076 diff --git a/Skins/++scylla funny mix EPIC/ranking-XH-small.png b/Skins/++scylla funny mix EPIC/ranking-XH-small.png new file mode 100644 index 00000000..ff9c8945 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:496355774b67e362395bdf16001c49cc5c7bf114ea84ded35b26b0ef50d2787e +size 3100 diff --git a/Skins/++scylla funny mix EPIC/ranking-XH-small@2x.png b/Skins/++scylla funny mix EPIC/ranking-XH-small@2x.png new file mode 100644 index 00000000..51d5f0a8 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324ef7876f12578adc02d652460516147f423c4026e9d7e58ac987bb0c4bedfa +size 5644 diff --git a/Skins/++scylla funny mix EPIC/ranking-XH.png b/Skins/++scylla funny mix EPIC/ranking-XH.png new file mode 100644 index 00000000..35c63680 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d14e4462eec61477c1534ef1e49393bc4f9058b6042373f45c1bc9345c1cfc8 +size 20521 diff --git a/Skins/++scylla funny mix EPIC/ranking-XH@2x.png b/Skins/++scylla funny mix EPIC/ranking-XH@2x.png new file mode 100644 index 00000000..b44245f7 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa5b4a97016a19a57625ae47490aa45014a1645bcc6f6a048e4fa6b8231cd08 +size 43661 diff --git a/Skins/++scylla funny mix EPIC/ranking-accuracy.png b/Skins/++scylla funny mix EPIC/ranking-accuracy.png new file mode 100644 index 00000000..5b5bf40a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524835a30be8c111e52d2e0fee0ac3a678b74e600ed5ecfc0fb5bd8f0a282636 +size 176 diff --git a/Skins/++scylla funny mix EPIC/ranking-accuracy@2x.png b/Skins/++scylla funny mix EPIC/ranking-accuracy@2x.png new file mode 100644 index 00000000..50b4678f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-accuracy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15e68c4df37076d1afb55b84fcd970819c8f72a6697e1a4abe05528cb91431a +size 3001 diff --git a/Skins/++scylla funny mix EPIC/ranking-background-overlay.png b/Skins/++scylla funny mix EPIC/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/++scylla funny mix EPIC/ranking-graph.png b/Skins/++scylla funny mix EPIC/ranking-graph.png new file mode 100644 index 00000000..5e3e69a1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61bda166aa8fba9f2e4c4268afdd72d850910f4873bd7874035a23df3e099177 +size 12893 diff --git a/Skins/++scylla funny mix EPIC/ranking-graph@2x.png b/Skins/++scylla funny mix EPIC/ranking-graph@2x.png new file mode 100644 index 00000000..3b19bd15 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d4b4790d11c9b02dc133e72d8dd60be1412277fec0a9b1f61340bf9fd384f7 +size 19375 diff --git a/Skins/++scylla funny mix EPIC/ranking-maxcombo.png b/Skins/++scylla funny mix EPIC/ranking-maxcombo.png new file mode 100644 index 00000000..e110e8aa --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467cc136a787e7a4f4f1b53566df8e4113e720663068d86e9b980b947f90b852 +size 8067 diff --git a/Skins/++scylla funny mix EPIC/ranking-panel.png b/Skins/++scylla funny mix EPIC/ranking-panel.png new file mode 100644 index 00000000..f89f7c43 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2acf5632e802737b367c85d28a9b44c03b60d32140c729f313a62138a83ad578 +size 24903 diff --git a/Skins/++scylla funny mix EPIC/ranking-perfect.png b/Skins/++scylla funny mix EPIC/ranking-perfect.png new file mode 100644 index 00000000..74f9779c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286de1ffe46b976a50e313db29dcec6a6739308e677a3be2f60b4bf162085425 +size 26832 diff --git a/Skins/++scylla funny mix EPIC/ranking-perfect@2x.png b/Skins/++scylla funny mix EPIC/ranking-perfect@2x.png new file mode 100644 index 00000000..511ac369 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64383e0c9fcb892d3d6c5dea3f60b67c61daa5ca376912be13ef4d8b587dc4e +size 27120 diff --git a/Skins/++scylla funny mix EPIC/ranking-replay.png b/Skins/++scylla funny mix EPIC/ranking-replay.png new file mode 100644 index 00000000..e2bc7591 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b9bdaae9c3bda6982906dd8e47f34585fd29411d84fb382b3741fcde06584a +size 15994 diff --git a/Skins/++scylla funny mix EPIC/ranking-retry.png b/Skins/++scylla funny mix EPIC/ranking-retry.png new file mode 100644 index 00000000..652840aa --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323be90e87c65f44e5d436eca7a532b1632a66b8cd25246906c3b847ce52ef90 +size 8802 diff --git a/Skins/++scylla funny mix EPIC/ranking-title.png b/Skins/++scylla funny mix EPIC/ranking-title.png new file mode 100644 index 00000000..a48348c3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6ce59f532da239776b8e5232ed8a53b2df3331d76b1e4352481ee15d1655463 +size 30735 diff --git a/Skins/++scylla funny mix EPIC/ranking-title@2x.png b/Skins/++scylla funny mix EPIC/ranking-title@2x.png new file mode 100644 index 00000000..26a44eb2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/ranking-title@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0268db102acfa848fe5c9281f4504d10b1574cc731c81d4192a76721b29a213a +size 38454 diff --git a/Skins/++scylla funny mix EPIC/reversearrow.png b/Skins/++scylla funny mix EPIC/reversearrow.png new file mode 100644 index 00000000..b9e0e982 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1dbdd6a99143cdddd6490973f5569c1ac8cb9ae5081153901e89d1a79fb584 +size 2593 diff --git a/Skins/++scylla funny mix EPIC/score-0.png b/Skins/++scylla funny mix EPIC/score-0.png new file mode 100644 index 00000000..cae9a93c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ca12aea929a74d2f5fe00a1c585824655538602e1d44076341859c88662cae +size 19159 diff --git a/Skins/++scylla funny mix EPIC/score-0@2x.png b/Skins/++scylla funny mix EPIC/score-0@2x.png new file mode 100644 index 00000000..94b6af4f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c198d206e3a716b087e4fa7cb14bde384d6d0e1e20d94f026af3f5cb4c9459d9 +size 20184 diff --git a/Skins/++scylla funny mix EPIC/score-1.png b/Skins/++scylla funny mix EPIC/score-1.png new file mode 100644 index 00000000..2cc84f3f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c85c24a361a93487bcd9565990b658393c7067dd9bcf94e40271b96b49aee0 +size 18578 diff --git a/Skins/++scylla funny mix EPIC/score-1@2x.png b/Skins/++scylla funny mix EPIC/score-1@2x.png new file mode 100644 index 00000000..ceece516 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd50a2bde59f07afda2ec133b00d877e21a207f6940eb90b148e9c78f3b82f0 +size 18774 diff --git a/Skins/++scylla funny mix EPIC/score-2.png b/Skins/++scylla funny mix EPIC/score-2.png new file mode 100644 index 00000000..c7638a8f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f8a1a43e08b3967ded8df7119cba951507e143dff71ab889d7991ae6d5960c +size 18948 diff --git a/Skins/++scylla funny mix EPIC/score-2@2x.png b/Skins/++scylla funny mix EPIC/score-2@2x.png new file mode 100644 index 00000000..20dbdbe0 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65955d036dfc76d04c4c053b442ceab9af2938466bd6029bf9a57a5b9550d94a +size 19965 diff --git a/Skins/++scylla funny mix EPIC/score-3.png b/Skins/++scylla funny mix EPIC/score-3.png new file mode 100644 index 00000000..3cb76fae --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cddedfbeb892c67c62b66900c0d22423859c8e8735b3dafd9464ca46dfa4792f +size 18985 diff --git a/Skins/++scylla funny mix EPIC/score-3@2x.png b/Skins/++scylla funny mix EPIC/score-3@2x.png new file mode 100644 index 00000000..599c182a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d32cdd74c9442845aa6e89f1a2dbd1960e2ce0fbd591caffbc545a33f4b2d4 +size 20049 diff --git a/Skins/++scylla funny mix EPIC/score-4.png b/Skins/++scylla funny mix EPIC/score-4.png new file mode 100644 index 00000000..e58d430d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d18228a29c2d2dc6ed6758f14d01ef6a8e480459b171c6270ad6d86b827755 +size 18959 diff --git a/Skins/++scylla funny mix EPIC/score-4@2x.png b/Skins/++scylla funny mix EPIC/score-4@2x.png new file mode 100644 index 00000000..59f711a3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31619d4f1aa450eabc86f76eb45692d2bc4b3d937914f56bdaa8c48b193a9a2d +size 19904 diff --git a/Skins/++scylla funny mix EPIC/score-5.png b/Skins/++scylla funny mix EPIC/score-5.png new file mode 100644 index 00000000..3855e8dd --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032ef1b805e15a94f6435e1b5f88c1f3de0da4010ecc7b168a268266a8d4c883 +size 18971 diff --git a/Skins/++scylla funny mix EPIC/score-5@2x.png b/Skins/++scylla funny mix EPIC/score-5@2x.png new file mode 100644 index 00000000..d4c11fd9 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c31cf9b4fdf9743788a518509265bc51c87438da7e0b390a4a59e4a1d909b7 +size 19933 diff --git a/Skins/++scylla funny mix EPIC/score-6.png b/Skins/++scylla funny mix EPIC/score-6.png new file mode 100644 index 00000000..4c85e842 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b43ce8af8e8cacf53bf9ad0f1c40e6479679f7aec2a02ba6d00c64dd16b948 +size 19062 diff --git a/Skins/++scylla funny mix EPIC/score-6@2x.png b/Skins/++scylla funny mix EPIC/score-6@2x.png new file mode 100644 index 00000000..19dc2790 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e662b123479b103728dbb67dd95716bce6a7c826c70282be314820e0bbd716e +size 20290 diff --git a/Skins/++scylla funny mix EPIC/score-7.png b/Skins/++scylla funny mix EPIC/score-7.png new file mode 100644 index 00000000..392d9716 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da0b92d8e0ffe032b9668796126926413cee0295ff0faeb49c882e80c040ead0 +size 18856 diff --git a/Skins/++scylla funny mix EPIC/score-7@2x.png b/Skins/++scylla funny mix EPIC/score-7@2x.png new file mode 100644 index 00000000..ed812aba --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399323ee4211153c9d0e6ac096d0964738b46208e15dfe2fa4c28e13f5bc48a8 +size 19542 diff --git a/Skins/++scylla funny mix EPIC/score-8.png b/Skins/++scylla funny mix EPIC/score-8.png new file mode 100644 index 00000000..7c31c94e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42296e5d6f39ba2deaee0ec2b218fc265c9dbda0987d3aecdee51dfb9cb9b71a +size 19116 diff --git a/Skins/++scylla funny mix EPIC/score-8@2x.png b/Skins/++scylla funny mix EPIC/score-8@2x.png new file mode 100644 index 00000000..cbf9705d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896ed8281f52c7fa6a743c5e41333ca399a742215b4ae2c0e5d7d88cc99d4833 +size 20573 diff --git a/Skins/++scylla funny mix EPIC/score-9.png b/Skins/++scylla funny mix EPIC/score-9.png new file mode 100644 index 00000000..d5b17e26 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfad66a0e8f9224b3e98d7fe995fe91107d70fd852dc522f11061db1c9c70b1d +size 19065 diff --git a/Skins/++scylla funny mix EPIC/score-9@2x.png b/Skins/++scylla funny mix EPIC/score-9@2x.png new file mode 100644 index 00000000..25dccab1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ba80d3eb110b1b269bf0ac7fc9faeca5111f5da12bcc5c334461dccea3dce7 +size 20329 diff --git a/Skins/++scylla funny mix EPIC/score-comma.png b/Skins/++scylla funny mix EPIC/score-comma.png new file mode 100644 index 00000000..18176f0d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a9fdb865ed47f5a0ae677d7c099248c48040f81412fb92f5ed35856b5228f5 +size 746 diff --git a/Skins/++scylla funny mix EPIC/score-comma@2x.png b/Skins/++scylla funny mix EPIC/score-comma@2x.png new file mode 100644 index 00000000..acc62bbf --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2fc28b44910cd2448e94009e7b610bb18ecf49c2ad53da27aa20be53d391daf +size 17950 diff --git a/Skins/++scylla funny mix EPIC/score-dot.png b/Skins/++scylla funny mix EPIC/score-dot.png new file mode 100644 index 00000000..032423a1 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff99d4a756a0ec7a45e12482f7cfbfb1364da4783b876f8c9871fe52b464e3b9 +size 482 diff --git a/Skins/++scylla funny mix EPIC/score-dot@2x.png b/Skins/++scylla funny mix EPIC/score-dot@2x.png new file mode 100644 index 00000000..9916d52f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8c7633b23347ff498af90f5bfa694e81a0ab67a33e04fdfaf7c57c7b48f7271 +size 17419 diff --git a/Skins/++scylla funny mix EPIC/score-percent.png b/Skins/++scylla funny mix EPIC/score-percent.png new file mode 100644 index 00000000..57258172 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2fe006303cdfd0a9bba31493e3812a08a70aa43c230c41f042daa6b8f0d731f +size 2712 diff --git a/Skins/++scylla funny mix EPIC/score-percent@2x.png b/Skins/++scylla funny mix EPIC/score-percent@2x.png new file mode 100644 index 00000000..5b5c7599 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2474e1be097f60cb060fcaf8fcdde499c2d7e68984e30c8fe8cfcdd79d4bffaf +size 21253 diff --git a/Skins/++scylla funny mix EPIC/score-x.png b/Skins/++scylla funny mix EPIC/score-x.png new file mode 100644 index 00000000..9ff3f316 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e21d461f3a8c448ad9c65ef7337c76784e38598d6d8c3ad68697b46ddb95612 +size 1368 diff --git a/Skins/++scylla funny mix EPIC/score-x@2x.png b/Skins/++scylla funny mix EPIC/score-x@2x.png new file mode 100644 index 00000000..69e6a708 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae7a4ebfd4081f8349c235da0d0417b6566aecf9bc23f1fc15b6852531c6e54 +size 19099 diff --git a/Skins/++scylla funny mix EPIC/scorebar-bg.png b/Skins/++scylla funny mix EPIC/scorebar-bg.png new file mode 100644 index 00000000..b093ad53 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f0b825a14421ba9fe172201ad6b58eecd92ef73d33cbd90c810a1e58af5910 +size 46978 diff --git a/Skins/++scylla funny mix EPIC/scorebar-colour-0.png b/Skins/++scylla funny mix EPIC/scorebar-colour-0.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scorebar-colour-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/++scylla funny mix EPIC/scorebar-ki.png b/Skins/++scylla funny mix EPIC/scorebar-ki.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/++scylla funny mix EPIC/scorebar-kidanger.png b/Skins/++scylla funny mix EPIC/scorebar-kidanger.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/++scylla funny mix EPIC/scorebar-kidanger2.png b/Skins/++scylla funny mix EPIC/scorebar-kidanger2.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-0.png b/Skins/++scylla funny mix EPIC/scoreentry-0.png new file mode 100644 index 00000000..8392550b --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba636a2d29cfd737da61d655c12782db2d3fcf888a5dcaa06af4618668778e3e +size 464 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-1.png b/Skins/++scylla funny mix EPIC/scoreentry-1.png new file mode 100644 index 00000000..ce2b97cf --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e47614cb98a88deea08175c95a5ae12266034298887e2924c415e4bd24cc9c4 +size 272 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-2.png b/Skins/++scylla funny mix EPIC/scoreentry-2.png new file mode 100644 index 00000000..6f7419db --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c73fe1b210d833fa9c211839ce9451ab8d8364b5497feb77d1b6cb21b883c6e +size 464 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-3.png b/Skins/++scylla funny mix EPIC/scoreentry-3.png new file mode 100644 index 00000000..babada8f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3eadf8c3d075d6ae9af4967b432a8c210abb6b15be2940534aeba841e89fc8 +size 464 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-4.png b/Skins/++scylla funny mix EPIC/scoreentry-4.png new file mode 100644 index 00000000..920af1d6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f2408b4c1f104ef14406857cd01ba03b4eb35ebd4e5bc937b5cace8fa1ac38 +size 464 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-5.png b/Skins/++scylla funny mix EPIC/scoreentry-5.png new file mode 100644 index 00000000..6c623be6 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844bcb7b5a22bfed7835c8660d2ab904bc86ce536eda8f0c3e2072396ba49aac +size 464 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-6.png b/Skins/++scylla funny mix EPIC/scoreentry-6.png new file mode 100644 index 00000000..a8d88039 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb824a8dc505253c9b47d3d9114ebe07042385f0d336ed85f7d87bd3ebab7acc +size 464 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-7.png b/Skins/++scylla funny mix EPIC/scoreentry-7.png new file mode 100644 index 00000000..dc8c429c --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dfabb94b0aad59dca17f416ffec7a43c13fbffc9a9e3c963eb660fc1ab1505c +size 431 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-8.png b/Skins/++scylla funny mix EPIC/scoreentry-8.png new file mode 100644 index 00000000..e225f952 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9419af9215c46f31fd1a97747747cc0e97dcacba2bb7ea8a46f0fa42d9c866 +size 464 diff --git a/Skins/++scylla funny mix EPIC/scoreentry-9.png b/Skins/++scylla funny mix EPIC/scoreentry-9.png new file mode 100644 index 00000000..4d0dd453 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cac1f5d545410ce1c71e6074156bb4b63355a5548a0860b680e8d13f7ba8d7 +size 431 diff --git a/Skins/++scylla funny mix EPIC/sectionfail.ogg b/Skins/++scylla funny mix EPIC/sectionfail.ogg new file mode 100644 index 00000000..559c58fb --- /dev/null +++ b/Skins/++scylla funny mix EPIC/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5293affd7593c87d062334f30a8609b2408b8df2f85083b84cccc97bb6b94846 +size 14864 diff --git a/Skins/++scylla funny mix EPIC/selection-mode-over.png b/Skins/++scylla funny mix EPIC/selection-mode-over.png new file mode 100644 index 00000000..4f0ab97a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae350f5810f3e86c817f791b0d286daa553960bde78d276d7205afddf6a671d +size 302 diff --git a/Skins/++scylla funny mix EPIC/selection-mode-over@2x.png b/Skins/++scylla funny mix EPIC/selection-mode-over@2x.png new file mode 100644 index 00000000..ad7f20ee --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866ff1d7c8506e9e726051cc7cbaff1bf5457dc153b956d2a13990623abfe835 +size 307 diff --git a/Skins/++scylla funny mix EPIC/selection-mode@2x.pdn b/Skins/++scylla funny mix EPIC/selection-mode@2x.pdn new file mode 100644 index 00000000..e4514b1f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-mode@2x.pdn @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab097e9c0df14424e8db5192c25266bc6d8df6444ad70dff20bc8e5ff4e024cd +size 900651 diff --git a/Skins/++scylla funny mix EPIC/selection-mode@2x.png b/Skins/++scylla funny mix EPIC/selection-mode@2x.png new file mode 100644 index 00000000..1ba6fe30 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06275925d24ce63638430fe1464a76a118864be9f23ae671955a67f1b90fa2f3 +size 332942 diff --git a/Skins/++scylla funny mix EPIC/selection-mode@2x2 - Copy.png b/Skins/++scylla funny mix EPIC/selection-mode@2x2 - Copy.png new file mode 100644 index 00000000..9c2ca01a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-mode@2x2 - Copy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7989cf0a65a4dc6c87844352eee4a416f6edbfeb507cc4a65ebc86e5b16618f6 +size 42778 diff --git a/Skins/++scylla funny mix EPIC/selection-mode@2x2.png b/Skins/++scylla funny mix EPIC/selection-mode@2x2.png new file mode 100644 index 00000000..9c2ca01a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-mode@2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7989cf0a65a4dc6c87844352eee4a416f6edbfeb507cc4a65ebc86e5b16618f6 +size 42778 diff --git a/Skins/++scylla funny mix EPIC/selection-mods-over.png b/Skins/++scylla funny mix EPIC/selection-mods-over.png new file mode 100644 index 00000000..da9abfed --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3184d86a6da1f54aee91ce268e8119ea329f375ae4a45438f0825d99bcc5763 +size 268 diff --git a/Skins/++scylla funny mix EPIC/selection-mods-over@2x.png b/Skins/++scylla funny mix EPIC/selection-mods-over@2x.png new file mode 100644 index 00000000..15c29460 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d180b336b3509b0b2c542e74ff5b9d67c4bc5928635251a38e80abb895694d44 +size 306 diff --git a/Skins/++scylla funny mix EPIC/selection-mods.png b/Skins/++scylla funny mix EPIC/selection-mods.png new file mode 100644 index 00000000..270ed544 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb9faa09d4230e7e6bd15891c2fcbeae8f5462a0dc35afa5c019ce2e57a5d0c +size 215 diff --git a/Skins/++scylla funny mix EPIC/selection-options-over.png b/Skins/++scylla funny mix EPIC/selection-options-over.png new file mode 100644 index 00000000..da9abfed --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3184d86a6da1f54aee91ce268e8119ea329f375ae4a45438f0825d99bcc5763 +size 268 diff --git a/Skins/++scylla funny mix EPIC/selection-options-over@2x.png b/Skins/++scylla funny mix EPIC/selection-options-over@2x.png new file mode 100644 index 00000000..15c29460 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d180b336b3509b0b2c542e74ff5b9d67c4bc5928635251a38e80abb895694d44 +size 306 diff --git a/Skins/++scylla funny mix EPIC/selection-options.png b/Skins/++scylla funny mix EPIC/selection-options.png new file mode 100644 index 00000000..270ed544 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb9faa09d4230e7e6bd15891c2fcbeae8f5462a0dc35afa5c019ce2e57a5d0c +size 215 diff --git a/Skins/++scylla funny mix EPIC/selection-random-over.png b/Skins/++scylla funny mix EPIC/selection-random-over.png new file mode 100644 index 00000000..da9abfed --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3184d86a6da1f54aee91ce268e8119ea329f375ae4a45438f0825d99bcc5763 +size 268 diff --git a/Skins/++scylla funny mix EPIC/selection-random-over@2x.png b/Skins/++scylla funny mix EPIC/selection-random-over@2x.png new file mode 100644 index 00000000..15c29460 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d180b336b3509b0b2c542e74ff5b9d67c4bc5928635251a38e80abb895694d44 +size 306 diff --git a/Skins/++scylla funny mix EPIC/selection-random.png b/Skins/++scylla funny mix EPIC/selection-random.png new file mode 100644 index 00000000..270ed544 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb9faa09d4230e7e6bd15891c2fcbeae8f5462a0dc35afa5c019ce2e57a5d0c +size 215 diff --git a/Skins/++scylla funny mix EPIC/selection-tab.png b/Skins/++scylla funny mix EPIC/selection-tab.png new file mode 100644 index 00000000..944f608f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34711e9255e118b2158f637171af2c79b438e1689c4142de1aee54556ddca88 +size 522 diff --git a/Skins/++scylla funny mix EPIC/selection-tab@2x.png b/Skins/++scylla funny mix EPIC/selection-tab@2x.png new file mode 100644 index 00000000..90ab912f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/selection-tab@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa87992894fcd031a18e23089664f7a48d533005151194798a05ce7e72ebe83 +size 4779 diff --git a/Skins/++scylla funny mix EPIC/skin.ini b/Skins/++scylla funny mix EPIC/skin.ini new file mode 100644 index 00000000..76573e69 Binary files /dev/null and b/Skins/++scylla funny mix EPIC/skin.ini differ diff --git a/Skins/++scylla funny mix EPIC/sliderb.png b/Skins/++scylla funny mix EPIC/sliderb.png new file mode 100644 index 00000000..f3895b92 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27116a691705b4393e9b8394f725e1c3e4fadb0e47d3ed49f2c329615e0d13a5 +size 35152 diff --git a/Skins/++scylla funny mix EPIC/sliderb@2x.png b/Skins/++scylla funny mix EPIC/sliderb@2x.png new file mode 100644 index 00000000..5e7d7594 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8828856acae5391832afe692996aa1d4e2fd801543b033a7ea7989161209f2aa +size 57742 diff --git a/Skins/++scylla funny mix EPIC/sliderendcircle.png b/Skins/++scylla funny mix EPIC/sliderendcircle.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/sliderfollowcircle.png b/Skins/++scylla funny mix EPIC/sliderfollowcircle.png new file mode 100644 index 00000000..f578da0e --- /dev/null +++ b/Skins/++scylla funny mix EPIC/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7021eac7c421bb618fb1a5f6367cce422eda9635d84e1083352dff33ed88fbcb +size 37557 diff --git a/Skins/++scylla funny mix EPIC/sliderfollowcircle@2x.png b/Skins/++scylla funny mix EPIC/sliderfollowcircle@2x.png new file mode 100644 index 00000000..7e96480a --- /dev/null +++ b/Skins/++scylla funny mix EPIC/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431d2e0c5e2d60a3279d962b56e6ac37f1349ac22869e845215a224897f8e98c +size 61664 diff --git a/Skins/++scylla funny mix EPIC/soft-hitclap.wav b/Skins/++scylla funny mix EPIC/soft-hitclap.wav new file mode 100644 index 00000000..39189848 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2cb5a623228d04f34bca58eb35df1406d7c6a05e87fd4694c4db8424f02f1d +size 41624 diff --git a/Skins/++scylla funny mix EPIC/soft-hitfinish.wav b/Skins/++scylla funny mix EPIC/soft-hitfinish.wav new file mode 100644 index 00000000..39189848 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2cb5a623228d04f34bca58eb35df1406d7c6a05e87fd4694c4db8424f02f1d +size 41624 diff --git a/Skins/++scylla funny mix EPIC/soft-hitnormal.wav b/Skins/++scylla funny mix EPIC/soft-hitnormal.wav new file mode 100644 index 00000000..39189848 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2cb5a623228d04f34bca58eb35df1406d7c6a05e87fd4694c4db8424f02f1d +size 41624 diff --git a/Skins/++scylla funny mix EPIC/soft-hitwhistle.wav b/Skins/++scylla funny mix EPIC/soft-hitwhistle.wav new file mode 100644 index 00000000..39189848 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2cb5a623228d04f34bca58eb35df1406d7c6a05e87fd4694c4db8424f02f1d +size 41624 diff --git a/Skins/++scylla funny mix EPIC/soft-sliderslide.wav b/Skins/++scylla funny mix EPIC/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/++scylla funny mix EPIC/soft-sliderslide2.wav b/Skins/++scylla funny mix EPIC/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/src/default-skin/soft-slidertick.wav b/Skins/++scylla funny mix EPIC/soft-slidertick.wav similarity index 100% rename from src/default-skin/soft-slidertick.wav rename to Skins/++scylla funny mix EPIC/soft-slidertick.wav diff --git a/Skins/++scylla funny mix EPIC/soft-sliderwhistle.wav b/Skins/++scylla funny mix EPIC/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/++scylla funny mix EPIC/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/++scylla funny mix EPIC/songselect-bottom@2x.png b/Skins/++scylla funny mix EPIC/songselect-bottom@2x.png new file mode 100644 index 00000000..aeb20b56 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb731ef7b2f048e4c9b700145542b3e71e14634090073d75efa1e04fa4b988cc +size 120 diff --git a/Skins/++scylla funny mix EPIC/songselect-top@2x.png b/Skins/++scylla funny mix EPIC/songselect-top@2x.png new file mode 100644 index 00000000..276de491 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/songselect-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c5b9d675f7884a0a768a532e5f9cd1f55cb829f92381b8bda2192c80f4d15c +size 14483 diff --git a/Skins/++scylla funny mix EPIC/spinner-approachcircle.png b/Skins/++scylla funny mix EPIC/spinner-approachcircle.png new file mode 100644 index 00000000..0b50e694 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331953917673bf4b919c7b6a7116493b0714b26eea482d6531606b333122efb5 +size 45054 diff --git a/Skins/++scylla funny mix EPIC/spinner-background.png b/Skins/++scylla funny mix EPIC/spinner-background.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/spinner-circle.png b/Skins/++scylla funny mix EPIC/spinner-circle.png new file mode 100644 index 00000000..59293918 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04378f8a33174f0d7296140958007ff38703e7fd7e6654e4a8028703fc3ac5bd +size 41292 diff --git a/Skins/++scylla funny mix EPIC/spinner-osu.png b/Skins/++scylla funny mix EPIC/spinner-osu.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/++scylla funny mix EPIC/spinner-rpm.png b/Skins/++scylla funny mix EPIC/spinner-rpm.png new file mode 100644 index 00000000..5ce716ce --- /dev/null +++ b/Skins/++scylla funny mix EPIC/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c2dae14f05513585353e6765aa331a6eaf65067530560893c05041b6ef303c +size 1129 diff --git a/Skins/++scylla funny mix EPIC/spinner-rpm@2x.png b/Skins/++scylla funny mix EPIC/spinner-rpm@2x.png new file mode 100644 index 00000000..2b72d261 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ebb662820759326004954903b09894a68603bdfe788c356cdc92bace63b377d +size 2708 diff --git a/Skins/++scylla funny mix EPIC/star.png b/Skins/++scylla funny mix EPIC/star.png new file mode 100644 index 00000000..ad3ae6be --- /dev/null +++ b/Skins/++scylla funny mix EPIC/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88e34b3d45be8437bd928de3b6f815b8cdc8db0a153ac569c0cea3672da05ee +size 1321 diff --git a/Skins/++scylla funny mix EPIC/star2.png b/Skins/++scylla funny mix EPIC/star2.png new file mode 100644 index 00000000..893aec16 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35e4490cb613fc2868a1e74d57131449659a57e1eba929f5d2bfe6f945121801 +size 272 diff --git a/Skins/++scylla funny mix EPIC/taikobigcircle.png b/Skins/++scylla funny mix EPIC/taikobigcircle.png new file mode 100644 index 00000000..5c182b9f --- /dev/null +++ b/Skins/++scylla funny mix EPIC/taikobigcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b3364c966f61e4c1257b7216251438e4a2ef7293e979e47713077abfd72256c +size 2504 diff --git a/Skins/++scylla funny mix EPIC/taikobigcircleoverlay.png b/Skins/++scylla funny mix EPIC/taikobigcircleoverlay.png new file mode 100644 index 00000000..b110a072 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/taikobigcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb2ea16dea2b69b5d716483ab71e40dd46e56d8b7bd59044100bf9db089c1ef2 +size 5581 diff --git a/Skins/++scylla funny mix EPIC/taikohitcircle.png b/Skins/++scylla funny mix EPIC/taikohitcircle.png new file mode 100644 index 00000000..7d15da37 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/taikohitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee2737d8b0ded2cdb80f1369c71305942a7aaf4132150f19b0d5e2dc050c683 +size 9547 diff --git a/Skins/++scylla funny mix EPIC/taikohitcircleoverlay.png b/Skins/++scylla funny mix EPIC/taikohitcircleoverlay.png new file mode 100644 index 00000000..68db07f2 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/taikohitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d805aa31119d569d32321248d5da04463bc9d4dc0679e4f7adcf8ed5adf0ee3c +size 19248 diff --git a/Skins/++scylla funny mix EPIC/welcome.ogg b/Skins/++scylla funny mix EPIC/welcome.ogg new file mode 100644 index 00000000..b9e6dc48 --- /dev/null +++ b/Skins/++scylla funny mix EPIC/welcome.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746a5fbd5f50a621d4811f20d7ca86383668e7fe6124ee3d8b0ec6622fe00653 +size 27023 diff --git a/Skins/- + morgan spring/Click-Short.wav b/Skins/- + morgan spring/Click-Short.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/Click-Short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/Drum-hitclap2.wav b/Skins/- + morgan spring/Drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- + morgan spring/Drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- + morgan spring/applause.wav b/Skins/- + morgan spring/applause.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- + morgan spring/approachcircle-.png b/Skins/- + morgan spring/approachcircle-.png new file mode 100644 index 00000000..e9755437 --- /dev/null +++ b/Skins/- + morgan spring/approachcircle-.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370ea3888a4304de92413be3b4d583aa86052f61492583a6fd61f5c592757f2e +size 20131 diff --git a/Skins/- + morgan spring/approachcircle.png b/Skins/- + morgan spring/approachcircle.png new file mode 100644 index 00000000..b83473ed --- /dev/null +++ b/Skins/- + morgan spring/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2dff6dec7fbe340d76f41f61b4821d44671c9a8b3e84389f3e6b9b31b8313df +size 4397 diff --git a/Skins/- + morgan spring/approachcircle@2x.png b/Skins/- + morgan spring/approachcircle@2x.png new file mode 100644 index 00000000..b15a7395 --- /dev/null +++ b/Skins/- + morgan spring/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e03358efd4fda1a5fe63670befa2ad9dc0dc37a846b43e3cfb71dc0a1cdb14 +size 10501 diff --git a/Skins/- + morgan spring/back-button-hover.wav b/Skins/- + morgan spring/back-button-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/back-button-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/button-left.png b/Skins/- + morgan spring/button-left.png new file mode 100644 index 00000000..33659402 --- /dev/null +++ b/Skins/- + morgan spring/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5992f9f3f16ed17872c5df7df72faee96d6e22d7caf990ca1ae47fbb9aadfa87 +size 1563 diff --git a/Skins/- + morgan spring/button-middle.png b/Skins/- + morgan spring/button-middle.png new file mode 100644 index 00000000..5bf7857e --- /dev/null +++ b/Skins/- + morgan spring/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce19c557771f2b0bee7480d45c4eaca712e33c529b25dec94f0f5e8cccd6b668 +size 3314 diff --git a/Skins/- + morgan spring/button-middle2.png b/Skins/- + morgan spring/button-middle2.png new file mode 100644 index 00000000..8506408d --- /dev/null +++ b/Skins/- + morgan spring/button-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2857720437f0195339dc08249298beed7f060e9eb331812d17cb1df1577149a +size 3641 diff --git a/Skins/- + morgan spring/button-right.png b/Skins/- + morgan spring/button-right.png new file mode 100644 index 00000000..2b63656f --- /dev/null +++ b/Skins/- + morgan spring/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6cbdeac0edf74a9e6d36ea9922b874e1ed56098b6f1f41120716bccf4611756 +size 3279 diff --git a/Skins/- + morgan spring/click-close.wav b/Skins/- + morgan spring/click-close.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/click-close.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/combobreak.wav b/Skins/- + morgan spring/combobreak.wav new file mode 100644 index 00000000..e30ba7b0 --- /dev/null +++ b/Skins/- + morgan spring/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:810bd3c2ae80310070e9560ec880cf34ec660fd3278c4aafc5ef03b841b2b16c +size 65770 diff --git a/Skins/- + morgan spring/comboburst.png b/Skins/- + morgan spring/comboburst.png new file mode 100644 index 00000000..195090a9 --- /dev/null +++ b/Skins/- + morgan spring/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66f175a6587cff30118d498bcb45a910e1b19ced188638b5fbf55ac5e28d635 +size 101744 diff --git a/Skins/- + morgan spring/comboburst.wav b/Skins/- + morgan spring/comboburst.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/- + morgan spring/comboburst.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/- + morgan spring/count1.png b/Skins/- + morgan spring/count1.png new file mode 100644 index 00000000..195090a9 --- /dev/null +++ b/Skins/- + morgan spring/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66f175a6587cff30118d498bcb45a910e1b19ced188638b5fbf55ac5e28d635 +size 101744 diff --git a/Skins/- + morgan spring/count1s.wav b/Skins/- + morgan spring/count1s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/count2.png b/Skins/- + morgan spring/count2.png new file mode 100644 index 00000000..195090a9 --- /dev/null +++ b/Skins/- + morgan spring/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66f175a6587cff30118d498bcb45a910e1b19ced188638b5fbf55ac5e28d635 +size 101744 diff --git a/Skins/- + morgan spring/count2s.WAV b/Skins/- + morgan spring/count2s.WAV new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/count2s.WAV @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/count3.png b/Skins/- + morgan spring/count3.png new file mode 100644 index 00000000..195090a9 --- /dev/null +++ b/Skins/- + morgan spring/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66f175a6587cff30118d498bcb45a910e1b19ced188638b5fbf55ac5e28d635 +size 101744 diff --git a/Skins/- + morgan spring/count3s.WAV b/Skins/- + morgan spring/count3s.WAV new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/count3s.WAV @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/cursor.png b/Skins/- + morgan spring/cursor.png new file mode 100644 index 00000000..7d9d87c9 --- /dev/null +++ b/Skins/- + morgan spring/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0680b9e5e32f1374696a51ff52964ec0647967ba7bd2ac2d020f59063403e800 +size 1380 diff --git a/Skins/- + morgan spring/cursortrail-.png b/Skins/- + morgan spring/cursortrail-.png new file mode 100644 index 00000000..2aa9756c --- /dev/null +++ b/Skins/- + morgan spring/cursortrail-.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b49ad43bc70234d0ca5e58d93b729652a1deac8bc7a31abaf528b322236b626 +size 19154 diff --git a/Skins/- + morgan spring/cursortrail.png b/Skins/- + morgan spring/cursortrail.png new file mode 100644 index 00000000..7baaf531 --- /dev/null +++ b/Skins/- + morgan spring/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6fb19ffad6a065fa2b706d3d944e24e6ed5cf648c05cf8143c4518ce0a4b9a4 +size 1146 diff --git a/Skins/- + morgan spring/default-0.png b/Skins/- + morgan spring/default-0.png new file mode 100644 index 00000000..68201d30 --- /dev/null +++ b/Skins/- + morgan spring/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c625aa31313f93e6d5e0639ba5616816b9b4affddfe32ac1890eb05633a854e2 +size 3317 diff --git a/Skins/- + morgan spring/default-0@2x.png b/Skins/- + morgan spring/default-0@2x.png new file mode 100644 index 00000000..8f0809e7 --- /dev/null +++ b/Skins/- + morgan spring/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fefe72fa11637a43e2108ac843da60b59333cb4d99a913bcf3c9104e418be867 +size 6864 diff --git a/Skins/- + morgan spring/default-1.png b/Skins/- + morgan spring/default-1.png new file mode 100644 index 00000000..1c87190a --- /dev/null +++ b/Skins/- + morgan spring/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254f24304d553b7242b9e2be96229930eb54e047222a885f877fdf71372922c4 +size 2108 diff --git a/Skins/- + morgan spring/default-1@2x.png b/Skins/- + morgan spring/default-1@2x.png new file mode 100644 index 00000000..a036047a --- /dev/null +++ b/Skins/- + morgan spring/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2860dea4a2e08c12b4246d82c8772ff58d8bf40d1c699b132515029bf071c8e0 +size 2800 diff --git a/Skins/- + morgan spring/default-2.png b/Skins/- + morgan spring/default-2.png new file mode 100644 index 00000000..63e7aa1d --- /dev/null +++ b/Skins/- + morgan spring/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324086b21094c841df3aed1d22e17003f684304db603e20eb740c241370add21 +size 3044 diff --git a/Skins/- + morgan spring/default-2@2x.png b/Skins/- + morgan spring/default-2@2x.png new file mode 100644 index 00000000..e937682f --- /dev/null +++ b/Skins/- + morgan spring/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903b3d4a84aaca7874729d4cfbfdc2d2fead1cc5be856f88db22f396ba2dfae5 +size 6501 diff --git a/Skins/- + morgan spring/default-3.png b/Skins/- + morgan spring/default-3.png new file mode 100644 index 00000000..3b5c98bb --- /dev/null +++ b/Skins/- + morgan spring/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3513108e93e1bca449b8b27df32cdaaf9e0cbd4590ce04703a321cba25b24397 +size 3026 diff --git a/Skins/- + morgan spring/default-3@2x.png b/Skins/- + morgan spring/default-3@2x.png new file mode 100644 index 00000000..ecec7d6f --- /dev/null +++ b/Skins/- + morgan spring/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f8f0c98c64d173fe104e6f4c384d752dcbe5147b4a4127690b5d4dec8be402 +size 7369 diff --git a/Skins/- + morgan spring/default-4.png b/Skins/- + morgan spring/default-4.png new file mode 100644 index 00000000..385d97d6 --- /dev/null +++ b/Skins/- + morgan spring/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48567ade837323be702fb53eadf1bceafd22153c2c37b19529916a3e30bab67 +size 2760 diff --git a/Skins/- + morgan spring/default-4@2x.png b/Skins/- + morgan spring/default-4@2x.png new file mode 100644 index 00000000..3267e4cd --- /dev/null +++ b/Skins/- + morgan spring/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18c9afcf4fe1c429d2d8bc228f4065d779f00886a754b4fa520e2c6587b1a86f +size 5360 diff --git a/Skins/- + morgan spring/default-5.png b/Skins/- + morgan spring/default-5.png new file mode 100644 index 00000000..4b331f18 --- /dev/null +++ b/Skins/- + morgan spring/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1bff176a91df535c9e332766e184184da8d171832eb115d15ee2ad59096d978 +size 3159 diff --git a/Skins/- + morgan spring/default-5@2x.png b/Skins/- + morgan spring/default-5@2x.png new file mode 100644 index 00000000..eeaead25 --- /dev/null +++ b/Skins/- + morgan spring/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f872a8a7cc4c7c532ad294d3d260173a75200a71b67aef553f4228e2e7656ba0 +size 6725 diff --git a/Skins/- + morgan spring/default-6.png b/Skins/- + morgan spring/default-6.png new file mode 100644 index 00000000..597a1ede --- /dev/null +++ b/Skins/- + morgan spring/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e2df7a14bbb633dda251bf2dead6008d4c411d06ca3c17de2ca01f04ca103e +size 2846 diff --git a/Skins/- + morgan spring/default-6@2x.png b/Skins/- + morgan spring/default-6@2x.png new file mode 100644 index 00000000..05ec27d5 --- /dev/null +++ b/Skins/- + morgan spring/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74eb5e7f4a95e9e9e0d398a353e365676b8d919a6a70df2d23886126441cf41f +size 6645 diff --git a/Skins/- + morgan spring/default-7.png b/Skins/- + morgan spring/default-7.png new file mode 100644 index 00000000..f774679c --- /dev/null +++ b/Skins/- + morgan spring/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:559443ad98e01badda315d1c4aa334c71166d6464c380b01a230eef9abb6e238 +size 2373 diff --git a/Skins/- + morgan spring/default-7@2x.png b/Skins/- + morgan spring/default-7@2x.png new file mode 100644 index 00000000..12be0dba --- /dev/null +++ b/Skins/- + morgan spring/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:077b51eb064e2f2cf40fc6bdb0af798b98f558ac1884d5c1db93dafd06ca4216 +size 4961 diff --git a/Skins/- + morgan spring/default-8.png b/Skins/- + morgan spring/default-8.png new file mode 100644 index 00000000..1e4d6113 --- /dev/null +++ b/Skins/- + morgan spring/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad71602f9dc54379e5b52edd555eb32f6cfdf86e65ea2da4237d50631aa849d6 +size 3354 diff --git a/Skins/- + morgan spring/default-8@2x.png b/Skins/- + morgan spring/default-8@2x.png new file mode 100644 index 00000000..e2f9518d --- /dev/null +++ b/Skins/- + morgan spring/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4210ffa5b96ae2c5405ac98dbf888df7feb495ca2ac08f6945bf068a7c2e23af +size 7193 diff --git a/Skins/- + morgan spring/default-9.png b/Skins/- + morgan spring/default-9.png new file mode 100644 index 00000000..63e507ba --- /dev/null +++ b/Skins/- + morgan spring/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25907f9115e0b44924013373be27de78c3a081e1ba7ed2eb38de6f382f673a7c +size 2995 diff --git a/Skins/- + morgan spring/default-9@2x.png b/Skins/- + morgan spring/default-9@2x.png new file mode 100644 index 00000000..750347ff --- /dev/null +++ b/Skins/- + morgan spring/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69990269dfd7ebb8f611f4868e26ff92db81300a3fc575c77578d8c5fb7587c0 +size 6668 diff --git a/Skins/- + morgan spring/desktop.ini b/Skins/- + morgan spring/desktop.ini new file mode 100644 index 00000000..a6c09d60 --- /dev/null +++ b/Skins/- + morgan spring/desktop.ini @@ -0,0 +1,52 @@ +[LocalizedFileNames] +taiko-soft-hitwhistle.wav=@taiko-soft-hitwhistle.wav,0 +taiko-soft-hitnormal.wav=@taiko-soft-hitnormal.wav,0 +taiko-soft-hitfinish.wav=@taiko-soft-hitfinish.wav,0 +taiko-soft-hitclap.wav=@taiko-soft-hitclap.wav,0 +taiko-normal-hitwhistle.wav=@taiko-normal-hitwhistle.wav,0 +taiko-normal-hitnormal.wav=@taiko-normal-hitnormal.wav,0 +taiko-normal-hitfinish.wav=@taiko-normal-hitfinish.wav,0 +taiko-normal-hitclap.wav=@taiko-normal-hitclap.wav,0 +soft-hitwhistle1.wav=@soft-hitwhistle1.wav,0 +soft-hitnormal4.wav=@soft-hitnormal4.wav,0 +soft-hitnormal3.wav=@soft-hitnormal3.wav,0 +shutter.wav=@shutter.wav,0 +match-start.wav=@match-start.wav,0 +match-leave.wav=@match-leave.wav,0 +match-join.wav=@match-join.wav,0 +match-confirm.wav=@match-confirm.wav,0 +count2s.WAV=@count2s.WAV,0 +spinnerbonus.wav=@spinnerbonus.wav,0 +spinnerspin.wav=@spinnerspin.wav,0 +soft-sliderwhistle.wav=@soft-sliderwhistle.wav,0 +soft-slidertick2.wav=@soft-slidertick2.wav,0 +soft-sliderslide.wav=@soft-sliderslide.wav,0 +soft-sliderslide2.wav=@soft-sliderslide2.wav,0 +soft-slidertick.wav=@soft-slidertick.wav,0 +soft-hitwhistle2.wav=@soft-hitwhistle2.wav,0 +soft-hitwhistle.wav=@soft-hitwhistle.wav,0 +soft-hitnormal2.wav=@soft-hitnormal2.wav,0 +soft-hitnormal1.wav=@soft-hitnormal1.wav,0 +soft-hitnormal.wav=@soft-hitnormal.wav,0 +soft-hitfinish.wav=@soft-hitfinish.wav,0 +soft-hitfinish2.wav=@soft-hitfinish2.wav,0 +soft-hitclap.wav=@soft-hitclap.wav,0 +soft-hitclap2.wav=@soft-hitclap2.wav,0 +normal-slidertick.wav=@normal-slidertick.wav,0 +normal-sliderwhistle.wav=@normal-sliderwhistle.wav,0 +normal-sliderslide2.wav=@normal-sliderslide2.wav,0 +normal-sliderslide.wav=@normal-sliderslide.wav,0 +normal-hitwhistle2.wav=@normal-hitwhistle2.wav,0 +normal-hitwhistle.wav=@normal-hitwhistle.wav,0 +normal-hitnormal2.wav=@normal-hitnormal2.wav,0 +normal-hitnormal.wav=@normal-hitnormal.wav,0 +normal-hitfinish2.wav=@normal-hitfinish2.wav,0 +normal-hitfinish.wav=@normal-hitfinish.wav,0 +normal-hitclap2.wav=@normal-hitclap2.wav,0 +normal-hitclap.wav=@normal-hitclap.wav,0 +menuhit.wav=@menuhit.wav,0 +menuclick.wav=@menuclick.wav,0 +menuback.wav=@menuback.wav,0 +gos.WAV=@gos.WAV,0 +failsound.wav=@failsound.wav,0 +count3s.WAV=@count3s.WAV,0 diff --git a/Skins/- + morgan spring/drum-hitclap.wav b/Skins/- + morgan spring/drum-hitclap.wav new file mode 100644 index 00000000..63915ce0 --- /dev/null +++ b/Skins/- + morgan spring/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba4d1f5035999c1cc90bcd6b6b30e81921ee4d904091d9bb79d6f83c01b185c +size 1506 diff --git a/src/default-skin/soft-hitnormal.wav b/Skins/- + morgan spring/drum-hitfinish.wav similarity index 100% rename from src/default-skin/soft-hitnormal.wav rename to Skins/- + morgan spring/drum-hitfinish.wav diff --git a/Skins/- + morgan spring/drum-hitnormal.wav b/Skins/- + morgan spring/drum-hitnormal.wav new file mode 100644 index 00000000..fc52a164 --- /dev/null +++ b/Skins/- + morgan spring/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b24e656be07d9722c0e00965492bc357810b3efa360e3ef64e49b3677f7dbe1 +size 20880 diff --git a/Skins/- + morgan spring/drum-hitnormal2.wav b/Skins/- + morgan spring/drum-hitnormal2.wav new file mode 100644 index 00000000..b12f3e43 --- /dev/null +++ b/Skins/- + morgan spring/drum-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42163a8d6b854abfcd795c4b9f093025f1899ff8d4c592ec0de7d938050d4a6d +size 89620 diff --git a/Skins/- + morgan spring/drum-hitnormalh.wav b/Skins/- + morgan spring/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/- + morgan spring/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/- + morgan spring/drum-hitwhistle.wav b/Skins/- + morgan spring/drum-hitwhistle.wav new file mode 100644 index 00000000..47bcb50f --- /dev/null +++ b/Skins/- + morgan spring/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4592a5431853090cde45f38936efa7fecf13b7d2b252d59b63eb890c94573c6d +size 25804 diff --git a/Skins/- + morgan spring/drum-hitwhistle2.wav b/Skins/- + morgan spring/drum-hitwhistle2.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/- + morgan spring/drum-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/- + morgan spring/drum-sliderslide.wav b/Skins/- + morgan spring/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- + morgan spring/drum-sliderslide2.wav b/Skins/- + morgan spring/drum-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/drum-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/drum-slidertick.wav b/Skins/- + morgan spring/drum-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- + morgan spring/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- + morgan spring/drum-slidertick2.wav b/Skins/- + morgan spring/drum-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/drum-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/drum-sliderwhistle.wav b/Skins/- + morgan spring/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/failsound.wav b/Skins/- + morgan spring/failsound.wav new file mode 100644 index 00000000..a401fd02 --- /dev/null +++ b/Skins/- + morgan spring/failsound.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:826da3ed08e89b84ef5f88f8a4e6de52a6176dec35dac0a214b03450cd386531 +size 170106 diff --git a/Skins/- + morgan spring/followpoint-0.png b/Skins/- + morgan spring/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/followpoint-1.png b/Skins/- + morgan spring/followpoint-1.png new file mode 100644 index 00000000..f07e1591 --- /dev/null +++ b/Skins/- + morgan spring/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f73fa168fbbcbb2222af573e425dc54c86224b0312433d78db400d3cafdcfba2 +size 425 diff --git a/Skins/- + morgan spring/followpoint-2.png b/Skins/- + morgan spring/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/followpoint.png b/Skins/- + morgan spring/followpoint.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/go.png b/Skins/- + morgan spring/go.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/gos.WAV b/Skins/- + morgan spring/gos.WAV new file mode 100644 index 00000000..f66f6864 --- /dev/null +++ b/Skins/- + morgan spring/gos.WAV @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a3eeaaf7e589acd14cf1a50c77e68789256dea0fbed2b2d93cb2a3657e7c5f +size 119730 diff --git a/Skins/- + morgan spring/hit0-0.png b/Skins/- + morgan spring/hit0-0.png new file mode 100644 index 00000000..a16a9a77 --- /dev/null +++ b/Skins/- + morgan spring/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c0842cf7ccb7d08bdf490728a0b602848b4305ae3a737ae313a5abea576462 +size 171 diff --git a/Skins/- + morgan spring/hit0-0@2x.png b/Skins/- + morgan spring/hit0-0@2x.png new file mode 100644 index 00000000..4938d957 --- /dev/null +++ b/Skins/- + morgan spring/hit0-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f906999e95d7257756179e5ac6e4eb5516a2d23b9bef2ab396f41bf029e8ab +size 236 diff --git a/Skins/- + morgan spring/hit0-1.png b/Skins/- + morgan spring/hit0-1.png new file mode 100644 index 00000000..ce53b1ca --- /dev/null +++ b/Skins/- + morgan spring/hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8911205ed6a8def8c7906c6083f22bcd17110db69f701ee670eb815c62ac75d +size 650 diff --git a/Skins/- + morgan spring/hit0-10.png b/Skins/- + morgan spring/hit0-10.png new file mode 100644 index 00000000..226905e5 --- /dev/null +++ b/Skins/- + morgan spring/hit0-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f8ae6f105ee72446ce0f514cfcee0f3a16dbfd73a958d495c3b9d62ee340f3 +size 1648 diff --git a/Skins/- + morgan spring/hit0-10@2x.png b/Skins/- + morgan spring/hit0-10@2x.png new file mode 100644 index 00000000..d952d6c9 --- /dev/null +++ b/Skins/- + morgan spring/hit0-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0522a85ef8de20480050785288c3dc0ff7c00fdf29175840da578ad04e37dd0 +size 4875 diff --git a/Skins/- + morgan spring/hit0-11.png b/Skins/- + morgan spring/hit0-11.png new file mode 100644 index 00000000..77fd353e --- /dev/null +++ b/Skins/- + morgan spring/hit0-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a34cc33826eabf1be91829cc87601566d1496060f3dfeda6077aae8b72a72a9 +size 1693 diff --git a/Skins/- + morgan spring/hit0-11@2x.png b/Skins/- + morgan spring/hit0-11@2x.png new file mode 100644 index 00000000..9c2793b3 --- /dev/null +++ b/Skins/- + morgan spring/hit0-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fae817d1b77cf5099c86fbe0e442ea5a57635556d1985441fbe3851cb81f9b2 +size 4910 diff --git a/Skins/- + morgan spring/hit0-12.png b/Skins/- + morgan spring/hit0-12.png new file mode 100644 index 00000000..85eb216d --- /dev/null +++ b/Skins/- + morgan spring/hit0-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5162df5df74b89cb41d0bc8207abb2f14fcffde33ccab14ca57521e985123d +size 1721 diff --git a/Skins/- + morgan spring/hit0-12@2x.png b/Skins/- + morgan spring/hit0-12@2x.png new file mode 100644 index 00000000..6ff6fb52 --- /dev/null +++ b/Skins/- + morgan spring/hit0-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2188db81a37eb519841f36a562659173667a15aa166639d923af84030a571845 +size 5337 diff --git a/Skins/- + morgan spring/hit0-13.png b/Skins/- + morgan spring/hit0-13.png new file mode 100644 index 00000000..c39c31d9 --- /dev/null +++ b/Skins/- + morgan spring/hit0-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e2190cd389cbf8d34d4db251fc302bcc99c3f85ffcca9d6be58798b7d64e0f +size 1708 diff --git a/Skins/- + morgan spring/hit0-13@2x.png b/Skins/- + morgan spring/hit0-13@2x.png new file mode 100644 index 00000000..2dfc338e --- /dev/null +++ b/Skins/- + morgan spring/hit0-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635365c630c82e4d55cd857c70efda917e6b6a6427a099c51b582be5593f6716 +size 5177 diff --git a/Skins/- + morgan spring/hit0-14.png b/Skins/- + morgan spring/hit0-14.png new file mode 100644 index 00000000..6169f83d --- /dev/null +++ b/Skins/- + morgan spring/hit0-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c2656afe29eff3c291e761f356a65316a6a07d6ac511a74386e0377ad4fcff8 +size 1744 diff --git a/Skins/- + morgan spring/hit0-14@2x.png b/Skins/- + morgan spring/hit0-14@2x.png new file mode 100644 index 00000000..d25495ba --- /dev/null +++ b/Skins/- + morgan spring/hit0-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d67a2237114fb80605412e0f905c8faea1b726a2505d24aaec9e05c4bb15d2f0 +size 5197 diff --git a/Skins/- + morgan spring/hit0-15.png b/Skins/- + morgan spring/hit0-15.png new file mode 100644 index 00000000..985b0601 --- /dev/null +++ b/Skins/- + morgan spring/hit0-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9571105a94f581d621ea9fd40bb9f33fd435b994c0ac3858f3c1aaea57422241 +size 1820 diff --git a/Skins/- + morgan spring/hit0-15@2x.png b/Skins/- + morgan spring/hit0-15@2x.png new file mode 100644 index 00000000..3fcf96ca --- /dev/null +++ b/Skins/- + morgan spring/hit0-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced7d02c5a7bf89abbce80b9f9c08e7b5ca61ce0c7fd572a83fb55c6c49d8a00 +size 5332 diff --git a/Skins/- + morgan spring/hit0-16.png b/Skins/- + morgan spring/hit0-16.png new file mode 100644 index 00000000..df5076ab --- /dev/null +++ b/Skins/- + morgan spring/hit0-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7692b73eddaee0a39b02b25c0d78b3a6be162f7976ee0740ef79249d61e6e32b +size 1879 diff --git a/Skins/- + morgan spring/hit0-16@2x.png b/Skins/- + morgan spring/hit0-16@2x.png new file mode 100644 index 00000000..6377cde7 --- /dev/null +++ b/Skins/- + morgan spring/hit0-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63e16cef90de03d29de51e1ab9efa328707dd04056ed2673fc9f3d6a31e8f5f6 +size 5341 diff --git a/Skins/- + morgan spring/hit0-17.png b/Skins/- + morgan spring/hit0-17.png new file mode 100644 index 00000000..db4ab340 --- /dev/null +++ b/Skins/- + morgan spring/hit0-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8709fe5de07462c1d147a1b4ebdcdfb7362dac94ea67543e981bc8dfd79210cf +size 1928 diff --git a/Skins/- + morgan spring/hit0-17@2x.png b/Skins/- + morgan spring/hit0-17@2x.png new file mode 100644 index 00000000..0cc2eb6f --- /dev/null +++ b/Skins/- + morgan spring/hit0-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7a8aed0f525802a4aebc871988f78ebdd2c01f951d3e5c825543c9c1fc8283 +size 5580 diff --git a/Skins/- + morgan spring/hit0-18.png b/Skins/- + morgan spring/hit0-18.png new file mode 100644 index 00000000..3f71ffc5 --- /dev/null +++ b/Skins/- + morgan spring/hit0-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc13a8d8057420762ad1aaf4eb5d4ff37a06aeb67db83e4945a5d06cf8f8987 +size 1816 diff --git a/Skins/- + morgan spring/hit0-18@2x.png b/Skins/- + morgan spring/hit0-18@2x.png new file mode 100644 index 00000000..c1719878 --- /dev/null +++ b/Skins/- + morgan spring/hit0-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:536d55b08b27430cba05ff67f83496290cb814a043a381daa09072b4823e314a +size 5595 diff --git a/Skins/- + morgan spring/hit0-19.png b/Skins/- + morgan spring/hit0-19.png new file mode 100644 index 00000000..bb473ae7 --- /dev/null +++ b/Skins/- + morgan spring/hit0-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad0f00c90996d483f29d68604faa53bdf14ecddeffeef6591c75b49c7a627fa +size 1786 diff --git a/Skins/- + morgan spring/hit0-19@2x.png b/Skins/- + morgan spring/hit0-19@2x.png new file mode 100644 index 00000000..e58cd738 --- /dev/null +++ b/Skins/- + morgan spring/hit0-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475e0328068ed504273096ba0322a1461048464cfd5242a6e1ee38887568e7e6 +size 5454 diff --git a/Skins/- + morgan spring/hit0-1@2x.png b/Skins/- + morgan spring/hit0-1@2x.png new file mode 100644 index 00000000..91d52044 --- /dev/null +++ b/Skins/- + morgan spring/hit0-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f0562b15c58fd0900b264e83917fda083e5378543baa8fd0b3e5ba50fabdf2 +size 4025 diff --git a/Skins/- + morgan spring/hit0-2.png b/Skins/- + morgan spring/hit0-2.png new file mode 100644 index 00000000..b32a8918 --- /dev/null +++ b/Skins/- + morgan spring/hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde23b29736d0318dcf4ef399f099787197f1064c94f436f300daa070b383eae +size 980 diff --git a/Skins/- + morgan spring/hit0-20.png b/Skins/- + morgan spring/hit0-20.png new file mode 100644 index 00000000..7f1d9ed8 --- /dev/null +++ b/Skins/- + morgan spring/hit0-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a47196cddde7755860fb1ae9d66c90ada28b779e290b8111570e9d223a09698f +size 1864 diff --git a/Skins/- + morgan spring/hit0-20@2x.png b/Skins/- + morgan spring/hit0-20@2x.png new file mode 100644 index 00000000..0fb81514 --- /dev/null +++ b/Skins/- + morgan spring/hit0-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa74d8fb6d00aa10b8b1410a476756669b158b0bd1cf856f1cff4d87345c9461 +size 5691 diff --git a/Skins/- + morgan spring/hit0-21.png b/Skins/- + morgan spring/hit0-21.png new file mode 100644 index 00000000..8d003190 --- /dev/null +++ b/Skins/- + morgan spring/hit0-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc607c239d93f49c7477ebd4681c9fba15986e4067ad22a65ad03162b02ac2e +size 1929 diff --git a/Skins/- + morgan spring/hit0-21@2x.png b/Skins/- + morgan spring/hit0-21@2x.png new file mode 100644 index 00000000..47d13705 --- /dev/null +++ b/Skins/- + morgan spring/hit0-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e76b52e553e1e9e25ab5e80ea89224499afd5ca9ef3db1c8c8f20fa33f25342 +size 5836 diff --git a/Skins/- + morgan spring/hit0-22.png b/Skins/- + morgan spring/hit0-22.png new file mode 100644 index 00000000..9c7579ec --- /dev/null +++ b/Skins/- + morgan spring/hit0-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1094472a1d656e7bdb0f090d08efbd5e98024136162e3061eb79335922edc775 +size 1970 diff --git a/Skins/- + morgan spring/hit0-22@2x.png b/Skins/- + morgan spring/hit0-22@2x.png new file mode 100644 index 00000000..3768bb56 --- /dev/null +++ b/Skins/- + morgan spring/hit0-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79d0760e4532f603223217304096e932dd10cf3a960b0b9eeba3999276b44b16 +size 5742 diff --git a/Skins/- + morgan spring/hit0-23.png b/Skins/- + morgan spring/hit0-23.png new file mode 100644 index 00000000..e85377cc --- /dev/null +++ b/Skins/- + morgan spring/hit0-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1863bf67dbabb81954d641652a3aa99bef41f65d87a61e7bce646a2d21e2488d +size 1975 diff --git a/Skins/- + morgan spring/hit0-23@2x.png b/Skins/- + morgan spring/hit0-23@2x.png new file mode 100644 index 00000000..d596bcfc --- /dev/null +++ b/Skins/- + morgan spring/hit0-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cda66a5fe31b403fc76427e05d9ae3cf11a136857da014d0be11301c952ea39 +size 5821 diff --git a/Skins/- + morgan spring/hit0-24.png b/Skins/- + morgan spring/hit0-24.png new file mode 100644 index 00000000..346f488e --- /dev/null +++ b/Skins/- + morgan spring/hit0-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df63d54f851ea0de9bd43c9a344a263cbdd416790fb325718a8ed1c7eee4bc0e +size 1984 diff --git a/Skins/- + morgan spring/hit0-24@2x.png b/Skins/- + morgan spring/hit0-24@2x.png new file mode 100644 index 00000000..0139d033 --- /dev/null +++ b/Skins/- + morgan spring/hit0-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6df83dc7d0dc97852ed776007f73f10f682bec08c3a7ca0d8302f41bd2245d +size 5850 diff --git a/Skins/- + morgan spring/hit0-25.png b/Skins/- + morgan spring/hit0-25.png new file mode 100644 index 00000000..a9669b88 --- /dev/null +++ b/Skins/- + morgan spring/hit0-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db19ac04ca5bbf234603ce00b26bd96b85620b8558dea0923bbaa7bef36b6e33 +size 1945 diff --git a/Skins/- + morgan spring/hit0-25@2x.png b/Skins/- + morgan spring/hit0-25@2x.png new file mode 100644 index 00000000..c77c2d7f --- /dev/null +++ b/Skins/- + morgan spring/hit0-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cde7685ca143d7433a83ee5d9aaee0a9bdb27ff7cb57697c435accda190f4d8 +size 6046 diff --git a/Skins/- + morgan spring/hit0-26.png b/Skins/- + morgan spring/hit0-26.png new file mode 100644 index 00000000..29edd139 --- /dev/null +++ b/Skins/- + morgan spring/hit0-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51bc70cfe47af0b854c9c7c4fdbec649c27cf3e6eff5363015efacf27782418d +size 1918 diff --git a/Skins/- + morgan spring/hit0-26@2x.png b/Skins/- + morgan spring/hit0-26@2x.png new file mode 100644 index 00000000..ec398866 --- /dev/null +++ b/Skins/- + morgan spring/hit0-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d909b2ef78b5e5ad3487ce0d7ca2a89652b1a4d190191140a0245714670fe9f +size 5798 diff --git a/Skins/- + morgan spring/hit0-27.png b/Skins/- + morgan spring/hit0-27.png new file mode 100644 index 00000000..6c41f63b --- /dev/null +++ b/Skins/- + morgan spring/hit0-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9accc04d9563950ae5d9e8d190245c0a1a369ea93a0f655967d745da31daf3b +size 1908 diff --git a/Skins/- + morgan spring/hit0-27@2x.png b/Skins/- + morgan spring/hit0-27@2x.png new file mode 100644 index 00000000..9ef86cf0 --- /dev/null +++ b/Skins/- + morgan spring/hit0-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b35ef5ab2bb151a27d5cad25e5165033a68b2f884266d6c1c225b61671c78f +size 5842 diff --git a/Skins/- + morgan spring/hit0-28.png b/Skins/- + morgan spring/hit0-28.png new file mode 100644 index 00000000..e2f2c618 --- /dev/null +++ b/Skins/- + morgan spring/hit0-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42351cb436023dccbc2a5c589a144877decc29249ca9adb6a96be4e4ae7c279d +size 1881 diff --git a/Skins/- + morgan spring/hit0-28@2x.png b/Skins/- + morgan spring/hit0-28@2x.png new file mode 100644 index 00000000..f0a7821c --- /dev/null +++ b/Skins/- + morgan spring/hit0-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12255ed5990b17ceb21d707c7544b1fafbb453c75eddb1bf772da83dbff74c00 +size 5829 diff --git a/Skins/- + morgan spring/hit0-29.png b/Skins/- + morgan spring/hit0-29.png new file mode 100644 index 00000000..c561437d --- /dev/null +++ b/Skins/- + morgan spring/hit0-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595970018df0e914d62d0f38ed7c961a80f9fb5fe719be083467be70229d9d97 +size 2015 diff --git a/Skins/- + morgan spring/hit0-29@2x.png b/Skins/- + morgan spring/hit0-29@2x.png new file mode 100644 index 00000000..1c73ee14 --- /dev/null +++ b/Skins/- + morgan spring/hit0-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c29130412241e8a71e54a3fa4c4cd11cd6a23b9fc37dab485ba60e9c7d1f78 +size 6036 diff --git a/Skins/- + morgan spring/hit0-2@2x.png b/Skins/- + morgan spring/hit0-2@2x.png new file mode 100644 index 00000000..1a3cf5cd --- /dev/null +++ b/Skins/- + morgan spring/hit0-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd60523ecafd03bc37b74ee4861d7981baf7e886cd143e92083312fa1f260442 +size 4031 diff --git a/Skins/- + morgan spring/hit0-3.png b/Skins/- + morgan spring/hit0-3.png new file mode 100644 index 00000000..9a6d0b29 --- /dev/null +++ b/Skins/- + morgan spring/hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4042480543f8cff071ca65274c574f247c0f7e13c18af1e18659481385b3343f +size 1272 diff --git a/Skins/- + morgan spring/hit0-30.png b/Skins/- + morgan spring/hit0-30.png new file mode 100644 index 00000000..f814e682 --- /dev/null +++ b/Skins/- + morgan spring/hit0-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c87b46c35f5ec25811880cf539ab161786a589f8e92ced2d19be00fa52015f35 +size 2023 diff --git a/Skins/- + morgan spring/hit0-30@2x.png b/Skins/- + morgan spring/hit0-30@2x.png new file mode 100644 index 00000000..e650cc63 --- /dev/null +++ b/Skins/- + morgan spring/hit0-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df39d9601f2d8a15b24e664f8e8385fb59fbb2a55325e20b412e61cab0008dbb +size 6030 diff --git a/Skins/- + morgan spring/hit0-31.png b/Skins/- + morgan spring/hit0-31.png new file mode 100644 index 00000000..0a6cd1fe --- /dev/null +++ b/Skins/- + morgan spring/hit0-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3084b1741d7741a083159a841d9005d2ecb81ff7ba816ba5c72cce4ed244fb3f +size 2017 diff --git a/Skins/- + morgan spring/hit0-31@2x.png b/Skins/- + morgan spring/hit0-31@2x.png new file mode 100644 index 00000000..a9630eb6 --- /dev/null +++ b/Skins/- + morgan spring/hit0-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22610a88dd65ed38c5281801bc23b655efa2151ee7e21f454ed616cce75abdd5 +size 6013 diff --git a/Skins/- + morgan spring/hit0-32.png b/Skins/- + morgan spring/hit0-32.png new file mode 100644 index 00000000..4e3efc34 --- /dev/null +++ b/Skins/- + morgan spring/hit0-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1927b7b199325d7579905e3ff5fa6037fd923290be80cee7a55906247d0016d +size 1986 diff --git a/Skins/- + morgan spring/hit0-32@2x.png b/Skins/- + morgan spring/hit0-32@2x.png new file mode 100644 index 00000000..e0ecb615 --- /dev/null +++ b/Skins/- + morgan spring/hit0-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c9b6a0d66fe8ea408288b985f30724f276d0358c75f44546a485b2075547914 +size 5970 diff --git a/Skins/- + morgan spring/hit0-33.png b/Skins/- + morgan spring/hit0-33.png new file mode 100644 index 00000000..d3720284 --- /dev/null +++ b/Skins/- + morgan spring/hit0-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139c47e02da5ec6ae29429ee0ddca64ea3e6e4704bb16e8e1b5cc394d7b3d07c +size 1958 diff --git a/Skins/- + morgan spring/hit0-33@2x.png b/Skins/- + morgan spring/hit0-33@2x.png new file mode 100644 index 00000000..ac062757 --- /dev/null +++ b/Skins/- + morgan spring/hit0-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e2ea50b381e9151723c904fc109d5f56d07dc11b9a73687d1b03dba63ebd2d +size 5867 diff --git a/Skins/- + morgan spring/hit0-34.png b/Skins/- + morgan spring/hit0-34.png new file mode 100644 index 00000000..e89a92c5 --- /dev/null +++ b/Skins/- + morgan spring/hit0-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a836aa1d476d972dc6360d3e6e693f5e6b4f1dc245530cfd7d5c279e65a76cac +size 1952 diff --git a/Skins/- + morgan spring/hit0-34@2x.png b/Skins/- + morgan spring/hit0-34@2x.png new file mode 100644 index 00000000..64c7afa1 --- /dev/null +++ b/Skins/- + morgan spring/hit0-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f02700f5766561ae414bd1cece6784f3427d1a9268dcbb12a4c7e6656979d38 +size 5762 diff --git a/Skins/- + morgan spring/hit0-35.png b/Skins/- + morgan spring/hit0-35.png new file mode 100644 index 00000000..54c046ac --- /dev/null +++ b/Skins/- + morgan spring/hit0-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c42db07ca5fa3228660302bace500e4fb5869595d45e42c6ee83f760bdf21c +size 1894 diff --git a/Skins/- + morgan spring/hit0-35@2x.png b/Skins/- + morgan spring/hit0-35@2x.png new file mode 100644 index 00000000..6591becc --- /dev/null +++ b/Skins/- + morgan spring/hit0-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a9ee2e62180f2177594a173f26ddfb4c20fa494711828bf97b4cb37869d71b +size 5619 diff --git a/Skins/- + morgan spring/hit0-36.png b/Skins/- + morgan spring/hit0-36.png new file mode 100644 index 00000000..f95ea6f9 --- /dev/null +++ b/Skins/- + morgan spring/hit0-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b1920aaf943936ac4d5702debb662b0a22fe512afaa650953633230c4f962f4 +size 1787 diff --git a/Skins/- + morgan spring/hit0-36@2x.png b/Skins/- + morgan spring/hit0-36@2x.png new file mode 100644 index 00000000..24590b12 --- /dev/null +++ b/Skins/- + morgan spring/hit0-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743b5ab7a2573a2ac92507ba8c44c6292eed41612e39ffb3ca19daa62842d6af +size 5576 diff --git a/Skins/- + morgan spring/hit0-37.png b/Skins/- + morgan spring/hit0-37.png new file mode 100644 index 00000000..5235d0b2 --- /dev/null +++ b/Skins/- + morgan spring/hit0-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5b50dae67dc0bf2e2e022beb8b1f40896cc52704a946477e8f0f2591cf23b4 +size 1756 diff --git a/Skins/- + morgan spring/hit0-37@2x.png b/Skins/- + morgan spring/hit0-37@2x.png new file mode 100644 index 00000000..33db2977 --- /dev/null +++ b/Skins/- + morgan spring/hit0-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdbc3f9d35d9c5b2ea9dde7456f099752c0636409a52e2ffcd80100ac4a2d2a8 +size 5505 diff --git a/Skins/- + morgan spring/hit0-38.png b/Skins/- + morgan spring/hit0-38.png new file mode 100644 index 00000000..84cb2eeb --- /dev/null +++ b/Skins/- + morgan spring/hit0-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:000cc8e3dfc4d787e07f3b7da2af28fbfe64e351e75e4468271378bef485167c +size 1528 diff --git a/Skins/- + morgan spring/hit0-38@2x.png b/Skins/- + morgan spring/hit0-38@2x.png new file mode 100644 index 00000000..002d2661 --- /dev/null +++ b/Skins/- + morgan spring/hit0-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd7315bf765b1e62fd57d1cc37fa80d196867c9e57ddbf1d52ee63bfea5eb6f +size 5368 diff --git a/Skins/- + morgan spring/hit0-39.png b/Skins/- + morgan spring/hit0-39.png new file mode 100644 index 00000000..3c390bb8 --- /dev/null +++ b/Skins/- + morgan spring/hit0-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d73b7a2ab2fdf8967b1f3570291b654bafe8c63ff42d25f77aa1c66335095c2 +size 1082 diff --git a/Skins/- + morgan spring/hit0-39@2x.png b/Skins/- + morgan spring/hit0-39@2x.png new file mode 100644 index 00000000..8e9955c5 --- /dev/null +++ b/Skins/- + morgan spring/hit0-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47fbcad3bec0cbec85cba485bb0ae93535143eacc0e9d64e5937634ca4aeafa6 +size 5191 diff --git a/Skins/- + morgan spring/hit0-3@2x.png b/Skins/- + morgan spring/hit0-3@2x.png new file mode 100644 index 00000000..7beb6a7c --- /dev/null +++ b/Skins/- + morgan spring/hit0-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a73b5263a11ab1ee28c08b64be1af139bc9316d5be91f55a14fc22f9e74351d0 +size 4158 diff --git a/Skins/- + morgan spring/hit0-4.png b/Skins/- + morgan spring/hit0-4.png new file mode 100644 index 00000000..3823ea39 --- /dev/null +++ b/Skins/- + morgan spring/hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e10e945b60e42a14a9822c53911215e62e490a5916dc0f9b3c92147890bc19 +size 1416 diff --git a/Skins/- + morgan spring/hit0-40.png b/Skins/- + morgan spring/hit0-40.png new file mode 100644 index 00000000..a16a9a77 --- /dev/null +++ b/Skins/- + morgan spring/hit0-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c0842cf7ccb7d08bdf490728a0b602848b4305ae3a737ae313a5abea576462 +size 171 diff --git a/Skins/- + morgan spring/hit0-40@2x.png b/Skins/- + morgan spring/hit0-40@2x.png new file mode 100644 index 00000000..4938d957 --- /dev/null +++ b/Skins/- + morgan spring/hit0-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f906999e95d7257756179e5ac6e4eb5516a2d23b9bef2ab396f41bf029e8ab +size 236 diff --git a/Skins/- + morgan spring/hit0-4@2x.png b/Skins/- + morgan spring/hit0-4@2x.png new file mode 100644 index 00000000..8a95667d --- /dev/null +++ b/Skins/- + morgan spring/hit0-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3cb97b902197378988aa6d3c906d8ab3075bd01458cc3964065492cecc84ed +size 4312 diff --git a/Skins/- + morgan spring/hit0-5.png b/Skins/- + morgan spring/hit0-5.png new file mode 100644 index 00000000..89247f22 --- /dev/null +++ b/Skins/- + morgan spring/hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb7b7c450a0b30280f4ff7e8609396e1dec3f8fd7b781c826771fb7e67936e7 +size 1448 diff --git a/Skins/- + morgan spring/hit0-5@2x.png b/Skins/- + morgan spring/hit0-5@2x.png new file mode 100644 index 00000000..ac533476 --- /dev/null +++ b/Skins/- + morgan spring/hit0-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82fd3e61797b5f3d05b6ced0d42b397b08370c09cf6e1db13caf9500756f781 +size 4362 diff --git a/Skins/- + morgan spring/hit0-6.png b/Skins/- + morgan spring/hit0-6.png new file mode 100644 index 00000000..5f0fa5fe --- /dev/null +++ b/Skins/- + morgan spring/hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8677a637d4c4d72de254fd06be4e099d742c076935b80c78fe79ff4d1c3b604 +size 1431 diff --git a/Skins/- + morgan spring/hit0-6@2x.png b/Skins/- + morgan spring/hit0-6@2x.png new file mode 100644 index 00000000..281768de --- /dev/null +++ b/Skins/- + morgan spring/hit0-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b1883ee65b3d4bf319a1dc470465229e55f0fddd566680f014070bebd7f0bc +size 4656 diff --git a/Skins/- + morgan spring/hit0-7.png b/Skins/- + morgan spring/hit0-7.png new file mode 100644 index 00000000..05e9de3e --- /dev/null +++ b/Skins/- + morgan spring/hit0-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f48ef659508a9cb7574b547ca9958127e614615debf4196be2e0fd190eb500ef +size 1502 diff --git a/Skins/- + morgan spring/hit0-7@2x.png b/Skins/- + morgan spring/hit0-7@2x.png new file mode 100644 index 00000000..2daf28e3 --- /dev/null +++ b/Skins/- + morgan spring/hit0-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81daec093a95058e059a22efdfb14b52f6af29eab830263ecb09751befe4e72e +size 4530 diff --git a/Skins/- + morgan spring/hit0-8.png b/Skins/- + morgan spring/hit0-8.png new file mode 100644 index 00000000..9c9f02b6 --- /dev/null +++ b/Skins/- + morgan spring/hit0-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:285918ee4f0593a48926e781f6d6513b972f3ecb42dd2782876913dab7022115 +size 1643 diff --git a/Skins/- + morgan spring/hit0-8@2x.png b/Skins/- + morgan spring/hit0-8@2x.png new file mode 100644 index 00000000..260a4ea1 --- /dev/null +++ b/Skins/- + morgan spring/hit0-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347241b23e13aff250309327257d64cdcdb17cf5e2f02ced12ed4eedb43f8d85 +size 4680 diff --git a/Skins/- + morgan spring/hit0-9.png b/Skins/- + morgan spring/hit0-9.png new file mode 100644 index 00000000..87722519 --- /dev/null +++ b/Skins/- + morgan spring/hit0-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f62e9528daa05960e59a6792d0bac407869d9b1562206953cc2b80ac022ae7 +size 1557 diff --git a/Skins/- + morgan spring/hit0-9@2x.png b/Skins/- + morgan spring/hit0-9@2x.png new file mode 100644 index 00000000..b8b9ec66 --- /dev/null +++ b/Skins/- + morgan spring/hit0-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fad889353c3c6f38b292f1df7aa19f7c4d585e5671047cca1c2419e684f69aac +size 4920 diff --git a/Skins/- + morgan spring/hit0.png b/Skins/- + morgan spring/hit0.png new file mode 100644 index 00000000..92607da3 --- /dev/null +++ b/Skins/- + morgan spring/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cdf31febce4c22f08aaf2893a98a93d8a0034261e11351e399be356c0304cff +size 4625 diff --git a/Skins/- + morgan spring/hit0@2x.png b/Skins/- + morgan spring/hit0@2x.png new file mode 100644 index 00000000..7d3bb0ea --- /dev/null +++ b/Skins/- + morgan spring/hit0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9afc7f5d99e83a4828f47cc7a21b90c0a58fc59e82d49c96d250aff5708646 +size 6681 diff --git a/Skins/- + morgan spring/hit100-0.png b/Skins/- + morgan spring/hit100-0.png new file mode 100644 index 00000000..a16a9a77 --- /dev/null +++ b/Skins/- + morgan spring/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c0842cf7ccb7d08bdf490728a0b602848b4305ae3a737ae313a5abea576462 +size 171 diff --git a/Skins/- + morgan spring/hit100-0@2x.png b/Skins/- + morgan spring/hit100-0@2x.png new file mode 100644 index 00000000..4938d957 --- /dev/null +++ b/Skins/- + morgan spring/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f906999e95d7257756179e5ac6e4eb5516a2d23b9bef2ab396f41bf029e8ab +size 236 diff --git a/Skins/- + morgan spring/hit100-1.png b/Skins/- + morgan spring/hit100-1.png new file mode 100644 index 00000000..ff2e516e --- /dev/null +++ b/Skins/- + morgan spring/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872b329050a8cf4c760aa968ca94efcea82bd5757524e8de3c83d125c733a9a7 +size 663 diff --git a/Skins/- + morgan spring/hit100-10.png b/Skins/- + morgan spring/hit100-10.png new file mode 100644 index 00000000..a14f4cc4 --- /dev/null +++ b/Skins/- + morgan spring/hit100-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57db1805d1843c1b38dc1f60473a557478d2d8d68e9d1074bfb169963d23f60 +size 1691 diff --git a/Skins/- + morgan spring/hit100-10@2x.png b/Skins/- + morgan spring/hit100-10@2x.png new file mode 100644 index 00000000..2d3d6f69 --- /dev/null +++ b/Skins/- + morgan spring/hit100-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078dc1ef9fc7f143972a7ca5ee4f62e4d76db993748071fd2018c360d7cd8271 +size 5034 diff --git a/Skins/- + morgan spring/hit100-11.png b/Skins/- + morgan spring/hit100-11.png new file mode 100644 index 00000000..45950540 --- /dev/null +++ b/Skins/- + morgan spring/hit100-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093f89e5c9bd662123733480f25406ed2ec7629a916c21905fd3c3075bb9ffd5 +size 1670 diff --git a/Skins/- + morgan spring/hit100-11@2x.png b/Skins/- + morgan spring/hit100-11@2x.png new file mode 100644 index 00000000..d670d67f --- /dev/null +++ b/Skins/- + morgan spring/hit100-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e94ab6395038f4cd98582fb89495408662221cc358af93bdb4542e919bc00e +size 5103 diff --git a/Skins/- + morgan spring/hit100-12.png b/Skins/- + morgan spring/hit100-12.png new file mode 100644 index 00000000..eec1dd69 --- /dev/null +++ b/Skins/- + morgan spring/hit100-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519c62d95e3a855b3a9eef00bfdd781e83a6dff8d61771bbefe1a61b01b097b1 +size 1744 diff --git a/Skins/- + morgan spring/hit100-12@2x.png b/Skins/- + morgan spring/hit100-12@2x.png new file mode 100644 index 00000000..c3e031c8 --- /dev/null +++ b/Skins/- + morgan spring/hit100-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5308e667a4ce21552848795186ab2fbe00d42c43277c6563fc4f4ee77fe9a835 +size 5336 diff --git a/Skins/- + morgan spring/hit100-13.png b/Skins/- + morgan spring/hit100-13.png new file mode 100644 index 00000000..81ba1a84 --- /dev/null +++ b/Skins/- + morgan spring/hit100-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6508ebd0e41b44e1b354ce01dd19fde3a80da06dd81c00b408379c85359f8251 +size 1705 diff --git a/Skins/- + morgan spring/hit100-13@2x.png b/Skins/- + morgan spring/hit100-13@2x.png new file mode 100644 index 00000000..4d6b68b4 --- /dev/null +++ b/Skins/- + morgan spring/hit100-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dce26087c13e8114c9fb4a2eb564a5def39e4950dffad31fcb5679d6ba4ae26 +size 5441 diff --git a/Skins/- + morgan spring/hit100-14.png b/Skins/- + morgan spring/hit100-14.png new file mode 100644 index 00000000..c384f8e1 --- /dev/null +++ b/Skins/- + morgan spring/hit100-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0536fca67e8c8273470a3f59a3d9c9604f5687aedd591e7869bc5463d82d97 +size 1754 diff --git a/Skins/- + morgan spring/hit100-14@2x.png b/Skins/- + morgan spring/hit100-14@2x.png new file mode 100644 index 00000000..14f85e42 --- /dev/null +++ b/Skins/- + morgan spring/hit100-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce34e5353da5e0d9201e426f65c498bcbf2a8743e34b71712f6a430db633b1c8 +size 5145 diff --git a/Skins/- + morgan spring/hit100-15.png b/Skins/- + morgan spring/hit100-15.png new file mode 100644 index 00000000..487150c3 --- /dev/null +++ b/Skins/- + morgan spring/hit100-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feac5026df095db9be12081a4ea43ce8d89b7ed8f7683d503fce937d61de4a6b +size 1857 diff --git a/Skins/- + morgan spring/hit100-15@2x.png b/Skins/- + morgan spring/hit100-15@2x.png new file mode 100644 index 00000000..73550f71 --- /dev/null +++ b/Skins/- + morgan spring/hit100-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32515568dc88659ed715345941eba260247c6373ed6297f5b92ad2eb6db843a6 +size 5506 diff --git a/Skins/- + morgan spring/hit100-16.png b/Skins/- + morgan spring/hit100-16.png new file mode 100644 index 00000000..d281f260 --- /dev/null +++ b/Skins/- + morgan spring/hit100-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c85499c2e59b2e602552b30db9cd26467ed2e86608e4a424416d33ed749d54 +size 1888 diff --git a/Skins/- + morgan spring/hit100-16@2x.png b/Skins/- + morgan spring/hit100-16@2x.png new file mode 100644 index 00000000..95249f3a --- /dev/null +++ b/Skins/- + morgan spring/hit100-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9957df3d797ce31d3ce0726be296bb0baed1474981bd27397c208e8b8ffa3924 +size 5493 diff --git a/Skins/- + morgan spring/hit100-17.png b/Skins/- + morgan spring/hit100-17.png new file mode 100644 index 00000000..9f92537c --- /dev/null +++ b/Skins/- + morgan spring/hit100-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e74373ffb06857602093d917dacf03fb5b478a6284838cb1446dd918e1f43ae +size 1910 diff --git a/Skins/- + morgan spring/hit100-17@2x.png b/Skins/- + morgan spring/hit100-17@2x.png new file mode 100644 index 00000000..baea51dd --- /dev/null +++ b/Skins/- + morgan spring/hit100-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f643f92a50144c2c0a7504140beb96b714f8af96b6668c08386866a3f02307 +size 5446 diff --git a/Skins/- + morgan spring/hit100-18.png b/Skins/- + morgan spring/hit100-18.png new file mode 100644 index 00000000..59cbb9f9 --- /dev/null +++ b/Skins/- + morgan spring/hit100-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8910075dbdb87b170a95590995cf6fe48f2d171fea53d3ca3720e13a01f359ec +size 1794 diff --git a/Skins/- + morgan spring/hit100-18@2x.png b/Skins/- + morgan spring/hit100-18@2x.png new file mode 100644 index 00000000..05886f4f --- /dev/null +++ b/Skins/- + morgan spring/hit100-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711ecfe20a53fd12c5a4deec8f92d7b7a97419fd75b446df1d317c5c8624196e +size 5696 diff --git a/Skins/- + morgan spring/hit100-19.png b/Skins/- + morgan spring/hit100-19.png new file mode 100644 index 00000000..7ed9b40c --- /dev/null +++ b/Skins/- + morgan spring/hit100-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bc1472dd3f861ae10aafd4af00a4e3ac9d915ba06d2455116d4f8b92f8f894 +size 1807 diff --git a/Skins/- + morgan spring/hit100-19@2x.png b/Skins/- + morgan spring/hit100-19@2x.png new file mode 100644 index 00000000..2626bf97 --- /dev/null +++ b/Skins/- + morgan spring/hit100-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba17dd0cbef53208bcb8d66f14e9d5625c6f38c772f1c5b4931b632d95ae9 +size 5580 diff --git a/Skins/- + morgan spring/hit100-1@2x.png b/Skins/- + morgan spring/hit100-1@2x.png new file mode 100644 index 00000000..44763796 --- /dev/null +++ b/Skins/- + morgan spring/hit100-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2aa58ee5b6381336e759021772887966761498186abf9f8b13db2e5cd12039 +size 4080 diff --git a/Skins/- + morgan spring/hit100-2.png b/Skins/- + morgan spring/hit100-2.png new file mode 100644 index 00000000..bd60269d --- /dev/null +++ b/Skins/- + morgan spring/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bca8241e35b16ffb907b04f112c9e0c16870eccc25157d0791498fe646282c5c +size 1022 diff --git a/Skins/- + morgan spring/hit100-20.png b/Skins/- + morgan spring/hit100-20.png new file mode 100644 index 00000000..8615be40 --- /dev/null +++ b/Skins/- + morgan spring/hit100-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f524140f1d145e87f6ff4eb5322226f46feaf3003e03a87c12e32a2882c4124 +size 1853 diff --git a/Skins/- + morgan spring/hit100-20@2x.png b/Skins/- + morgan spring/hit100-20@2x.png new file mode 100644 index 00000000..84e2865c --- /dev/null +++ b/Skins/- + morgan spring/hit100-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae696434e1a0828b414789e85b784476caa8bddbdd30f9f874d94f6272d8964 +size 5837 diff --git a/Skins/- + morgan spring/hit100-21.png b/Skins/- + morgan spring/hit100-21.png new file mode 100644 index 00000000..01d2ae76 --- /dev/null +++ b/Skins/- + morgan spring/hit100-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37c7d0625928ff9c85191822cef3cbcdd4cb4db5709c4784b4616c87e49358b +size 1929 diff --git a/Skins/- + morgan spring/hit100-21@2x.png b/Skins/- + morgan spring/hit100-21@2x.png new file mode 100644 index 00000000..d0112cfc --- /dev/null +++ b/Skins/- + morgan spring/hit100-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c95d4664e0a6a8d1cec88d961f25bd6cbbd88b71f4676a5a397bddeae19c52 +size 5919 diff --git a/Skins/- + morgan spring/hit100-22.png b/Skins/- + morgan spring/hit100-22.png new file mode 100644 index 00000000..82f82534 --- /dev/null +++ b/Skins/- + morgan spring/hit100-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebde37838daeae10ee2cbd33d02c736458751e332ecfdb7a1562cc5ce30dd4db +size 1984 diff --git a/Skins/- + morgan spring/hit100-22@2x.png b/Skins/- + morgan spring/hit100-22@2x.png new file mode 100644 index 00000000..b95e0562 --- /dev/null +++ b/Skins/- + morgan spring/hit100-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b4723fb40d9bdc8a22c5a64add70e3c63efcec23fbebbdbdee6bd65ca7c603 +size 5932 diff --git a/Skins/- + morgan spring/hit100-23.png b/Skins/- + morgan spring/hit100-23.png new file mode 100644 index 00000000..22ce87d8 --- /dev/null +++ b/Skins/- + morgan spring/hit100-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d8815f632ce435d88026c03bfd63692de8b352b5a73e2423afe9ce88d94f49 +size 1988 diff --git a/Skins/- + morgan spring/hit100-23@2x.png b/Skins/- + morgan spring/hit100-23@2x.png new file mode 100644 index 00000000..ed1076e4 --- /dev/null +++ b/Skins/- + morgan spring/hit100-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43d4e410dc62518854a42d94e8dedcadcd5261d140482e913ff274da6d90ce9 +size 6014 diff --git a/Skins/- + morgan spring/hit100-24.png b/Skins/- + morgan spring/hit100-24.png new file mode 100644 index 00000000..ea5ff8b4 --- /dev/null +++ b/Skins/- + morgan spring/hit100-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8a51681f512167da91c30dff31d912d05f917057df7f229128d257fed24996 +size 1982 diff --git a/Skins/- + morgan spring/hit100-24@2x.png b/Skins/- + morgan spring/hit100-24@2x.png new file mode 100644 index 00000000..01c3374c --- /dev/null +++ b/Skins/- + morgan spring/hit100-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a56e0b7674ece51bd7d0262f6ff62b175f640354e0e057cf890e0105ab32528 +size 5811 diff --git a/Skins/- + morgan spring/hit100-25.png b/Skins/- + morgan spring/hit100-25.png new file mode 100644 index 00000000..1919abdd --- /dev/null +++ b/Skins/- + morgan spring/hit100-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58ebc24546a02583faf14d58f8aa8eb41ba4152288db4b18e1b5c5be633e2f5 +size 1928 diff --git a/Skins/- + morgan spring/hit100-25@2x.png b/Skins/- + morgan spring/hit100-25@2x.png new file mode 100644 index 00000000..001a198c --- /dev/null +++ b/Skins/- + morgan spring/hit100-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8520ccebdf9ed46595a901effeabd01631fdb5310a78dff85e70d6dc15decb +size 6159 diff --git a/Skins/- + morgan spring/hit100-26.png b/Skins/- + morgan spring/hit100-26.png new file mode 100644 index 00000000..aa414da3 --- /dev/null +++ b/Skins/- + morgan spring/hit100-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5380839acbfc1b94e70d7d21d7616a2b24760581e0bafcf2efb1b46e1c754442 +size 1915 diff --git a/Skins/- + morgan spring/hit100-26@2x.png b/Skins/- + morgan spring/hit100-26@2x.png new file mode 100644 index 00000000..76e9b364 --- /dev/null +++ b/Skins/- + morgan spring/hit100-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c4b9ffc74f11dac3a78aa3ddab160a447058b9f45effb32ffd6771b1cbdc4f +size 5848 diff --git a/Skins/- + morgan spring/hit100-27.png b/Skins/- + morgan spring/hit100-27.png new file mode 100644 index 00000000..49832cf9 --- /dev/null +++ b/Skins/- + morgan spring/hit100-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e835b63e8a40bfd7192a6109a549cb5bfdf12497edf6925a76a3bf8ff51bccf5 +size 1915 diff --git a/Skins/- + morgan spring/hit100-27@2x.png b/Skins/- + morgan spring/hit100-27@2x.png new file mode 100644 index 00000000..b75058fa --- /dev/null +++ b/Skins/- + morgan spring/hit100-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c201b496f09754551d2dfc3aaa4264120d48f071b33cd59e397626fc7e275f +size 5934 diff --git a/Skins/- + morgan spring/hit100-28.png b/Skins/- + morgan spring/hit100-28.png new file mode 100644 index 00000000..3c8f6235 --- /dev/null +++ b/Skins/- + morgan spring/hit100-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe921b04168b7a2db3a74c572d5bd1acb6c062ec74a62e6619a2e6d9c6c9f77e +size 1881 diff --git a/Skins/- + morgan spring/hit100-28@2x.png b/Skins/- + morgan spring/hit100-28@2x.png new file mode 100644 index 00000000..798b03b9 --- /dev/null +++ b/Skins/- + morgan spring/hit100-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad69ab74f03afd0698cd72fc440bf882da52ef8779b48d2120d64c2021adbdf +size 6037 diff --git a/Skins/- + morgan spring/hit100-29.png b/Skins/- + morgan spring/hit100-29.png new file mode 100644 index 00000000..231a036a --- /dev/null +++ b/Skins/- + morgan spring/hit100-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016c6efc855f2f69210266b933af10168fdc3071cbe4d8c4ba95f046c6d319e8 +size 2025 diff --git a/Skins/- + morgan spring/hit100-29@2x.png b/Skins/- + morgan spring/hit100-29@2x.png new file mode 100644 index 00000000..d3cc4700 --- /dev/null +++ b/Skins/- + morgan spring/hit100-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e5f0c9007371033aad41c92831e2b7ed9060ecf6c947ba30e2dc829ae6b668 +size 6192 diff --git a/Skins/- + morgan spring/hit100-2@2x.png b/Skins/- + morgan spring/hit100-2@2x.png new file mode 100644 index 00000000..9abfd913 --- /dev/null +++ b/Skins/- + morgan spring/hit100-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be7cc9b10537e4a754e1177bcc6ba395dfa1c75c2e3cc511b76184c57835d74 +size 4119 diff --git a/Skins/- + morgan spring/hit100-3.png b/Skins/- + morgan spring/hit100-3.png new file mode 100644 index 00000000..918e088a --- /dev/null +++ b/Skins/- + morgan spring/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99cd1ede3d9fa54c8274a14b23f5ea7e44f122d271ddd5e3ae019d1f899cde4 +size 1266 diff --git a/Skins/- + morgan spring/hit100-30.png b/Skins/- + morgan spring/hit100-30.png new file mode 100644 index 00000000..a6191b33 --- /dev/null +++ b/Skins/- + morgan spring/hit100-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d264c955ca592bb4173251cd22be7e7d16f1f589118fc22e90f65ad8726a779 +size 2014 diff --git a/Skins/- + morgan spring/hit100-30@2x.png b/Skins/- + morgan spring/hit100-30@2x.png new file mode 100644 index 00000000..a6d02a92 --- /dev/null +++ b/Skins/- + morgan spring/hit100-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be71d9ab75218ec8590e2a860836111c13282ec23604c2a755f432b4c7168501 +size 6179 diff --git a/Skins/- + morgan spring/hit100-31.png b/Skins/- + morgan spring/hit100-31.png new file mode 100644 index 00000000..39f50da8 --- /dev/null +++ b/Skins/- + morgan spring/hit100-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7723b74981ababb11da3d90d0942fb109afc95e32270c7dc537c0719ff9a22fb +size 2007 diff --git a/Skins/- + morgan spring/hit100-31@2x.png b/Skins/- + morgan spring/hit100-31@2x.png new file mode 100644 index 00000000..b5bdb02d --- /dev/null +++ b/Skins/- + morgan spring/hit100-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f0b72d96c36ba9bdd62f830bc61e4e4d2cda162876a770019261b41ccf98c3 +size 6171 diff --git a/Skins/- + morgan spring/hit100-32.png b/Skins/- + morgan spring/hit100-32.png new file mode 100644 index 00000000..ddc49872 --- /dev/null +++ b/Skins/- + morgan spring/hit100-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab53c8bc39dbe521f8a361b0cae2c719bb881d0aa2229d4c99fa460bbe9fdf3 +size 1989 diff --git a/Skins/- + morgan spring/hit100-32@2x.png b/Skins/- + morgan spring/hit100-32@2x.png new file mode 100644 index 00000000..3d370ce9 --- /dev/null +++ b/Skins/- + morgan spring/hit100-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a141c3252f5cafd46b16e3f00aaff06c6a302ba4c0009a409d0ef9310d29da63 +size 6146 diff --git a/Skins/- + morgan spring/hit100-33.png b/Skins/- + morgan spring/hit100-33.png new file mode 100644 index 00000000..a7ae0b6a --- /dev/null +++ b/Skins/- + morgan spring/hit100-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d80c1ca0e6a4a74c16d1ee67b51dee4aecd1c95528fcb2ba8de9deeecc758e2 +size 1949 diff --git a/Skins/- + morgan spring/hit100-33@2x.png b/Skins/- + morgan spring/hit100-33@2x.png new file mode 100644 index 00000000..96592137 --- /dev/null +++ b/Skins/- + morgan spring/hit100-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca90bb75dc89a609d5e3ae3c2837d533ac39dc46a945720457656b482d9864e +size 6036 diff --git a/Skins/- + morgan spring/hit100-34.png b/Skins/- + morgan spring/hit100-34.png new file mode 100644 index 00000000..fc6dc2b8 --- /dev/null +++ b/Skins/- + morgan spring/hit100-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f79c1748b1a2cbafffb3df2816bb467ed7128cc01d9ebc4e2808509a3bd46b8 +size 1944 diff --git a/Skins/- + morgan spring/hit100-34@2x.png b/Skins/- + morgan spring/hit100-34@2x.png new file mode 100644 index 00000000..a3253eaf --- /dev/null +++ b/Skins/- + morgan spring/hit100-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98c6c6ee7f181e670ac6cb85900089d3ebf9df4a251451da3ed107ba69876247 +size 5944 diff --git a/Skins/- + morgan spring/hit100-35.png b/Skins/- + morgan spring/hit100-35.png new file mode 100644 index 00000000..b9012d71 --- /dev/null +++ b/Skins/- + morgan spring/hit100-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2edf9392e6bb9ad680283a8875cee3523dbadccf578bf15014073bb66b8018a +size 1904 diff --git a/Skins/- + morgan spring/hit100-35@2x.png b/Skins/- + morgan spring/hit100-35@2x.png new file mode 100644 index 00000000..bab7b67d --- /dev/null +++ b/Skins/- + morgan spring/hit100-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542d2e53dbf3e047162aa82207f77f967c6ad17d21f84a5fa148aa06e59c4b6f +size 5790 diff --git a/Skins/- + morgan spring/hit100-36.png b/Skins/- + morgan spring/hit100-36.png new file mode 100644 index 00000000..70bba06d --- /dev/null +++ b/Skins/- + morgan spring/hit100-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0dd5f8550cc514228a209d311e24368809ed6ae6f9d5c4e83287b92c42ed604 +size 1781 diff --git a/Skins/- + morgan spring/hit100-36@2x.png b/Skins/- + morgan spring/hit100-36@2x.png new file mode 100644 index 00000000..5978d98a --- /dev/null +++ b/Skins/- + morgan spring/hit100-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d76ab8b19bca001718513dceaed7e47f89ff6d04ffe9f1e34a7a225d2ecd28b +size 5770 diff --git a/Skins/- + morgan spring/hit100-37.png b/Skins/- + morgan spring/hit100-37.png new file mode 100644 index 00000000..5c702b08 --- /dev/null +++ b/Skins/- + morgan spring/hit100-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a6ac3538e0e2b0dd463a89d95a7d3597840df71c0173dd012040420085fffa +size 1669 diff --git a/Skins/- + morgan spring/hit100-37@2x.png b/Skins/- + morgan spring/hit100-37@2x.png new file mode 100644 index 00000000..2dc12d1d --- /dev/null +++ b/Skins/- + morgan spring/hit100-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3f771a69dfaefc9fe8b41e9cad4b9aba6d98de829c9c45020820e8e55a61638 +size 5493 diff --git a/Skins/- + morgan spring/hit100-38.png b/Skins/- + morgan spring/hit100-38.png new file mode 100644 index 00000000..cd098f95 --- /dev/null +++ b/Skins/- + morgan spring/hit100-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f3d5b335a352767e575868d5fba76a0dbdfc6adf3125b5b7cfb5403b2d337c +size 1486 diff --git a/Skins/- + morgan spring/hit100-38@2x.png b/Skins/- + morgan spring/hit100-38@2x.png new file mode 100644 index 00000000..02aaa8fd --- /dev/null +++ b/Skins/- + morgan spring/hit100-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bee09a3f5dc75f42045a42d1311b7e100027a84d46beeb5550b2d26631e2806d +size 5359 diff --git a/Skins/- + morgan spring/hit100-39.png b/Skins/- + morgan spring/hit100-39.png new file mode 100644 index 00000000..f39ddb6b --- /dev/null +++ b/Skins/- + morgan spring/hit100-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95f439d5ebd17d2c06aac43a1f9c953f25de91d24a5bca81727024bcc91e08c3 +size 1053 diff --git a/Skins/- + morgan spring/hit100-39@2x.png b/Skins/- + morgan spring/hit100-39@2x.png new file mode 100644 index 00000000..388cb49e --- /dev/null +++ b/Skins/- + morgan spring/hit100-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324d3f2fa0d1ff0ba11f021d5ea534ea27401e75014d52503bd54c1dc73c6cfe +size 5197 diff --git a/Skins/- + morgan spring/hit100-3@2x.png b/Skins/- + morgan spring/hit100-3@2x.png new file mode 100644 index 00000000..265888ab --- /dev/null +++ b/Skins/- + morgan spring/hit100-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9ad7f1ac0f0c4735f5e39b8a3a6766396856ce1fe05fc16f76353e3644619e +size 4382 diff --git a/Skins/- + morgan spring/hit100-4.png b/Skins/- + morgan spring/hit100-4.png new file mode 100644 index 00000000..f8a7ed15 --- /dev/null +++ b/Skins/- + morgan spring/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e43687dac535865ab6c6d361afd66e12500fc935676406239ac3e2c8ec21f8 +size 1485 diff --git a/Skins/- + morgan spring/hit100-40.png b/Skins/- + morgan spring/hit100-40.png new file mode 100644 index 00000000..a16a9a77 --- /dev/null +++ b/Skins/- + morgan spring/hit100-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c0842cf7ccb7d08bdf490728a0b602848b4305ae3a737ae313a5abea576462 +size 171 diff --git a/Skins/- + morgan spring/hit100-40@2x.png b/Skins/- + morgan spring/hit100-40@2x.png new file mode 100644 index 00000000..4938d957 --- /dev/null +++ b/Skins/- + morgan spring/hit100-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f906999e95d7257756179e5ac6e4eb5516a2d23b9bef2ab396f41bf029e8ab +size 236 diff --git a/Skins/- + morgan spring/hit100-4@2x.png b/Skins/- + morgan spring/hit100-4@2x.png new file mode 100644 index 00000000..427baf7f --- /dev/null +++ b/Skins/- + morgan spring/hit100-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5737cda5d4a6129d8bd19ec2e431a128bca5b176e8499e9b6e93fc27b16c30e4 +size 4187 diff --git a/Skins/- + morgan spring/hit100-5.png b/Skins/- + morgan spring/hit100-5.png new file mode 100644 index 00000000..829fd032 --- /dev/null +++ b/Skins/- + morgan spring/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0044085fcd5dd7793c7eff6fd2e27974758ccd2fcbf4b5a614e609c7f12b6587 +size 1462 diff --git a/Skins/- + morgan spring/hit100-5@2x.png b/Skins/- + morgan spring/hit100-5@2x.png new file mode 100644 index 00000000..c981db4a --- /dev/null +++ b/Skins/- + morgan spring/hit100-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b645db098d3d5ab0ee94be90ac7378cace5faaa9ef376a6fea5e116351b26831 +size 4328 diff --git a/Skins/- + morgan spring/hit100-6.png b/Skins/- + morgan spring/hit100-6.png new file mode 100644 index 00000000..530f6229 --- /dev/null +++ b/Skins/- + morgan spring/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f486f687879e5a3fc41ae87dbbbc1f53a6feea3b0868b3779b01ddc7e2698888 +size 1527 diff --git a/Skins/- + morgan spring/hit100-6@2x.png b/Skins/- + morgan spring/hit100-6@2x.png new file mode 100644 index 00000000..f2aa51d9 --- /dev/null +++ b/Skins/- + morgan spring/hit100-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16ed274fb6f00c1f451568bfd38f43c95f1c1e559b819ae562d0cb4dbd5b2ee +size 4609 diff --git a/Skins/- + morgan spring/hit100-7.png b/Skins/- + morgan spring/hit100-7.png new file mode 100644 index 00000000..97784ad3 --- /dev/null +++ b/Skins/- + morgan spring/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f129f2d05ea9744ef203173a423cf373ac8f6c4e5f93f323afb612b0f09e2e3 +size 1500 diff --git a/Skins/- + morgan spring/hit100-7@2x.png b/Skins/- + morgan spring/hit100-7@2x.png new file mode 100644 index 00000000..9f5ef14b --- /dev/null +++ b/Skins/- + morgan spring/hit100-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82fb432c2172e484975a7334e759f6251e5b29d4ce5e3382f36ad49d36aa50a7 +size 4658 diff --git a/Skins/- + morgan spring/hit100-8.png b/Skins/- + morgan spring/hit100-8.png new file mode 100644 index 00000000..6983ced0 --- /dev/null +++ b/Skins/- + morgan spring/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a0392cfff7f287cea843923bc6d538d13dd8b9f60a42889a821aa9a2cddc03 +size 1609 diff --git a/Skins/- + morgan spring/hit100-8@2x.png b/Skins/- + morgan spring/hit100-8@2x.png new file mode 100644 index 00000000..07982fbf --- /dev/null +++ b/Skins/- + morgan spring/hit100-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71dff29396576d5fc883ae7da7d8bcf3f6922aa65bdafb2cf202b1787e287070 +size 4625 diff --git a/Skins/- + morgan spring/hit100-9.png b/Skins/- + morgan spring/hit100-9.png new file mode 100644 index 00000000..2a959fe2 --- /dev/null +++ b/Skins/- + morgan spring/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c7483b33ed94836cecf0008e89cf80b7342bdee8704bf842a39e556a4739ef +size 1544 diff --git a/Skins/- + morgan spring/hit100-9@2x.png b/Skins/- + morgan spring/hit100-9@2x.png new file mode 100644 index 00000000..2089a96e --- /dev/null +++ b/Skins/- + morgan spring/hit100-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a21c5f8d30c4984e2df686f5a21a073335a126622c668ff51b9d2bfe98eb0a +size 4885 diff --git a/Skins/- + morgan spring/hit100.png b/Skins/- + morgan spring/hit100.png new file mode 100644 index 00000000..51e4a203 --- /dev/null +++ b/Skins/- + morgan spring/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b78195f2dc34c4020ffddfd30435a2bb2f8a04282c2e1f1a23102797d9c31f +size 4724 diff --git a/Skins/- + morgan spring/hit100@2x.png b/Skins/- + morgan spring/hit100@2x.png new file mode 100644 index 00000000..7bed8328 --- /dev/null +++ b/Skins/- + morgan spring/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59298dc2edc609d3bb48506baea60b7c9902db04f09a9ecccdeae888c8f4e4af +size 6718 diff --git a/Skins/- + morgan spring/hit100k-0.png b/Skins/- + morgan spring/hit100k-0.png new file mode 100644 index 00000000..a16a9a77 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c0842cf7ccb7d08bdf490728a0b602848b4305ae3a737ae313a5abea576462 +size 171 diff --git a/Skins/- + morgan spring/hit100k-0@2x.png b/Skins/- + morgan spring/hit100k-0@2x.png new file mode 100644 index 00000000..4938d957 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f906999e95d7257756179e5ac6e4eb5516a2d23b9bef2ab396f41bf029e8ab +size 236 diff --git a/Skins/- + morgan spring/hit100k-1.png b/Skins/- + morgan spring/hit100k-1.png new file mode 100644 index 00000000..ff2e516e --- /dev/null +++ b/Skins/- + morgan spring/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872b329050a8cf4c760aa968ca94efcea82bd5757524e8de3c83d125c733a9a7 +size 663 diff --git a/Skins/- + morgan spring/hit100k-10.png b/Skins/- + morgan spring/hit100k-10.png new file mode 100644 index 00000000..a14f4cc4 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57db1805d1843c1b38dc1f60473a557478d2d8d68e9d1074bfb169963d23f60 +size 1691 diff --git a/Skins/- + morgan spring/hit100k-10@2x.png b/Skins/- + morgan spring/hit100k-10@2x.png new file mode 100644 index 00000000..2d3d6f69 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078dc1ef9fc7f143972a7ca5ee4f62e4d76db993748071fd2018c360d7cd8271 +size 5034 diff --git a/Skins/- + morgan spring/hit100k-11.png b/Skins/- + morgan spring/hit100k-11.png new file mode 100644 index 00000000..45950540 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093f89e5c9bd662123733480f25406ed2ec7629a916c21905fd3c3075bb9ffd5 +size 1670 diff --git a/Skins/- + morgan spring/hit100k-11@2x.png b/Skins/- + morgan spring/hit100k-11@2x.png new file mode 100644 index 00000000..d670d67f --- /dev/null +++ b/Skins/- + morgan spring/hit100k-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e94ab6395038f4cd98582fb89495408662221cc358af93bdb4542e919bc00e +size 5103 diff --git a/Skins/- + morgan spring/hit100k-12.png b/Skins/- + morgan spring/hit100k-12.png new file mode 100644 index 00000000..eec1dd69 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519c62d95e3a855b3a9eef00bfdd781e83a6dff8d61771bbefe1a61b01b097b1 +size 1744 diff --git a/Skins/- + morgan spring/hit100k-12@2x.png b/Skins/- + morgan spring/hit100k-12@2x.png new file mode 100644 index 00000000..c3e031c8 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5308e667a4ce21552848795186ab2fbe00d42c43277c6563fc4f4ee77fe9a835 +size 5336 diff --git a/Skins/- + morgan spring/hit100k-13.png b/Skins/- + morgan spring/hit100k-13.png new file mode 100644 index 00000000..81ba1a84 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6508ebd0e41b44e1b354ce01dd19fde3a80da06dd81c00b408379c85359f8251 +size 1705 diff --git a/Skins/- + morgan spring/hit100k-13@2x.png b/Skins/- + morgan spring/hit100k-13@2x.png new file mode 100644 index 00000000..4d6b68b4 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dce26087c13e8114c9fb4a2eb564a5def39e4950dffad31fcb5679d6ba4ae26 +size 5441 diff --git a/Skins/- + morgan spring/hit100k-14.png b/Skins/- + morgan spring/hit100k-14.png new file mode 100644 index 00000000..c384f8e1 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0536fca67e8c8273470a3f59a3d9c9604f5687aedd591e7869bc5463d82d97 +size 1754 diff --git a/Skins/- + morgan spring/hit100k-14@2x.png b/Skins/- + morgan spring/hit100k-14@2x.png new file mode 100644 index 00000000..14f85e42 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce34e5353da5e0d9201e426f65c498bcbf2a8743e34b71712f6a430db633b1c8 +size 5145 diff --git a/Skins/- + morgan spring/hit100k-15.png b/Skins/- + morgan spring/hit100k-15.png new file mode 100644 index 00000000..487150c3 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feac5026df095db9be12081a4ea43ce8d89b7ed8f7683d503fce937d61de4a6b +size 1857 diff --git a/Skins/- + morgan spring/hit100k-15@2x.png b/Skins/- + morgan spring/hit100k-15@2x.png new file mode 100644 index 00000000..73550f71 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32515568dc88659ed715345941eba260247c6373ed6297f5b92ad2eb6db843a6 +size 5506 diff --git a/Skins/- + morgan spring/hit100k-16.png b/Skins/- + morgan spring/hit100k-16.png new file mode 100644 index 00000000..d281f260 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c85499c2e59b2e602552b30db9cd26467ed2e86608e4a424416d33ed749d54 +size 1888 diff --git a/Skins/- + morgan spring/hit100k-16@2x.png b/Skins/- + morgan spring/hit100k-16@2x.png new file mode 100644 index 00000000..95249f3a --- /dev/null +++ b/Skins/- + morgan spring/hit100k-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9957df3d797ce31d3ce0726be296bb0baed1474981bd27397c208e8b8ffa3924 +size 5493 diff --git a/Skins/- + morgan spring/hit100k-17.png b/Skins/- + morgan spring/hit100k-17.png new file mode 100644 index 00000000..9f92537c --- /dev/null +++ b/Skins/- + morgan spring/hit100k-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e74373ffb06857602093d917dacf03fb5b478a6284838cb1446dd918e1f43ae +size 1910 diff --git a/Skins/- + morgan spring/hit100k-17@2x.png b/Skins/- + morgan spring/hit100k-17@2x.png new file mode 100644 index 00000000..baea51dd --- /dev/null +++ b/Skins/- + morgan spring/hit100k-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f643f92a50144c2c0a7504140beb96b714f8af96b6668c08386866a3f02307 +size 5446 diff --git a/Skins/- + morgan spring/hit100k-18.png b/Skins/- + morgan spring/hit100k-18.png new file mode 100644 index 00000000..59cbb9f9 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8910075dbdb87b170a95590995cf6fe48f2d171fea53d3ca3720e13a01f359ec +size 1794 diff --git a/Skins/- + morgan spring/hit100k-18@2x.png b/Skins/- + morgan spring/hit100k-18@2x.png new file mode 100644 index 00000000..05886f4f --- /dev/null +++ b/Skins/- + morgan spring/hit100k-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711ecfe20a53fd12c5a4deec8f92d7b7a97419fd75b446df1d317c5c8624196e +size 5696 diff --git a/Skins/- + morgan spring/hit100k-19.png b/Skins/- + morgan spring/hit100k-19.png new file mode 100644 index 00000000..7ed9b40c --- /dev/null +++ b/Skins/- + morgan spring/hit100k-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bc1472dd3f861ae10aafd4af00a4e3ac9d915ba06d2455116d4f8b92f8f894 +size 1807 diff --git a/Skins/- + morgan spring/hit100k-19@2x.png b/Skins/- + morgan spring/hit100k-19@2x.png new file mode 100644 index 00000000..2626bf97 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba17dd0cbef53208bcb8d66f14e9d5625c6f38c772f1c5b4931b632d95ae9 +size 5580 diff --git a/Skins/- + morgan spring/hit100k-1@2x.png b/Skins/- + morgan spring/hit100k-1@2x.png new file mode 100644 index 00000000..44763796 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2aa58ee5b6381336e759021772887966761498186abf9f8b13db2e5cd12039 +size 4080 diff --git a/Skins/- + morgan spring/hit100k-2.png b/Skins/- + morgan spring/hit100k-2.png new file mode 100644 index 00000000..bd60269d --- /dev/null +++ b/Skins/- + morgan spring/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bca8241e35b16ffb907b04f112c9e0c16870eccc25157d0791498fe646282c5c +size 1022 diff --git a/Skins/- + morgan spring/hit100k-20.png b/Skins/- + morgan spring/hit100k-20.png new file mode 100644 index 00000000..8615be40 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f524140f1d145e87f6ff4eb5322226f46feaf3003e03a87c12e32a2882c4124 +size 1853 diff --git a/Skins/- + morgan spring/hit100k-20@2x.png b/Skins/- + morgan spring/hit100k-20@2x.png new file mode 100644 index 00000000..84e2865c --- /dev/null +++ b/Skins/- + morgan spring/hit100k-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae696434e1a0828b414789e85b784476caa8bddbdd30f9f874d94f6272d8964 +size 5837 diff --git a/Skins/- + morgan spring/hit100k-21.png b/Skins/- + morgan spring/hit100k-21.png new file mode 100644 index 00000000..01d2ae76 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37c7d0625928ff9c85191822cef3cbcdd4cb4db5709c4784b4616c87e49358b +size 1929 diff --git a/Skins/- + morgan spring/hit100k-21@2x.png b/Skins/- + morgan spring/hit100k-21@2x.png new file mode 100644 index 00000000..d0112cfc --- /dev/null +++ b/Skins/- + morgan spring/hit100k-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c95d4664e0a6a8d1cec88d961f25bd6cbbd88b71f4676a5a397bddeae19c52 +size 5919 diff --git a/Skins/- + morgan spring/hit100k-22.png b/Skins/- + morgan spring/hit100k-22.png new file mode 100644 index 00000000..82f82534 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebde37838daeae10ee2cbd33d02c736458751e332ecfdb7a1562cc5ce30dd4db +size 1984 diff --git a/Skins/- + morgan spring/hit100k-22@2x.png b/Skins/- + morgan spring/hit100k-22@2x.png new file mode 100644 index 00000000..b95e0562 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b4723fb40d9bdc8a22c5a64add70e3c63efcec23fbebbdbdee6bd65ca7c603 +size 5932 diff --git a/Skins/- + morgan spring/hit100k-23.png b/Skins/- + morgan spring/hit100k-23.png new file mode 100644 index 00000000..22ce87d8 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d8815f632ce435d88026c03bfd63692de8b352b5a73e2423afe9ce88d94f49 +size 1988 diff --git a/Skins/- + morgan spring/hit100k-23@2x.png b/Skins/- + morgan spring/hit100k-23@2x.png new file mode 100644 index 00000000..ed1076e4 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43d4e410dc62518854a42d94e8dedcadcd5261d140482e913ff274da6d90ce9 +size 6014 diff --git a/Skins/- + morgan spring/hit100k-24.png b/Skins/- + morgan spring/hit100k-24.png new file mode 100644 index 00000000..ea5ff8b4 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8a51681f512167da91c30dff31d912d05f917057df7f229128d257fed24996 +size 1982 diff --git a/Skins/- + morgan spring/hit100k-24@2x.png b/Skins/- + morgan spring/hit100k-24@2x.png new file mode 100644 index 00000000..01c3374c --- /dev/null +++ b/Skins/- + morgan spring/hit100k-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a56e0b7674ece51bd7d0262f6ff62b175f640354e0e057cf890e0105ab32528 +size 5811 diff --git a/Skins/- + morgan spring/hit100k-25.png b/Skins/- + morgan spring/hit100k-25.png new file mode 100644 index 00000000..1919abdd --- /dev/null +++ b/Skins/- + morgan spring/hit100k-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58ebc24546a02583faf14d58f8aa8eb41ba4152288db4b18e1b5c5be633e2f5 +size 1928 diff --git a/Skins/- + morgan spring/hit100k-25@2x.png b/Skins/- + morgan spring/hit100k-25@2x.png new file mode 100644 index 00000000..001a198c --- /dev/null +++ b/Skins/- + morgan spring/hit100k-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8520ccebdf9ed46595a901effeabd01631fdb5310a78dff85e70d6dc15decb +size 6159 diff --git a/Skins/- + morgan spring/hit100k-26.png b/Skins/- + morgan spring/hit100k-26.png new file mode 100644 index 00000000..aa414da3 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5380839acbfc1b94e70d7d21d7616a2b24760581e0bafcf2efb1b46e1c754442 +size 1915 diff --git a/Skins/- + morgan spring/hit100k-26@2x.png b/Skins/- + morgan spring/hit100k-26@2x.png new file mode 100644 index 00000000..76e9b364 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c4b9ffc74f11dac3a78aa3ddab160a447058b9f45effb32ffd6771b1cbdc4f +size 5848 diff --git a/Skins/- + morgan spring/hit100k-27.png b/Skins/- + morgan spring/hit100k-27.png new file mode 100644 index 00000000..49832cf9 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e835b63e8a40bfd7192a6109a549cb5bfdf12497edf6925a76a3bf8ff51bccf5 +size 1915 diff --git a/Skins/- + morgan spring/hit100k-27@2x.png b/Skins/- + morgan spring/hit100k-27@2x.png new file mode 100644 index 00000000..b75058fa --- /dev/null +++ b/Skins/- + morgan spring/hit100k-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c201b496f09754551d2dfc3aaa4264120d48f071b33cd59e397626fc7e275f +size 5934 diff --git a/Skins/- + morgan spring/hit100k-28.png b/Skins/- + morgan spring/hit100k-28.png new file mode 100644 index 00000000..3c8f6235 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe921b04168b7a2db3a74c572d5bd1acb6c062ec74a62e6619a2e6d9c6c9f77e +size 1881 diff --git a/Skins/- + morgan spring/hit100k-28@2x.png b/Skins/- + morgan spring/hit100k-28@2x.png new file mode 100644 index 00000000..798b03b9 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad69ab74f03afd0698cd72fc440bf882da52ef8779b48d2120d64c2021adbdf +size 6037 diff --git a/Skins/- + morgan spring/hit100k-29.png b/Skins/- + morgan spring/hit100k-29.png new file mode 100644 index 00000000..231a036a --- /dev/null +++ b/Skins/- + morgan spring/hit100k-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016c6efc855f2f69210266b933af10168fdc3071cbe4d8c4ba95f046c6d319e8 +size 2025 diff --git a/Skins/- + morgan spring/hit100k-29@2x.png b/Skins/- + morgan spring/hit100k-29@2x.png new file mode 100644 index 00000000..d3cc4700 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e5f0c9007371033aad41c92831e2b7ed9060ecf6c947ba30e2dc829ae6b668 +size 6192 diff --git a/Skins/- + morgan spring/hit100k-2@2x.png b/Skins/- + morgan spring/hit100k-2@2x.png new file mode 100644 index 00000000..9abfd913 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be7cc9b10537e4a754e1177bcc6ba395dfa1c75c2e3cc511b76184c57835d74 +size 4119 diff --git a/Skins/- + morgan spring/hit100k-3.png b/Skins/- + morgan spring/hit100k-3.png new file mode 100644 index 00000000..918e088a --- /dev/null +++ b/Skins/- + morgan spring/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99cd1ede3d9fa54c8274a14b23f5ea7e44f122d271ddd5e3ae019d1f899cde4 +size 1266 diff --git a/Skins/- + morgan spring/hit100k-30.png b/Skins/- + morgan spring/hit100k-30.png new file mode 100644 index 00000000..a6191b33 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d264c955ca592bb4173251cd22be7e7d16f1f589118fc22e90f65ad8726a779 +size 2014 diff --git a/Skins/- + morgan spring/hit100k-30@2x.png b/Skins/- + morgan spring/hit100k-30@2x.png new file mode 100644 index 00000000..a6d02a92 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be71d9ab75218ec8590e2a860836111c13282ec23604c2a755f432b4c7168501 +size 6179 diff --git a/Skins/- + morgan spring/hit100k-31.png b/Skins/- + morgan spring/hit100k-31.png new file mode 100644 index 00000000..39f50da8 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7723b74981ababb11da3d90d0942fb109afc95e32270c7dc537c0719ff9a22fb +size 2007 diff --git a/Skins/- + morgan spring/hit100k-31@2x.png b/Skins/- + morgan spring/hit100k-31@2x.png new file mode 100644 index 00000000..b5bdb02d --- /dev/null +++ b/Skins/- + morgan spring/hit100k-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f0b72d96c36ba9bdd62f830bc61e4e4d2cda162876a770019261b41ccf98c3 +size 6171 diff --git a/Skins/- + morgan spring/hit100k-32.png b/Skins/- + morgan spring/hit100k-32.png new file mode 100644 index 00000000..ddc49872 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab53c8bc39dbe521f8a361b0cae2c719bb881d0aa2229d4c99fa460bbe9fdf3 +size 1989 diff --git a/Skins/- + morgan spring/hit100k-32@2x.png b/Skins/- + morgan spring/hit100k-32@2x.png new file mode 100644 index 00000000..3d370ce9 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a141c3252f5cafd46b16e3f00aaff06c6a302ba4c0009a409d0ef9310d29da63 +size 6146 diff --git a/Skins/- + morgan spring/hit100k-33.png b/Skins/- + morgan spring/hit100k-33.png new file mode 100644 index 00000000..a7ae0b6a --- /dev/null +++ b/Skins/- + morgan spring/hit100k-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d80c1ca0e6a4a74c16d1ee67b51dee4aecd1c95528fcb2ba8de9deeecc758e2 +size 1949 diff --git a/Skins/- + morgan spring/hit100k-33@2x.png b/Skins/- + morgan spring/hit100k-33@2x.png new file mode 100644 index 00000000..96592137 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca90bb75dc89a609d5e3ae3c2837d533ac39dc46a945720457656b482d9864e +size 6036 diff --git a/Skins/- + morgan spring/hit100k-34.png b/Skins/- + morgan spring/hit100k-34.png new file mode 100644 index 00000000..fc6dc2b8 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f79c1748b1a2cbafffb3df2816bb467ed7128cc01d9ebc4e2808509a3bd46b8 +size 1944 diff --git a/Skins/- + morgan spring/hit100k-34@2x.png b/Skins/- + morgan spring/hit100k-34@2x.png new file mode 100644 index 00000000..a3253eaf --- /dev/null +++ b/Skins/- + morgan spring/hit100k-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98c6c6ee7f181e670ac6cb85900089d3ebf9df4a251451da3ed107ba69876247 +size 5944 diff --git a/Skins/- + morgan spring/hit100k-35.png b/Skins/- + morgan spring/hit100k-35.png new file mode 100644 index 00000000..b9012d71 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2edf9392e6bb9ad680283a8875cee3523dbadccf578bf15014073bb66b8018a +size 1904 diff --git a/Skins/- + morgan spring/hit100k-35@2x.png b/Skins/- + morgan spring/hit100k-35@2x.png new file mode 100644 index 00000000..bab7b67d --- /dev/null +++ b/Skins/- + morgan spring/hit100k-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542d2e53dbf3e047162aa82207f77f967c6ad17d21f84a5fa148aa06e59c4b6f +size 5790 diff --git a/Skins/- + morgan spring/hit100k-36.png b/Skins/- + morgan spring/hit100k-36.png new file mode 100644 index 00000000..70bba06d --- /dev/null +++ b/Skins/- + morgan spring/hit100k-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0dd5f8550cc514228a209d311e24368809ed6ae6f9d5c4e83287b92c42ed604 +size 1781 diff --git a/Skins/- + morgan spring/hit100k-36@2x.png b/Skins/- + morgan spring/hit100k-36@2x.png new file mode 100644 index 00000000..5978d98a --- /dev/null +++ b/Skins/- + morgan spring/hit100k-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d76ab8b19bca001718513dceaed7e47f89ff6d04ffe9f1e34a7a225d2ecd28b +size 5770 diff --git a/Skins/- + morgan spring/hit100k-37.png b/Skins/- + morgan spring/hit100k-37.png new file mode 100644 index 00000000..5c702b08 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a6ac3538e0e2b0dd463a89d95a7d3597840df71c0173dd012040420085fffa +size 1669 diff --git a/Skins/- + morgan spring/hit100k-37@2x.png b/Skins/- + morgan spring/hit100k-37@2x.png new file mode 100644 index 00000000..2dc12d1d --- /dev/null +++ b/Skins/- + morgan spring/hit100k-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3f771a69dfaefc9fe8b41e9cad4b9aba6d98de829c9c45020820e8e55a61638 +size 5493 diff --git a/Skins/- + morgan spring/hit100k-38.png b/Skins/- + morgan spring/hit100k-38.png new file mode 100644 index 00000000..cd098f95 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f3d5b335a352767e575868d5fba76a0dbdfc6adf3125b5b7cfb5403b2d337c +size 1486 diff --git a/Skins/- + morgan spring/hit100k-38@2x.png b/Skins/- + morgan spring/hit100k-38@2x.png new file mode 100644 index 00000000..02aaa8fd --- /dev/null +++ b/Skins/- + morgan spring/hit100k-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bee09a3f5dc75f42045a42d1311b7e100027a84d46beeb5550b2d26631e2806d +size 5359 diff --git a/Skins/- + morgan spring/hit100k-39.png b/Skins/- + morgan spring/hit100k-39.png new file mode 100644 index 00000000..f39ddb6b --- /dev/null +++ b/Skins/- + morgan spring/hit100k-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95f439d5ebd17d2c06aac43a1f9c953f25de91d24a5bca81727024bcc91e08c3 +size 1053 diff --git a/Skins/- + morgan spring/hit100k-39@2x.png b/Skins/- + morgan spring/hit100k-39@2x.png new file mode 100644 index 00000000..388cb49e --- /dev/null +++ b/Skins/- + morgan spring/hit100k-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324d3f2fa0d1ff0ba11f021d5ea534ea27401e75014d52503bd54c1dc73c6cfe +size 5197 diff --git a/Skins/- + morgan spring/hit100k-3@2x.png b/Skins/- + morgan spring/hit100k-3@2x.png new file mode 100644 index 00000000..265888ab --- /dev/null +++ b/Skins/- + morgan spring/hit100k-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9ad7f1ac0f0c4735f5e39b8a3a6766396856ce1fe05fc16f76353e3644619e +size 4382 diff --git a/Skins/- + morgan spring/hit100k-4.png b/Skins/- + morgan spring/hit100k-4.png new file mode 100644 index 00000000..f8a7ed15 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e43687dac535865ab6c6d361afd66e12500fc935676406239ac3e2c8ec21f8 +size 1485 diff --git a/Skins/- + morgan spring/hit100k-40.png b/Skins/- + morgan spring/hit100k-40.png new file mode 100644 index 00000000..a16a9a77 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c0842cf7ccb7d08bdf490728a0b602848b4305ae3a737ae313a5abea576462 +size 171 diff --git a/Skins/- + morgan spring/hit100k-40@2x.png b/Skins/- + morgan spring/hit100k-40@2x.png new file mode 100644 index 00000000..4938d957 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f906999e95d7257756179e5ac6e4eb5516a2d23b9bef2ab396f41bf029e8ab +size 236 diff --git a/Skins/- + morgan spring/hit100k-4@2x.png b/Skins/- + morgan spring/hit100k-4@2x.png new file mode 100644 index 00000000..427baf7f --- /dev/null +++ b/Skins/- + morgan spring/hit100k-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5737cda5d4a6129d8bd19ec2e431a128bca5b176e8499e9b6e93fc27b16c30e4 +size 4187 diff --git a/Skins/- + morgan spring/hit100k-5.png b/Skins/- + morgan spring/hit100k-5.png new file mode 100644 index 00000000..829fd032 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0044085fcd5dd7793c7eff6fd2e27974758ccd2fcbf4b5a614e609c7f12b6587 +size 1462 diff --git a/Skins/- + morgan spring/hit100k-5@2x.png b/Skins/- + morgan spring/hit100k-5@2x.png new file mode 100644 index 00000000..c981db4a --- /dev/null +++ b/Skins/- + morgan spring/hit100k-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b645db098d3d5ab0ee94be90ac7378cace5faaa9ef376a6fea5e116351b26831 +size 4328 diff --git a/Skins/- + morgan spring/hit100k-6.png b/Skins/- + morgan spring/hit100k-6.png new file mode 100644 index 00000000..530f6229 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f486f687879e5a3fc41ae87dbbbc1f53a6feea3b0868b3779b01ddc7e2698888 +size 1527 diff --git a/Skins/- + morgan spring/hit100k-6@2x.png b/Skins/- + morgan spring/hit100k-6@2x.png new file mode 100644 index 00000000..f2aa51d9 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16ed274fb6f00c1f451568bfd38f43c95f1c1e559b819ae562d0cb4dbd5b2ee +size 4609 diff --git a/Skins/- + morgan spring/hit100k-7.png b/Skins/- + morgan spring/hit100k-7.png new file mode 100644 index 00000000..97784ad3 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f129f2d05ea9744ef203173a423cf373ac8f6c4e5f93f323afb612b0f09e2e3 +size 1500 diff --git a/Skins/- + morgan spring/hit100k-7@2x.png b/Skins/- + morgan spring/hit100k-7@2x.png new file mode 100644 index 00000000..9f5ef14b --- /dev/null +++ b/Skins/- + morgan spring/hit100k-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82fb432c2172e484975a7334e759f6251e5b29d4ce5e3382f36ad49d36aa50a7 +size 4658 diff --git a/Skins/- + morgan spring/hit100k-8.png b/Skins/- + morgan spring/hit100k-8.png new file mode 100644 index 00000000..6983ced0 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a0392cfff7f287cea843923bc6d538d13dd8b9f60a42889a821aa9a2cddc03 +size 1609 diff --git a/Skins/- + morgan spring/hit100k-8@2x.png b/Skins/- + morgan spring/hit100k-8@2x.png new file mode 100644 index 00000000..07982fbf --- /dev/null +++ b/Skins/- + morgan spring/hit100k-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71dff29396576d5fc883ae7da7d8bcf3f6922aa65bdafb2cf202b1787e287070 +size 4625 diff --git a/Skins/- + morgan spring/hit100k-9.png b/Skins/- + morgan spring/hit100k-9.png new file mode 100644 index 00000000..2a959fe2 --- /dev/null +++ b/Skins/- + morgan spring/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c7483b33ed94836cecf0008e89cf80b7342bdee8704bf842a39e556a4739ef +size 1544 diff --git a/Skins/- + morgan spring/hit100k-9@2x.png b/Skins/- + morgan spring/hit100k-9@2x.png new file mode 100644 index 00000000..2089a96e --- /dev/null +++ b/Skins/- + morgan spring/hit100k-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a21c5f8d30c4984e2df686f5a21a073335a126622c668ff51b9d2bfe98eb0a +size 4885 diff --git a/Skins/- + morgan spring/hit100k.png b/Skins/- + morgan spring/hit100k.png new file mode 100644 index 00000000..51e4a203 --- /dev/null +++ b/Skins/- + morgan spring/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b78195f2dc34c4020ffddfd30435a2bb2f8a04282c2e1f1a23102797d9c31f +size 4724 diff --git a/Skins/- + morgan spring/hit100k@2x.png b/Skins/- + morgan spring/hit100k@2x.png new file mode 100644 index 00000000..7bed8328 --- /dev/null +++ b/Skins/- + morgan spring/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59298dc2edc609d3bb48506baea60b7c9902db04f09a9ecccdeae888c8f4e4af +size 6718 diff --git a/Skins/- + morgan spring/hit300-0.png b/Skins/- + morgan spring/hit300-0.png new file mode 100644 index 00000000..e10b18df --- /dev/null +++ b/Skins/- + morgan spring/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1610564d4f75fcfffb6c398b8434d9717b30bc1c7244e922d51d643f2532c729 +size 2790 diff --git a/src/default-skin/fail-background.png b/Skins/- + morgan spring/hit300-0@2x.png similarity index 100% rename from src/default-skin/fail-background.png rename to Skins/- + morgan spring/hit300-0@2x.png diff --git a/Skins/- + morgan spring/hit300.png b/Skins/- + morgan spring/hit300.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/- + morgan spring/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/src/default-skin/pause-overlay.png b/Skins/- + morgan spring/hit300g-0.png similarity index 100% rename from src/default-skin/pause-overlay.png rename to Skins/- + morgan spring/hit300g-0.png diff --git a/Skins/- + morgan spring/hit300g.png b/Skins/- + morgan spring/hit300g.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/- + morgan spring/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/- + morgan spring/hit300k-0.png b/Skins/- + morgan spring/hit300k-0.png new file mode 100644 index 00000000..e10b18df --- /dev/null +++ b/Skins/- + morgan spring/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1610564d4f75fcfffb6c398b8434d9717b30bc1c7244e922d51d643f2532c729 +size 2790 diff --git a/Skins/- + morgan spring/hit300k-0@2x.png b/Skins/- + morgan spring/hit300k-0@2x.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- + morgan spring/hit300k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- + morgan spring/hit300k.png b/Skins/- + morgan spring/hit300k.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/- + morgan spring/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/- + morgan spring/hit50-0.png b/Skins/- + morgan spring/hit50-0.png new file mode 100644 index 00000000..a16a9a77 --- /dev/null +++ b/Skins/- + morgan spring/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c0842cf7ccb7d08bdf490728a0b602848b4305ae3a737ae313a5abea576462 +size 171 diff --git a/Skins/- + morgan spring/hit50-0@2x.png b/Skins/- + morgan spring/hit50-0@2x.png new file mode 100644 index 00000000..4938d957 --- /dev/null +++ b/Skins/- + morgan spring/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f906999e95d7257756179e5ac6e4eb5516a2d23b9bef2ab396f41bf029e8ab +size 236 diff --git a/Skins/- + morgan spring/hit50-1.png b/Skins/- + morgan spring/hit50-1.png new file mode 100644 index 00000000..d6cfaa73 --- /dev/null +++ b/Skins/- + morgan spring/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8c2bb86c5287d0b877c9f54982993ff1c6547fd50fd54a33c127882d9a2ae4d +size 671 diff --git a/Skins/- + morgan spring/hit50-10.png b/Skins/- + morgan spring/hit50-10.png new file mode 100644 index 00000000..9cacc0d5 --- /dev/null +++ b/Skins/- + morgan spring/hit50-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def952ec27ac751cf4bc8941287013bdca6caa5f6ae9384a1120d9dab3cbe6c4 +size 1666 diff --git a/Skins/- + morgan spring/hit50-10@2x.png b/Skins/- + morgan spring/hit50-10@2x.png new file mode 100644 index 00000000..42d034fc --- /dev/null +++ b/Skins/- + morgan spring/hit50-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746869cec0d6e788044b8990109b11b4d163d9d3c204628f1df727f10154f04f +size 4997 diff --git a/Skins/- + morgan spring/hit50-11.png b/Skins/- + morgan spring/hit50-11.png new file mode 100644 index 00000000..299da631 --- /dev/null +++ b/Skins/- + morgan spring/hit50-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1120eff09f16f69897fa9e41cefcc6c1b2fbab57f49ca04d1b197f02e9b7a08 +size 1677 diff --git a/Skins/- + morgan spring/hit50-11@2x.png b/Skins/- + morgan spring/hit50-11@2x.png new file mode 100644 index 00000000..17b52b84 --- /dev/null +++ b/Skins/- + morgan spring/hit50-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40acc3b14807203fd5ad81e0e35bca7d0343f6b6d78e0b549a2d406c4925fe7 +size 5039 diff --git a/Skins/- + morgan spring/hit50-12.png b/Skins/- + morgan spring/hit50-12.png new file mode 100644 index 00000000..5a174001 --- /dev/null +++ b/Skins/- + morgan spring/hit50-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57fbda0746e8de1ba8132964f0396de5ab9b11763cacf8a35ccd88a04d750972 +size 1752 diff --git a/Skins/- + morgan spring/hit50-12@2x.png b/Skins/- + morgan spring/hit50-12@2x.png new file mode 100644 index 00000000..05a9a69e --- /dev/null +++ b/Skins/- + morgan spring/hit50-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448618aa4ddcc74796a0d643269026542cfeb9e8d80bfcaed91a9c6ff652a8d5 +size 5400 diff --git a/Skins/- + morgan spring/hit50-13.png b/Skins/- + morgan spring/hit50-13.png new file mode 100644 index 00000000..c1323c75 --- /dev/null +++ b/Skins/- + morgan spring/hit50-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a9795dc7cdaa76ea0bec4f03f7cbf54960324418dad3faa68308d27f3d2b1a +size 1719 diff --git a/Skins/- + morgan spring/hit50-13@2x.png b/Skins/- + morgan spring/hit50-13@2x.png new file mode 100644 index 00000000..e8780e3a --- /dev/null +++ b/Skins/- + morgan spring/hit50-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e3ad95626e0b21bc11b6a6479397d4b0cad17e9086e04061c50f8801610e49 +size 5235 diff --git a/Skins/- + morgan spring/hit50-14.png b/Skins/- + morgan spring/hit50-14.png new file mode 100644 index 00000000..7c0dc0b6 --- /dev/null +++ b/Skins/- + morgan spring/hit50-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f98a7e91f09debe9d29ca9c666ba3e84c58600ce88f7c25b96680e5084118f2 +size 1751 diff --git a/Skins/- + morgan spring/hit50-14@2x.png b/Skins/- + morgan spring/hit50-14@2x.png new file mode 100644 index 00000000..a17d3ca0 --- /dev/null +++ b/Skins/- + morgan spring/hit50-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1ae615ce8b98ba7fbbb5e00f481845ee9cae189708a22d9867759e7673d4bb +size 5130 diff --git a/Skins/- + morgan spring/hit50-15.png b/Skins/- + morgan spring/hit50-15.png new file mode 100644 index 00000000..386e18c8 --- /dev/null +++ b/Skins/- + morgan spring/hit50-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbe783208e7de22e8551caaa0b45647354d2000eb8cd12ee8db08e6d5a37fe4 +size 1825 diff --git a/Skins/- + morgan spring/hit50-15@2x.png b/Skins/- + morgan spring/hit50-15@2x.png new file mode 100644 index 00000000..0c6edfe9 --- /dev/null +++ b/Skins/- + morgan spring/hit50-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3bb2e02fe7f575363f2d96073dc7c57aed837933a17b017fabe15e1dbc22482 +size 5532 diff --git a/Skins/- + morgan spring/hit50-16.png b/Skins/- + morgan spring/hit50-16.png new file mode 100644 index 00000000..bd1988a3 --- /dev/null +++ b/Skins/- + morgan spring/hit50-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90433db84c18e7f97c71420a51fa8ceae0992f5be70f6e60961eb6841f8390c1 +size 1837 diff --git a/Skins/- + morgan spring/hit50-16@2x.png b/Skins/- + morgan spring/hit50-16@2x.png new file mode 100644 index 00000000..12e4bada --- /dev/null +++ b/Skins/- + morgan spring/hit50-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41f9af6253ab0193df47035c2bea7cf9f943034b491ed780b6e59e979d66b82 +size 5450 diff --git a/Skins/- + morgan spring/hit50-17.png b/Skins/- + morgan spring/hit50-17.png new file mode 100644 index 00000000..8ad5e679 --- /dev/null +++ b/Skins/- + morgan spring/hit50-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193a6684715cd7a0fb4153095f61e3be77e5b21401736ca7b57b893426dec538 +size 1929 diff --git a/Skins/- + morgan spring/hit50-17@2x.png b/Skins/- + morgan spring/hit50-17@2x.png new file mode 100644 index 00000000..1c46b478 --- /dev/null +++ b/Skins/- + morgan spring/hit50-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80a69e8cee37f01c8cc020e5a6d43c1e1260c766b609166a97566f8f47e86b1c +size 5637 diff --git a/Skins/- + morgan spring/hit50-18.png b/Skins/- + morgan spring/hit50-18.png new file mode 100644 index 00000000..c655ae25 --- /dev/null +++ b/Skins/- + morgan spring/hit50-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:986dc7bccb63f90c20df0aeb100b29a680d4c8b5d9719d9b84439c1fc08b4fd8 +size 1824 diff --git a/Skins/- + morgan spring/hit50-18@2x.png b/Skins/- + morgan spring/hit50-18@2x.png new file mode 100644 index 00000000..acdc0629 --- /dev/null +++ b/Skins/- + morgan spring/hit50-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc389c3987e3518ca36ebcbec9c6bce6e7fa126b37ac5ddfee68c55ec1144cac +size 5627 diff --git a/Skins/- + morgan spring/hit50-19.png b/Skins/- + morgan spring/hit50-19.png new file mode 100644 index 00000000..eb157c78 --- /dev/null +++ b/Skins/- + morgan spring/hit50-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a9cf9798ab18c570f2e3c77d29a414e019b34900d13fa5817f5af820e9e8fb1 +size 1787 diff --git a/Skins/- + morgan spring/hit50-19@2x.png b/Skins/- + morgan spring/hit50-19@2x.png new file mode 100644 index 00000000..ca210cd4 --- /dev/null +++ b/Skins/- + morgan spring/hit50-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca03befba7802d8f06c54dd11e22e62ed1a9e4b881b72d4403f0832773adc3ab +size 5535 diff --git a/Skins/- + morgan spring/hit50-1@2x.png b/Skins/- + morgan spring/hit50-1@2x.png new file mode 100644 index 00000000..425d1168 --- /dev/null +++ b/Skins/- + morgan spring/hit50-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4ad116aa926c598f1d7be8480a7496674d948cc3f3fecd235722788c7406ad +size 4074 diff --git a/Skins/- + morgan spring/hit50-2.png b/Skins/- + morgan spring/hit50-2.png new file mode 100644 index 00000000..39b9721a --- /dev/null +++ b/Skins/- + morgan spring/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a6cf5eda6940aab413b0cb07d2ab6e398fc0d1dcddc2b615cb2940e38c9b4c +size 976 diff --git a/Skins/- + morgan spring/hit50-20.png b/Skins/- + morgan spring/hit50-20.png new file mode 100644 index 00000000..5f6115b0 --- /dev/null +++ b/Skins/- + morgan spring/hit50-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f4f0afe2ffb43d3cd7d8208f69d076e7b057483be672b67899e39992a6a8e9 +size 1874 diff --git a/Skins/- + morgan spring/hit50-20@2x.png b/Skins/- + morgan spring/hit50-20@2x.png new file mode 100644 index 00000000..50935933 --- /dev/null +++ b/Skins/- + morgan spring/hit50-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd996f8a3747e72d673ea6fee0cc7984c390b730f174134569800553a284d98 +size 5780 diff --git a/Skins/- + morgan spring/hit50-21.png b/Skins/- + morgan spring/hit50-21.png new file mode 100644 index 00000000..59dfdb2a --- /dev/null +++ b/Skins/- + morgan spring/hit50-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af94f504d4f5c61d3e7282514f56c75cf4ae17634500ec546d70546267399bc +size 1936 diff --git a/Skins/- + morgan spring/hit50-21@2x.png b/Skins/- + morgan spring/hit50-21@2x.png new file mode 100644 index 00000000..a11e8c4d --- /dev/null +++ b/Skins/- + morgan spring/hit50-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e46a35731af4cf08ba7ad65774ea88123d3e140e9b487066fe504f404fc0fd33 +size 5854 diff --git a/Skins/- + morgan spring/hit50-22.png b/Skins/- + morgan spring/hit50-22.png new file mode 100644 index 00000000..f93e482a --- /dev/null +++ b/Skins/- + morgan spring/hit50-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ea16ad9f0b14d59d8f6a0fa6597865893917c966115476b6770cfc95c91500 +size 1999 diff --git a/Skins/- + morgan spring/hit50-22@2x.png b/Skins/- + morgan spring/hit50-22@2x.png new file mode 100644 index 00000000..085176b7 --- /dev/null +++ b/Skins/- + morgan spring/hit50-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8c75f9b472f46d7f82186e0c04a3d0f5da8b24e6c657b0f58c5831ea5a2ff4 +size 5852 diff --git a/Skins/- + morgan spring/hit50-23.png b/Skins/- + morgan spring/hit50-23.png new file mode 100644 index 00000000..bd939ee4 --- /dev/null +++ b/Skins/- + morgan spring/hit50-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5cc89be39dbac06ea00f6c4fde7ed472d93ea0c6fd857ab78a85898cabd9e69 +size 2012 diff --git a/Skins/- + morgan spring/hit50-23@2x.png b/Skins/- + morgan spring/hit50-23@2x.png new file mode 100644 index 00000000..0b2698e6 --- /dev/null +++ b/Skins/- + morgan spring/hit50-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dba81aa4e0a21f46c549fedecc5a85fa23461d5cd34d0e0e2fda8d20bccbc9f2 +size 6049 diff --git a/Skins/- + morgan spring/hit50-24.png b/Skins/- + morgan spring/hit50-24.png new file mode 100644 index 00000000..14a1aa8e --- /dev/null +++ b/Skins/- + morgan spring/hit50-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67ca897c5b60527612e7a2a7a98f4687c7128ce9e8ce99ca03bd27c51a26924 +size 1982 diff --git a/Skins/- + morgan spring/hit50-24@2x.png b/Skins/- + morgan spring/hit50-24@2x.png new file mode 100644 index 00000000..4c4012ac --- /dev/null +++ b/Skins/- + morgan spring/hit50-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93757f68142fdde271883483ad10fa13f9f7dbe0a66fdd2327376f0801594f0 +size 5930 diff --git a/Skins/- + morgan spring/hit50-25.png b/Skins/- + morgan spring/hit50-25.png new file mode 100644 index 00000000..b3b22635 --- /dev/null +++ b/Skins/- + morgan spring/hit50-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59c9652dda4b9ca418cee06c6d6dfdb9013ba3c55f6a8ea712ea948441ca4bf +size 1940 diff --git a/Skins/- + morgan spring/hit50-25@2x.png b/Skins/- + morgan spring/hit50-25@2x.png new file mode 100644 index 00000000..28d136c0 --- /dev/null +++ b/Skins/- + morgan spring/hit50-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5500e20e977615f382ee90ef012942f0a48fecb606fad786afe7d41a13050899 +size 5965 diff --git a/Skins/- + morgan spring/hit50-26.png b/Skins/- + morgan spring/hit50-26.png new file mode 100644 index 00000000..7f1a1e2c --- /dev/null +++ b/Skins/- + morgan spring/hit50-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fd86c4f8500186e8e3bc2a75403146a2ed8a26fdd64ebc31b07049a151a5fc +size 1927 diff --git a/Skins/- + morgan spring/hit50-26@2x.png b/Skins/- + morgan spring/hit50-26@2x.png new file mode 100644 index 00000000..fe5de098 --- /dev/null +++ b/Skins/- + morgan spring/hit50-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f79da64906ed94c0e39392a22142cb66a8d3dd99fdb603f78ba89a03657c12 +size 5932 diff --git a/Skins/- + morgan spring/hit50-27.png b/Skins/- + morgan spring/hit50-27.png new file mode 100644 index 00000000..79d5befd --- /dev/null +++ b/Skins/- + morgan spring/hit50-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc07334e2a9504dc2588f26e7849824fecc8c264328040df91351086cce13600 +size 1912 diff --git a/Skins/- + morgan spring/hit50-27@2x.png b/Skins/- + morgan spring/hit50-27@2x.png new file mode 100644 index 00000000..c56c215f --- /dev/null +++ b/Skins/- + morgan spring/hit50-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:438f2296f82b5a40b784d7c7985b09020f774b82c40023898e32836c56da0f70 +size 5920 diff --git a/Skins/- + morgan spring/hit50-28.png b/Skins/- + morgan spring/hit50-28.png new file mode 100644 index 00000000..7ab3022d --- /dev/null +++ b/Skins/- + morgan spring/hit50-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58dba1f071dba787a9cb4b1e5fd9cc018d14fc8dd7d61ab59b53ba24901ebffb +size 1886 diff --git a/Skins/- + morgan spring/hit50-28@2x.png b/Skins/- + morgan spring/hit50-28@2x.png new file mode 100644 index 00000000..caf099c7 --- /dev/null +++ b/Skins/- + morgan spring/hit50-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af9bee23faf372e2e8facd0e04f74e763854a9691973dcf1bb25647a87154b3 +size 5868 diff --git a/Skins/- + morgan spring/hit50-29.png b/Skins/- + morgan spring/hit50-29.png new file mode 100644 index 00000000..40815e4a --- /dev/null +++ b/Skins/- + morgan spring/hit50-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09cfc2582960eb3ec113ac3644eb6c7988d7e3b99e9bd21a3d01eb280bba1dcc +size 2030 diff --git a/Skins/- + morgan spring/hit50-29@2x.png b/Skins/- + morgan spring/hit50-29@2x.png new file mode 100644 index 00000000..fbe52633 --- /dev/null +++ b/Skins/- + morgan spring/hit50-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d5e80ad15b73ab176bdd1bc676114d3655f89872c9f07465b8693682a025e2 +size 6171 diff --git a/Skins/- + morgan spring/hit50-2@2x.png b/Skins/- + morgan spring/hit50-2@2x.png new file mode 100644 index 00000000..51ca703d --- /dev/null +++ b/Skins/- + morgan spring/hit50-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad3ca054905b73cfd46c87c0efa32bdd348a594b46f8edee717b0dedaee1dd7 +size 4160 diff --git a/Skins/- + morgan spring/hit50-3.png b/Skins/- + morgan spring/hit50-3.png new file mode 100644 index 00000000..ed316984 --- /dev/null +++ b/Skins/- + morgan spring/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a216b1699057cc27b31beb5452c78021f422351f240c199427f854b7b12da6a +size 1336 diff --git a/Skins/- + morgan spring/hit50-30.png b/Skins/- + morgan spring/hit50-30.png new file mode 100644 index 00000000..b5258a1a --- /dev/null +++ b/Skins/- + morgan spring/hit50-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50efa904dfc5deaf3303accc770c305bd4a3e0ee74ca426394312cf44584208c +size 2027 diff --git a/Skins/- + morgan spring/hit50-30@2x.png b/Skins/- + morgan spring/hit50-30@2x.png new file mode 100644 index 00000000..0f7fb963 --- /dev/null +++ b/Skins/- + morgan spring/hit50-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff2733ec0a45481330b1923cf0430757f9fbeae07daddcb925ed6e98279d401 +size 6184 diff --git a/Skins/- + morgan spring/hit50-31.png b/Skins/- + morgan spring/hit50-31.png new file mode 100644 index 00000000..4128d411 --- /dev/null +++ b/Skins/- + morgan spring/hit50-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7baf3cc33cbba2bbd73dcb4df70bdb2c2f44cf99596370a968e3f9bbfb5282db +size 2011 diff --git a/Skins/- + morgan spring/hit50-31@2x.png b/Skins/- + morgan spring/hit50-31@2x.png new file mode 100644 index 00000000..df9e0268 --- /dev/null +++ b/Skins/- + morgan spring/hit50-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a46f4224197bb93701ceb8ecfd70d21694ce83058a19ba502e69d606e3a3e56f +size 6160 diff --git a/Skins/- + morgan spring/hit50-32.png b/Skins/- + morgan spring/hit50-32.png new file mode 100644 index 00000000..2055cd18 --- /dev/null +++ b/Skins/- + morgan spring/hit50-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba20185926ab636e97a4c2fc744eb8341b6c4567c0b960120d0ad44b3509e7ad +size 2000 diff --git a/Skins/- + morgan spring/hit50-32@2x.png b/Skins/- + morgan spring/hit50-32@2x.png new file mode 100644 index 00000000..04820e64 --- /dev/null +++ b/Skins/- + morgan spring/hit50-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083ace2f5be76544ab4d0158539b2aeb007555c5bf64a0ae67c669f1952b7a9e +size 6160 diff --git a/Skins/- + morgan spring/hit50-33.png b/Skins/- + morgan spring/hit50-33.png new file mode 100644 index 00000000..8d5baf4c --- /dev/null +++ b/Skins/- + morgan spring/hit50-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84b98e97c550f429422cecdca8f4075d57275ed2136eb81af1bbdf21b8c3c14 +size 1962 diff --git a/Skins/- + morgan spring/hit50-33@2x.png b/Skins/- + morgan spring/hit50-33@2x.png new file mode 100644 index 00000000..ce1a2bb5 --- /dev/null +++ b/Skins/- + morgan spring/hit50-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237b9541b6f3b5c2de627d406f536a5534746a8e1edd72a1e64a95027b144a71 +size 6071 diff --git a/Skins/- + morgan spring/hit50-34.png b/Skins/- + morgan spring/hit50-34.png new file mode 100644 index 00000000..e62df37f --- /dev/null +++ b/Skins/- + morgan spring/hit50-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75994423bbdf9ae102072c2d8c068c49d110b4ee0325f36d83bd801bb00c6b5 +size 1952 diff --git a/Skins/- + morgan spring/hit50-34@2x.png b/Skins/- + morgan spring/hit50-34@2x.png new file mode 100644 index 00000000..73490743 --- /dev/null +++ b/Skins/- + morgan spring/hit50-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39217c727a18029cc07383075092f65597ea83620123ad27cf76990fbf4f79fc +size 5968 diff --git a/Skins/- + morgan spring/hit50-35.png b/Skins/- + morgan spring/hit50-35.png new file mode 100644 index 00000000..ba0d2a9e --- /dev/null +++ b/Skins/- + morgan spring/hit50-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44824418c92efa6745e2e02db3d764773586bf1558693f8d3739f668f0b15bd2 +size 1916 diff --git a/Skins/- + morgan spring/hit50-35@2x.png b/Skins/- + morgan spring/hit50-35@2x.png new file mode 100644 index 00000000..aae0f524 --- /dev/null +++ b/Skins/- + morgan spring/hit50-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f53505db872d34b3a2311140e43ef19b2fed45f08d4edf62867b525c93c2c93 +size 5785 diff --git a/Skins/- + morgan spring/hit50-36.png b/Skins/- + morgan spring/hit50-36.png new file mode 100644 index 00000000..8b2ad815 --- /dev/null +++ b/Skins/- + morgan spring/hit50-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70a76bc694560187563bef179bb3ff9aa974822ce54f2679941027172f99d3c +size 1805 diff --git a/Skins/- + morgan spring/hit50-36@2x.png b/Skins/- + morgan spring/hit50-36@2x.png new file mode 100644 index 00000000..41542b0f --- /dev/null +++ b/Skins/- + morgan spring/hit50-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b44dd3b8279a7293368fe67cbe3d85e931bb82ea209e17a9bf2fb470d425773e +size 5759 diff --git a/Skins/- + morgan spring/hit50-37.png b/Skins/- + morgan spring/hit50-37.png new file mode 100644 index 00000000..73f78dc1 --- /dev/null +++ b/Skins/- + morgan spring/hit50-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589e544a19337e1d54d03ce945db0aca201def0ccc830bddce6cb23fbe40980b +size 1758 diff --git a/Skins/- + morgan spring/hit50-37@2x.png b/Skins/- + morgan spring/hit50-37@2x.png new file mode 100644 index 00000000..470078ae --- /dev/null +++ b/Skins/- + morgan spring/hit50-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57af3be102b6da2647942947798ff1b395d8964a36346744b2484253931a593b +size 5573 diff --git a/Skins/- + morgan spring/hit50-38.png b/Skins/- + morgan spring/hit50-38.png new file mode 100644 index 00000000..6093984a --- /dev/null +++ b/Skins/- + morgan spring/hit50-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055390210607cded36f25ba9f9a31d92690e23dc45d4cddcc5fc741512cfafc9 +size 1445 diff --git a/Skins/- + morgan spring/hit50-38@2x.png b/Skins/- + morgan spring/hit50-38@2x.png new file mode 100644 index 00000000..348b516a --- /dev/null +++ b/Skins/- + morgan spring/hit50-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e852d25d3cf3ac592c377aa24ddf7b0eaab0f025325b9719b97c48d48d8d8489 +size 5405 diff --git a/Skins/- + morgan spring/hit50-39.png b/Skins/- + morgan spring/hit50-39.png new file mode 100644 index 00000000..0c906577 --- /dev/null +++ b/Skins/- + morgan spring/hit50-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b661322220d96e60c47ff33f3e02c7946ac6b040d44f7ae0061332b5c95304 +size 1057 diff --git a/Skins/- + morgan spring/hit50-39@2x.png b/Skins/- + morgan spring/hit50-39@2x.png new file mode 100644 index 00000000..bfd1c9bd --- /dev/null +++ b/Skins/- + morgan spring/hit50-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2d3fd1e44567cc725ddc6c375ea855ac543355cc8f48ab2eee2cd44541d022 +size 5283 diff --git a/Skins/- + morgan spring/hit50-3@2x.png b/Skins/- + morgan spring/hit50-3@2x.png new file mode 100644 index 00000000..5a533ee3 --- /dev/null +++ b/Skins/- + morgan spring/hit50-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9402526bc5a89e412712da1d2ec7009c33b7f3d8a2ac34288ffa6a2ec9a3ad3d +size 4418 diff --git a/Skins/- + morgan spring/hit50-4.png b/Skins/- + morgan spring/hit50-4.png new file mode 100644 index 00000000..36671ca4 --- /dev/null +++ b/Skins/- + morgan spring/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b3087d242aeac4fbbc47e209a50e960010fa80ff10f35812e8bc6705caaa70 +size 1462 diff --git a/Skins/- + morgan spring/hit50-40.png b/Skins/- + morgan spring/hit50-40.png new file mode 100644 index 00000000..a16a9a77 --- /dev/null +++ b/Skins/- + morgan spring/hit50-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c0842cf7ccb7d08bdf490728a0b602848b4305ae3a737ae313a5abea576462 +size 171 diff --git a/Skins/- + morgan spring/hit50-40@2x.png b/Skins/- + morgan spring/hit50-40@2x.png new file mode 100644 index 00000000..4938d957 --- /dev/null +++ b/Skins/- + morgan spring/hit50-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f906999e95d7257756179e5ac6e4eb5516a2d23b9bef2ab396f41bf029e8ab +size 236 diff --git a/Skins/- + morgan spring/hit50-4@2x.png b/Skins/- + morgan spring/hit50-4@2x.png new file mode 100644 index 00000000..8c403dc7 --- /dev/null +++ b/Skins/- + morgan spring/hit50-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d7c46ea3b6d310fc7ca6c7cfc0836860525f2c98a0f05aee93da00055b84bb +size 4365 diff --git a/Skins/- + morgan spring/hit50-5.png b/Skins/- + morgan spring/hit50-5.png new file mode 100644 index 00000000..892b114d --- /dev/null +++ b/Skins/- + morgan spring/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c1a1864831ff32c9301ae573beea1dcdaa9e40833f7724e5005e81858edc441 +size 1484 diff --git a/Skins/- + morgan spring/hit50-5@2x.png b/Skins/- + morgan spring/hit50-5@2x.png new file mode 100644 index 00000000..0272e1df --- /dev/null +++ b/Skins/- + morgan spring/hit50-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3171f6a2221323747a5a24e5b3051754ca532ef10b1b4fde3e44651c1343fbef +size 4545 diff --git a/Skins/- + morgan spring/hit50-6.png b/Skins/- + morgan spring/hit50-6.png new file mode 100644 index 00000000..5605b608 --- /dev/null +++ b/Skins/- + morgan spring/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af66b170d593dc0f9ce631f9c871ee1e9b0c67a3d91882c59c51273e3ddf60a2 +size 1467 diff --git a/Skins/- + morgan spring/hit50-6@2x.png b/Skins/- + morgan spring/hit50-6@2x.png new file mode 100644 index 00000000..fbf0da02 --- /dev/null +++ b/Skins/- + morgan spring/hit50-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0950f474038f33e1d31904757ac197bf18c54c94fd10c1da2beda9018be9b970 +size 4712 diff --git a/Skins/- + morgan spring/hit50-7.png b/Skins/- + morgan spring/hit50-7.png new file mode 100644 index 00000000..2b294c2a --- /dev/null +++ b/Skins/- + morgan spring/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5051b5ac88cdea846b2745133193ed23868cbaa34f511230cd604e836d70b538 +size 1511 diff --git a/Skins/- + morgan spring/hit50-7@2x.png b/Skins/- + morgan spring/hit50-7@2x.png new file mode 100644 index 00000000..2614dc60 --- /dev/null +++ b/Skins/- + morgan spring/hit50-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35eb926d6374f7f63f055fdfa20678d8a7dc5cf1d1eb9b3c8cdce76728312e2b +size 4836 diff --git a/Skins/- + morgan spring/hit50-8.png b/Skins/- + morgan spring/hit50-8.png new file mode 100644 index 00000000..0b58f14a --- /dev/null +++ b/Skins/- + morgan spring/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8b8e7d9c41dd4a352263fa40bd3b287e9d3ca16a5ca89c4a7f0f63b71dec97 +size 1600 diff --git a/Skins/- + morgan spring/hit50-8@2x.png b/Skins/- + morgan spring/hit50-8@2x.png new file mode 100644 index 00000000..513f5ee4 --- /dev/null +++ b/Skins/- + morgan spring/hit50-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0c47a6f24f822ef159807ac25b06b84839d498a271ac90c8aedffca54955e7 +size 4720 diff --git a/Skins/- + morgan spring/hit50-9.png b/Skins/- + morgan spring/hit50-9.png new file mode 100644 index 00000000..2f63fe2f --- /dev/null +++ b/Skins/- + morgan spring/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e82bcf3c4fef2066589a87de0f8532004eeec1bbbf13721a5d007d33784fed5c +size 1553 diff --git a/Skins/- + morgan spring/hit50-9@2x.png b/Skins/- + morgan spring/hit50-9@2x.png new file mode 100644 index 00000000..630a09aa --- /dev/null +++ b/Skins/- + morgan spring/hit50-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5c90edec4f18f1311ae993aaa72f0e2a894af427f233aa55883de1771a5976 +size 5028 diff --git a/Skins/- + morgan spring/hit50.png b/Skins/- + morgan spring/hit50.png new file mode 100644 index 00000000..fe7604a6 --- /dev/null +++ b/Skins/- + morgan spring/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da423dce2154b4f3b141b6bfe433938945a3d3c9a571c72eeee2bf7f548f08b +size 4713 diff --git a/Skins/- + morgan spring/hit50@2x.png b/Skins/- + morgan spring/hit50@2x.png new file mode 100644 index 00000000..8afc2f12 --- /dev/null +++ b/Skins/- + morgan spring/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4825f3cd01944a56104e61f1757cd621fafd9693d6d1866e4e478745032a1ed0 +size 6713 diff --git a/Skins/- + morgan spring/hitcircle.png b/Skins/- + morgan spring/hitcircle.png new file mode 100644 index 00000000..58edacff --- /dev/null +++ b/Skins/- + morgan spring/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e081bcb246d426acaac852fa4a6cd05e5c6804989d0187301144679128d77ec +size 9659 diff --git a/Skins/- + morgan spring/hitcircle@2x.png b/Skins/- + morgan spring/hitcircle@2x.png new file mode 100644 index 00000000..db08a81f --- /dev/null +++ b/Skins/- + morgan spring/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4af6f90974c9e7009dfdf92db349069d444a0b21e9aee74cbab190a2bdb5833 +size 355 diff --git a/Skins/- + morgan spring/hitcircleoverlay-0@2x.png b/Skins/- + morgan spring/hitcircleoverlay-0@2x.png new file mode 100644 index 00000000..d563dede --- /dev/null +++ b/Skins/- + morgan spring/hitcircleoverlay-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8db7b17c5659997984c37d0ccb22c7b06da499b80a414daad49b53e68a65af5 +size 23364 diff --git a/Skins/- + morgan spring/hitcircleoverlay.png b/Skins/- + morgan spring/hitcircleoverlay.png new file mode 100644 index 00000000..e84ae01b --- /dev/null +++ b/Skins/- + morgan spring/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2242085fcfd0a3680fe53191a999547fe99a3703fbbae2925c799df6ef287b +size 8362 diff --git a/Skins/- + morgan spring/hitcircleselect.png b/Skins/- + morgan spring/hitcircleselect.png new file mode 100644 index 00000000..07c09e10 --- /dev/null +++ b/Skins/- + morgan spring/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272a1c1ec1b6fea53816f8cf697a5c93f7babf48479b3d6398463aa6ac651fab +size 13475 diff --git a/Skins/- + morgan spring/inputoverlay-background.png b/Skins/- + morgan spring/inputoverlay-background.png new file mode 100644 index 00000000..0b44ce46 --- /dev/null +++ b/Skins/- + morgan spring/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e83e25a843090204575be435e9e602396f2aa48876577575980092e75e18b0 +size 467 diff --git a/Skins/- + morgan spring/inputoverlay-background@2x.png b/Skins/- + morgan spring/inputoverlay-background@2x.png new file mode 100644 index 00000000..6a1382cf --- /dev/null +++ b/Skins/- + morgan spring/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e18cb317b2ee463a7e4d0d3f3ca03e3be1a772504ec1ba562a9a55d320062b40 +size 455 diff --git a/Skins/- + morgan spring/inputoverlay-key.png b/Skins/- + morgan spring/inputoverlay-key.png new file mode 100644 index 00000000..a7922ebc --- /dev/null +++ b/Skins/- + morgan spring/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ee13d8a4714c690f1b4f0f96d5dbcb17b3758fcf4c67c6fb969202176c2967 +size 234 diff --git a/Skins/- + morgan spring/inputoverlay-key@2x.png b/Skins/- + morgan spring/inputoverlay-key@2x.png new file mode 100644 index 00000000..1211c9e0 --- /dev/null +++ b/Skins/- + morgan spring/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04cde8ced2dd195ff24ed8a58203a0244d6e14c269bdd060da9b2fac08f86c7e +size 344 diff --git a/Skins/- + morgan spring/key-press-1.wav b/Skins/- + morgan spring/key-press-1.wav new file mode 100644 index 00000000..286126cd --- /dev/null +++ b/Skins/- + morgan spring/key-press-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a73f082fda18e45527888b5618f2f86aad381a269769b0288a633d30db902bb7 +size 47250 diff --git a/Skins/- + morgan spring/key-press-2.wav b/Skins/- + morgan spring/key-press-2.wav new file mode 100644 index 00000000..7cd38041 --- /dev/null +++ b/Skins/- + morgan spring/key-press-2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57476fff21765b4bf853370a48356e24bbdfd7158d02dc2a1c16077df41ca7d +size 47250 diff --git a/Skins/- + morgan spring/key-press-3.wav b/Skins/- + morgan spring/key-press-3.wav new file mode 100644 index 00000000..33482c5f --- /dev/null +++ b/Skins/- + morgan spring/key-press-3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a4a85149253660f44902e2de466e9ba43396865ddebcd94f149d9cc5bdddc0 +size 47250 diff --git a/Skins/- + morgan spring/key-press-4.wav b/Skins/- + morgan spring/key-press-4.wav new file mode 100644 index 00000000..5446f766 --- /dev/null +++ b/Skins/- + morgan spring/key-press-4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ada7797f594ce0548c0b3d268c5f19f3ec7ba0d815ebc9e5e109c0e0a120af +size 47250 diff --git a/Skins/- + morgan spring/lighting.png b/Skins/- + morgan spring/lighting.png new file mode 100644 index 00000000..eda8296c --- /dev/null +++ b/Skins/- + morgan spring/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04fcd6aa83a88a837841536c55c8c41b25f8d47e6ad567aefd539afad28532e3 +size 9278 diff --git a/Skins/- + morgan spring/match-confirm.wav b/Skins/- + morgan spring/match-confirm.wav new file mode 100644 index 00000000..1c200078 --- /dev/null +++ b/Skins/- + morgan spring/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3080f4fe3022fad58311afc95d94cafa3f02067ba4fca71bc9900ecad2b223c +size 202004 diff --git a/Skins/- + morgan spring/match-join.wav b/Skins/- + morgan spring/match-join.wav new file mode 100644 index 00000000..0248f2d5 --- /dev/null +++ b/Skins/- + morgan spring/match-join.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df4d853a615d0db4e45aad14cb4285bc2988d75941fbd2237c02191ffa92a34 +size 106618 diff --git a/Skins/- + morgan spring/match-leave.wav b/Skins/- + morgan spring/match-leave.wav new file mode 100644 index 00000000..6f72dc74 --- /dev/null +++ b/Skins/- + morgan spring/match-leave.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2719bd0345fb87bcf808e8b37549cd3611f3f9243018ac89317b0afca8885d41 +size 69754 diff --git a/Skins/- + morgan spring/match-start.wav b/Skins/- + morgan spring/match-start.wav new file mode 100644 index 00000000..f6eb126b --- /dev/null +++ b/Skins/- + morgan spring/match-start.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a52e972fe483f3683f669cf41322081d7b4fbebe9b24ece3cfb2d61e5636a00 +size 238144 diff --git a/Skins/- + morgan spring/menu-back-hover.wav b/Skins/- + morgan spring/menu-back-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menu-back-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menu-back.png b/Skins/- + morgan spring/menu-back.png new file mode 100644 index 00000000..9a14ca3f --- /dev/null +++ b/Skins/- + morgan spring/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2cbd970a3399322244f2b9b4213f19a9175f9cbd9c00f4fa354831534d0e737 +size 31773 diff --git a/Skins/- + morgan spring/menu-back@2x.png b/Skins/- + morgan spring/menu-back@2x.png new file mode 100644 index 00000000..2ba2ce0a --- /dev/null +++ b/Skins/- + morgan spring/menu-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55b9e8839c47ab2c02871655dc0af4d9d0050999b5b9d2482b7d66917c03430 +size 35490 diff --git a/Skins/- + morgan spring/menu-background.jpg b/Skins/- + morgan spring/menu-background.jpg new file mode 100644 index 00000000..1aa8b5ba --- /dev/null +++ b/Skins/- + morgan spring/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864fe36ba144800ca5218a23673eb511d700a4b2d42b59d7ae17ffeca3513193 +size 366426 diff --git a/Skins/- + morgan spring/menu-button-background.png b/Skins/- + morgan spring/menu-button-background.png new file mode 100644 index 00000000..217c3e96 --- /dev/null +++ b/Skins/- + morgan spring/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c63943394fb5058a70036b3c4cc72ab51d9e9c15ab33a52c8c252a1865392c3 +size 19242 diff --git a/Skins/- + morgan spring/menu-button-background@2x.png b/Skins/- + morgan spring/menu-button-background@2x.png new file mode 100644 index 00000000..ae9d0f8c --- /dev/null +++ b/Skins/- + morgan spring/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90fd9f8e5c20c7ee1a3e6e37c4f598c3d1ddcaa3d561f715869193ef9b9bc254 +size 19869 diff --git a/Skins/- + morgan spring/menu-charts-hover.wav b/Skins/- + morgan spring/menu-charts-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menu-charts-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menu-direct-hover.wav b/Skins/- + morgan spring/menu-direct-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menu-direct-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menu-edit-hover.wav b/Skins/- + morgan spring/menu-edit-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menu-edit-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menu-exit-hover.wav b/Skins/- + morgan spring/menu-exit-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menu-exit-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menu-freeplay-hover.wav b/Skins/- + morgan spring/menu-freeplay-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menu-freeplay-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menu-multiplayer-hover.wav b/Skins/- + morgan spring/menu-multiplayer-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menu-multiplayer-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menu-options-hover.wav b/Skins/- + morgan spring/menu-options-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menu-options-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menu-play-hover.wav b/Skins/- + morgan spring/menu-play-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menu-play-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menuback.wav b/Skins/- + morgan spring/menuback.wav new file mode 100644 index 00000000..8b8a115c --- /dev/null +++ b/Skins/- + morgan spring/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5fc024a108de01744b20b6d20c95aed21fd2ee68cddaa7148b5f478c51291bd +size 31804 diff --git a/Skins/- + morgan spring/menuclick.wav b/Skins/- + morgan spring/menuclick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/menuhit.mp3 b/Skins/- + morgan spring/menuhit.mp3 new file mode 100644 index 00000000..2769d817 --- /dev/null +++ b/Skins/- + morgan spring/menuhit.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b5b074a81972cf14e7cd87db79991344b3a97a6b509af0f403b0f05baf485b +size 7566 diff --git a/Skins/- + morgan spring/menuhit.wav b/Skins/- + morgan spring/menuhit.wav new file mode 100644 index 00000000..d317abac --- /dev/null +++ b/Skins/- + morgan spring/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c291b8e9e323be085c1ecbfd8872a1c29a36ca4322bbe3b5de8ce905153c50 +size 71874 diff --git a/Skins/- + morgan spring/metronomelow.wav b/Skins/- + morgan spring/metronomelow.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/- + morgan spring/metronomelow.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/- + morgan spring/normal-hitclap.wav b/Skins/- + morgan spring/normal-hitclap.wav new file mode 100644 index 00000000..63915ce0 --- /dev/null +++ b/Skins/- + morgan spring/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba4d1f5035999c1cc90bcd6b6b30e81921ee4d904091d9bb79d6f83c01b185c +size 1506 diff --git a/Skins/- + morgan spring/normal-hitclap2.wav b/Skins/- + morgan spring/normal-hitclap2.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/- + morgan spring/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/- + morgan spring/normal-hitfinish.wav b/Skins/- + morgan spring/normal-hitfinish.wav new file mode 100644 index 00000000..6a389fef --- /dev/null +++ b/Skins/- + morgan spring/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb35b75da2acb784cfd3bb6a8648afecb6a48789a261fd3ea05747628386844 +size 12020 diff --git a/Skins/- + morgan spring/normal-hitfinish2.wav b/Skins/- + morgan spring/normal-hitfinish2.wav new file mode 100644 index 00000000..f4647136 --- /dev/null +++ b/Skins/- + morgan spring/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f272833b9f0ba3dff5679939d942a58942f51e7eebde12de6ccfa0ea648d8a +size 258960 diff --git a/Skins/- + morgan spring/normal-hitnormal.wav b/Skins/- + morgan spring/normal-hitnormal.wav new file mode 100644 index 00000000..fc52a164 --- /dev/null +++ b/Skins/- + morgan spring/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b24e656be07d9722c0e00965492bc357810b3efa360e3ef64e49b3677f7dbe1 +size 20880 diff --git a/Skins/- + morgan spring/normal-hitnormal1.wav b/Skins/- + morgan spring/normal-hitnormal1.wav new file mode 100644 index 00000000..cec1019d --- /dev/null +++ b/Skins/- + morgan spring/normal-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dca52d80e879542897592baeb72251656e0241e551940132d289a0d6d973d61 +size 25504 diff --git a/Skins/- + morgan spring/normal-hitnormal2.wav b/Skins/- + morgan spring/normal-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/- + morgan spring/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/- + morgan spring/normal-hitwhistle.wav b/Skins/- + morgan spring/normal-hitwhistle.wav new file mode 100644 index 00000000..47bcb50f --- /dev/null +++ b/Skins/- + morgan spring/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4592a5431853090cde45f38936efa7fecf13b7d2b252d59b63eb890c94573c6d +size 25804 diff --git a/Skins/- + morgan spring/normal-hitwhistle1.wav b/Skins/- + morgan spring/normal-hitwhistle1.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/- + morgan spring/normal-hitwhistle1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/- + morgan spring/normal-hitwhistle2.wav b/Skins/- + morgan spring/normal-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/- + morgan spring/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/- + morgan spring/normal-sliderslide.wav b/Skins/- + morgan spring/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/normal-sliderslide2.wav b/Skins/- + morgan spring/normal-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/normal-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/normal-slidertick.wav b/Skins/- + morgan spring/normal-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- + morgan spring/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- + morgan spring/normal-slidertick2.wav b/Skins/- + morgan spring/normal-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/normal-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/normal-sliderwhistle.wav b/Skins/- + morgan spring/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- + morgan spring/normal-sliderwhistle2.wav b/Skins/- + morgan spring/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/pause-back.png b/Skins/- + morgan spring/pause-back.png new file mode 100644 index 00000000..4c4f096c --- /dev/null +++ b/Skins/- + morgan spring/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c4558b4d5a9a8a68085b3ea8869be175f703715c911d68eb453595189c93ee5 +size 26893 diff --git a/Skins/- + morgan spring/pause-back@2x.png b/Skins/- + morgan spring/pause-back@2x.png new file mode 100644 index 00000000..e1bef89c --- /dev/null +++ b/Skins/- + morgan spring/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b6bead1c38b80c405da6dc32cbca88e6ead47ec29be0e7582ea3318daaaef1 +size 31613 diff --git a/Skins/- + morgan spring/pause-continue.png b/Skins/- + morgan spring/pause-continue.png new file mode 100644 index 00000000..5564b3a0 --- /dev/null +++ b/Skins/- + morgan spring/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e322c9ebcc471d61eb99bdfa03569e2bc13231f72aaf916b2a8514d318514a36 +size 29300 diff --git a/Skins/- + morgan spring/pause-continue@2x.png b/Skins/- + morgan spring/pause-continue@2x.png new file mode 100644 index 00000000..5bfe6402 --- /dev/null +++ b/Skins/- + morgan spring/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8702aa122090d068a534887f534065f00a1171516589b968d4d3ff200ace5bf +size 35420 diff --git a/Skins/- + morgan spring/pause-overlay.png b/Skins/- + morgan spring/pause-overlay.png new file mode 100644 index 00000000..c4646d23 --- /dev/null +++ b/Skins/- + morgan spring/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1bb83fcb0528d5f08f6e7cbf2fcdcf68694942eb59fe5d1eccda3c29fd94369 +size 23539 diff --git a/Skins/- + morgan spring/pause-overlay@2x.png b/Skins/- + morgan spring/pause-overlay@2x.png new file mode 100644 index 00000000..dc902c6f --- /dev/null +++ b/Skins/- + morgan spring/pause-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ee62da0455ae1e0a53e32d80188b4b90fb6b70714c4840805437991013f6b1 +size 37724 diff --git a/Skins/- + morgan spring/pause-replay.png b/Skins/- + morgan spring/pause-replay.png new file mode 100644 index 00000000..5fa23f67 --- /dev/null +++ b/Skins/- + morgan spring/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb4bb91e3c2e141e6c94e78ff14e0d555ede8e6509d91171abd3153f1ccf4ac +size 12435 diff --git a/Skins/- + morgan spring/pause-replay@2x.png b/Skins/- + morgan spring/pause-replay@2x.png new file mode 100644 index 00000000..16b59ec3 --- /dev/null +++ b/Skins/- + morgan spring/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:693cd57489181bbaa11ae48c243b95867eff6f7b753a4b1908141e221bbbef6d +size 41740 diff --git a/Skins/- + morgan spring/pause-retry.png b/Skins/- + morgan spring/pause-retry.png new file mode 100644 index 00000000..a27d43e2 --- /dev/null +++ b/Skins/- + morgan spring/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9a20417f36054589db8fa7f1a0efcf78e3f7b2c3fe5539d6f28cfcd2fe7ab4 +size 6773 diff --git a/Skins/- + morgan spring/pause-retry@2x.png b/Skins/- + morgan spring/pause-retry@2x.png new file mode 100644 index 00000000..dcd6d701 --- /dev/null +++ b/Skins/- + morgan spring/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99643fc90fcb8b93e918c94ce147226ec338039398365b1aef6dc0d3e99bda0 +size 31686 diff --git a/Skins/- + morgan spring/play-skip.png b/Skins/- + morgan spring/play-skip.png new file mode 100644 index 00000000..f0eb130a --- /dev/null +++ b/Skins/- + morgan spring/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308d737fc6e4e06c126974e9b5947e90e2ee8db9b09bc39f6017d04e902acdc3 +size 51476 diff --git a/Skins/- + morgan spring/ranking-2title.png b/Skins/- + morgan spring/ranking-2title.png new file mode 100644 index 00000000..5217ba19 --- /dev/null +++ b/Skins/- + morgan spring/ranking-2title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb98a927bd2dc673edfa6c34ebaabb6efbffac32686729e40ab316cdb324ae71 +size 26882 diff --git a/Skins/- + morgan spring/ranking-A-small.png b/Skins/- + morgan spring/ranking-A-small.png new file mode 100644 index 00000000..4c1197a5 --- /dev/null +++ b/Skins/- + morgan spring/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8805c095ee50aa4e93e32d4cbca292d00fbc6519bd317d3564adab20b37822ea +size 4805 diff --git a/Skins/- + morgan spring/ranking-A-small@2x.png b/Skins/- + morgan spring/ranking-A-small@2x.png new file mode 100644 index 00000000..9e203ed8 --- /dev/null +++ b/Skins/- + morgan spring/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4152893b15547ac7ad4d962a398ff5c67223e0569d7fef89de937944eb5f72 +size 24504 diff --git a/Skins/- + morgan spring/ranking-A.png b/Skins/- + morgan spring/ranking-A.png new file mode 100644 index 00000000..9f237091 --- /dev/null +++ b/Skins/- + morgan spring/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f847a76c55a868aa9ede12645887499465bf0f7815831ab6f5fa82db2181c6e +size 45240 diff --git a/Skins/- + morgan spring/ranking-A@2x.png b/Skins/- + morgan spring/ranking-A@2x.png new file mode 100644 index 00000000..4473639e --- /dev/null +++ b/Skins/- + morgan spring/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c2fd6268b3fd91dc3a860d2ca4aa4bbf262d4423a81c2108ae1c9040a93127 +size 78236 diff --git a/Skins/- + morgan spring/ranking-B-small.png b/Skins/- + morgan spring/ranking-B-small.png new file mode 100644 index 00000000..bf33fbf7 --- /dev/null +++ b/Skins/- + morgan spring/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c373b61bcc464c08b0d40bad2ec3e1d0494b8a17cbdec990ed77e464053c30b9 +size 4781 diff --git a/Skins/- + morgan spring/ranking-B-small@2x.png b/Skins/- + morgan spring/ranking-B-small@2x.png new file mode 100644 index 00000000..e30cf1b1 --- /dev/null +++ b/Skins/- + morgan spring/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d3bfcb0a45cf006b950a25ed9816574fb3f331829beb49cf42f098e64af0e6a +size 23271 diff --git a/Skins/- + morgan spring/ranking-B.png b/Skins/- + morgan spring/ranking-B.png new file mode 100644 index 00000000..44cba5f7 --- /dev/null +++ b/Skins/- + morgan spring/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88688b2822d799f9fd8dcc09ad66ac36ca0e8944235e4be7ec2d9f2cc9f3825b +size 48461 diff --git a/Skins/- + morgan spring/ranking-B@2x.png b/Skins/- + morgan spring/ranking-B@2x.png new file mode 100644 index 00000000..1bd94e46 --- /dev/null +++ b/Skins/- + morgan spring/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab03049b6d49dd52a24a54632ec7d307a9f17505bcbebc76d908d1b8197fbb95 +size 63329 diff --git a/Skins/- + morgan spring/ranking-C-small.png b/Skins/- + morgan spring/ranking-C-small.png new file mode 100644 index 00000000..29239531 --- /dev/null +++ b/Skins/- + morgan spring/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06ccc79ea78f00235a6bd652ede2cbca0e038fa411249472a287d084101b776 +size 4189 diff --git a/Skins/- + morgan spring/ranking-C-small@2x.png b/Skins/- + morgan spring/ranking-C-small@2x.png new file mode 100644 index 00000000..12b69850 --- /dev/null +++ b/Skins/- + morgan spring/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9bafa03b2e7b36d01b33d4cf0ca8465871c212acf83a7d461811b916921dba +size 24141 diff --git a/Skins/- + morgan spring/ranking-C.png b/Skins/- + morgan spring/ranking-C.png new file mode 100644 index 00000000..3d357d63 --- /dev/null +++ b/Skins/- + morgan spring/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383e92ec35590080aebd2dc5f57350209a189de4a77992a788e7f7d1665a14eb +size 34519 diff --git a/Skins/- + morgan spring/ranking-C@2x.png b/Skins/- + morgan spring/ranking-C@2x.png new file mode 100644 index 00000000..db1def26 --- /dev/null +++ b/Skins/- + morgan spring/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6bca3f7355a310baec362e38ada02f6914acf7fca097de096fae03b86f7d494 +size 75554 diff --git a/Skins/- + morgan spring/ranking-D-small.png b/Skins/- + morgan spring/ranking-D-small.png new file mode 100644 index 00000000..2af1c2fd --- /dev/null +++ b/Skins/- + morgan spring/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:177eadc59a30660a087c7e1774f0aeef8ac818ef40780712656880833051fbae +size 4588 diff --git a/Skins/- + morgan spring/ranking-D-small@2x.png b/Skins/- + morgan spring/ranking-D-small@2x.png new file mode 100644 index 00000000..9e50553e --- /dev/null +++ b/Skins/- + morgan spring/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9b082813f5afbcacee3b8f989712035a3db3d2f9af3ef488bbe760ef7ae3c2 +size 23417 diff --git a/Skins/- + morgan spring/ranking-D.png b/Skins/- + morgan spring/ranking-D.png new file mode 100644 index 00000000..f5531298 --- /dev/null +++ b/Skins/- + morgan spring/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb0385e4ee6782dd10c97703fbaae9a8d511492739de7857b8bfb6880721d26 +size 47868 diff --git a/Skins/- + morgan spring/ranking-D@2x.png b/Skins/- + morgan spring/ranking-D@2x.png new file mode 100644 index 00000000..e47276a0 --- /dev/null +++ b/Skins/- + morgan spring/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ebfb062d558e7763f2f19f8eba8b3d0cc25eb696daf8da49b4e353a72638dc +size 59028 diff --git a/Skins/- + morgan spring/ranking-S-small.png b/Skins/- + morgan spring/ranking-S-small.png new file mode 100644 index 00000000..fc6f3eac --- /dev/null +++ b/Skins/- + morgan spring/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f66fc3bd3dfb141f44e8bdbd516c540fa15bfe928641471e242f9e5a26f4095 +size 4441 diff --git a/Skins/- + morgan spring/ranking-S-small@2x.png b/Skins/- + morgan spring/ranking-S-small@2x.png new file mode 100644 index 00000000..d00babc3 --- /dev/null +++ b/Skins/- + morgan spring/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287a5c8016214380d3a0eab8580d7b2985c16355e22849531e725eec5d727a73 +size 24677 diff --git a/Skins/- + morgan spring/ranking-S.png b/Skins/- + morgan spring/ranking-S.png new file mode 100644 index 00000000..16b238c3 --- /dev/null +++ b/Skins/- + morgan spring/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e200c609a018ec66d7ead827a1a84ab18ffdb13014f3a6c482b3182a3f8c625c +size 39088 diff --git a/Skins/- + morgan spring/ranking-S@2x.png b/Skins/- + morgan spring/ranking-S@2x.png new file mode 100644 index 00000000..af28fd7f --- /dev/null +++ b/Skins/- + morgan spring/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c22bfcd42443f166ef808698f596d8d25375c9f2cdb384369cf2beea4fa9c3 +size 84533 diff --git a/Skins/- + morgan spring/ranking-SH-small.png b/Skins/- + morgan spring/ranking-SH-small.png new file mode 100644 index 00000000..36409808 --- /dev/null +++ b/Skins/- + morgan spring/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ac4e4d27772217b4af380f8603d91c56c162b5c4bfa65f064cb2fde6c10ca2 +size 4367 diff --git a/Skins/- + morgan spring/ranking-SH-small@2x.png b/Skins/- + morgan spring/ranking-SH-small@2x.png new file mode 100644 index 00000000..feba3e69 --- /dev/null +++ b/Skins/- + morgan spring/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e61e543ea55f69c84036b5447f718bf3cba6d9fdd01853ecd9aae03ee3ee34 +size 23474 diff --git a/Skins/- + morgan spring/ranking-SH.png b/Skins/- + morgan spring/ranking-SH.png new file mode 100644 index 00000000..8d669b31 --- /dev/null +++ b/Skins/- + morgan spring/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f2be288e728c8c7bfb458dfa9aecd5f4f75e3fa6721fc0b342aa4eeed9ba56 +size 42997 diff --git a/Skins/- + morgan spring/ranking-SH@2x.png b/Skins/- + morgan spring/ranking-SH@2x.png new file mode 100644 index 00000000..246d8fd3 --- /dev/null +++ b/Skins/- + morgan spring/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afaf34b4b98241acefa0e52a017915c31247e50cc93ff18b37f8872e5def7dc +size 80945 diff --git a/Skins/- + morgan spring/ranking-X-small.png b/Skins/- + morgan spring/ranking-X-small.png new file mode 100644 index 00000000..ba4f2d95 --- /dev/null +++ b/Skins/- + morgan spring/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d8ea0c1021493179639f0f3569f7dd168eba305e5ac71704d145091d71810c +size 4824 diff --git a/Skins/- + morgan spring/ranking-X-small@2x.png b/Skins/- + morgan spring/ranking-X-small@2x.png new file mode 100644 index 00000000..5ba50663 --- /dev/null +++ b/Skins/- + morgan spring/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c8f355aa226fe809fe2403744611e3b92dc035bdee330beda53b990dffe934 +size 25151 diff --git a/Skins/- + morgan spring/ranking-X.png b/Skins/- + morgan spring/ranking-X.png new file mode 100644 index 00000000..b853438f --- /dev/null +++ b/Skins/- + morgan spring/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c3b1578fc59982bfc70800e6c4dca622b7ebc508bf635f7153d278df6877d21 +size 53434 diff --git a/Skins/- + morgan spring/ranking-X@2x.png b/Skins/- + morgan spring/ranking-X@2x.png new file mode 100644 index 00000000..55785396 --- /dev/null +++ b/Skins/- + morgan spring/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e289caa9cf3417398af5c9e68367a7c48555477ea8f3e7127e1b177d4ddedb6a +size 117737 diff --git a/Skins/- + morgan spring/ranking-XH-small.png b/Skins/- + morgan spring/ranking-XH-small.png new file mode 100644 index 00000000..9f981ad6 --- /dev/null +++ b/Skins/- + morgan spring/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37725d7cbc28b648ef4a5ded8b5ce6a42988a1aaa5b42648c39f8aa61b2a964 +size 4716 diff --git a/Skins/- + morgan spring/ranking-XH-small@2x.png b/Skins/- + morgan spring/ranking-XH-small@2x.png new file mode 100644 index 00000000..20e6ff79 --- /dev/null +++ b/Skins/- + morgan spring/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1650bceeaf5d934d3f8187db6d84280df9bdc8ebe71457ee4fec9181ab42dcf3 +size 24269 diff --git a/Skins/- + morgan spring/ranking-XH.png b/Skins/- + morgan spring/ranking-XH.png new file mode 100644 index 00000000..35f168d4 --- /dev/null +++ b/Skins/- + morgan spring/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87af96f67a7d1e25ddf36e3e433bbce90ed725901c07d7dacd340f0415b8018f +size 54236 diff --git a/Skins/- + morgan spring/ranking-XH@2x.png b/Skins/- + morgan spring/ranking-XH@2x.png new file mode 100644 index 00000000..524b3a93 --- /dev/null +++ b/Skins/- + morgan spring/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9975a083d632148e5126de871b0a6d0d67d1f1b0c23f421029cf4ab5adeaa60 +size 109096 diff --git a/Skins/- + morgan spring/ranking-accuracy.png b/Skins/- + morgan spring/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- + morgan spring/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- + morgan spring/ranking-graph.png b/Skins/- + morgan spring/ranking-graph.png new file mode 100644 index 00000000..4ff7d939 --- /dev/null +++ b/Skins/- + morgan spring/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572389c718623a50a2364fa20450f9081fd4e2fa8dcd44c01ec5499be63bbee3 +size 14990 diff --git a/Skins/- + morgan spring/ranking-maxcombo.png b/Skins/- + morgan spring/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- + morgan spring/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- + morgan spring/ranking-panel.png b/Skins/- + morgan spring/ranking-panel.png new file mode 100644 index 00000000..f3fb0d8c --- /dev/null +++ b/Skins/- + morgan spring/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2839dada2d5ed6999672b179318de6834cab250500e287cd79b85d226e944e +size 45479 diff --git a/Skins/- + morgan spring/ranking-panel@2x.png b/Skins/- + morgan spring/ranking-panel@2x.png new file mode 100644 index 00000000..a8ec55dd --- /dev/null +++ b/Skins/- + morgan spring/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8534a5dd43777129b6e0b639f4433e5d138df18b6a22b6a7b1f94ffc0f9b8ea4 +size 4231164 diff --git a/Skins/- + morgan spring/ranking-perfect.png b/Skins/- + morgan spring/ranking-perfect.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- + morgan spring/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- + morgan spring/ranking-title.png b/Skins/- + morgan spring/ranking-title.png new file mode 100644 index 00000000..8c1717f8 --- /dev/null +++ b/Skins/- + morgan spring/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:205f263a0eb3f92dfe02b3353406eef700c2801d16ad9df89dce2504aa6328a8 +size 279 diff --git a/Skins/- + morgan spring/ready.png b/Skins/- + morgan spring/ready.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/ready.wav b/Skins/- + morgan spring/ready.wav new file mode 100644 index 00000000..8864a237 --- /dev/null +++ b/Skins/- + morgan spring/ready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977a135f0949a829b9a1fead56ef9c963d836921f96ccadb1b0401376ffdf93f +size 529244 diff --git a/Skins/- + morgan spring/readys.wav b/Skins/- + morgan spring/readys.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/reversearrow.png b/Skins/- + morgan spring/reversearrow.png new file mode 100644 index 00000000..3c9c5eff --- /dev/null +++ b/Skins/- + morgan spring/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9ce4b49f4eb8d7a1103d09083f62c88871bfcc2fbac44157b8b02a331d3121c +size 5297 diff --git a/Skins/- + morgan spring/score-0.png b/Skins/- + morgan spring/score-0.png new file mode 100644 index 00000000..9a6f0415 --- /dev/null +++ b/Skins/- + morgan spring/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b68693fe5b07e7caa21dedc33ad7bbb5eb229c896ff58c1d4b5c2b430befd97 +size 15975 diff --git a/Skins/- + morgan spring/score-0@2x.png b/Skins/- + morgan spring/score-0@2x.png new file mode 100644 index 00000000..bc0946cb --- /dev/null +++ b/Skins/- + morgan spring/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3224e2ae7d5bf52d3ae71d8f0bd27d7431809cc1527f88542482bdd0fc2712bc +size 15864 diff --git a/Skins/- + morgan spring/score-1.png b/Skins/- + morgan spring/score-1.png new file mode 100644 index 00000000..742e4f98 --- /dev/null +++ b/Skins/- + morgan spring/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e641a1413ece8c10ec9601266c86430a2fc4cf757d1d8548f3cf828966d1ae88 +size 15573 diff --git a/Skins/- + morgan spring/score-1@2x.png b/Skins/- + morgan spring/score-1@2x.png new file mode 100644 index 00000000..257a052d --- /dev/null +++ b/Skins/- + morgan spring/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67fa291fd7af8cfcf4c0f39ccec178ee42c13df567ce362cc083a6c94c49058b +size 15677 diff --git a/Skins/- + morgan spring/score-2.png b/Skins/- + morgan spring/score-2.png new file mode 100644 index 00000000..3d36ff65 --- /dev/null +++ b/Skins/- + morgan spring/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d27354bc27d8f753bbcac6cae71b74e89944a8cd1b50e5b72ad2a1bb0bbd1b9 +size 15902 diff --git a/Skins/- + morgan spring/score-2@2x.png b/Skins/- + morgan spring/score-2@2x.png new file mode 100644 index 00000000..d5d95124 --- /dev/null +++ b/Skins/- + morgan spring/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0260e3c99bb37bfd33a10aaf86272b53e6faabf7ffdd04debd2e1ec3767b5638 +size 16240 diff --git a/Skins/- + morgan spring/score-3.png b/Skins/- + morgan spring/score-3.png new file mode 100644 index 00000000..48813ee5 --- /dev/null +++ b/Skins/- + morgan spring/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc7fdd95eff3ef2cd0999f6823c4eae690fbe414de3e7fb41d7bfaae1c3d701 +size 15938 diff --git a/Skins/- + morgan spring/score-3@2x.png b/Skins/- + morgan spring/score-3@2x.png new file mode 100644 index 00000000..394fa293 --- /dev/null +++ b/Skins/- + morgan spring/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a73c046f525db5e7318cb2dfc333b601e1838f8da277192bc54ea2c401f3ed09 +size 16309 diff --git a/Skins/- + morgan spring/score-4.png b/Skins/- + morgan spring/score-4.png new file mode 100644 index 00000000..67135d9c --- /dev/null +++ b/Skins/- + morgan spring/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e31d20a5bb89cd1dd2c254020026e65eaecbb35f23c19ab07478561b26b1a0 +size 15906 diff --git a/Skins/- + morgan spring/score-4@2x.png b/Skins/- + morgan spring/score-4@2x.png new file mode 100644 index 00000000..6648f988 --- /dev/null +++ b/Skins/- + morgan spring/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915b4db256ca24509c2f40ba8e9e2258f85c0ae35322fadd8e4c3399b44cb17f +size 16136 diff --git a/Skins/- + morgan spring/score-5.png b/Skins/- + morgan spring/score-5.png new file mode 100644 index 00000000..2649c8fb --- /dev/null +++ b/Skins/- + morgan spring/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4431a71011cc5d14181da9d59d6fbb45602a603b06a4810fafe62d5e159fbf4 +size 15946 diff --git a/Skins/- + morgan spring/score-5@2x.png b/Skins/- + morgan spring/score-5@2x.png new file mode 100644 index 00000000..4f2b9992 --- /dev/null +++ b/Skins/- + morgan spring/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69db6889d3d3bdf02464e5f92f39f777dca6367e2c22c49c648d8361939abb1e +size 16258 diff --git a/Skins/- + morgan spring/score-6.png b/Skins/- + morgan spring/score-6.png new file mode 100644 index 00000000..7b093a0c --- /dev/null +++ b/Skins/- + morgan spring/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843d56538887a92cfce3f7299994607744207c029642843d26e68d8795e51bd7 +size 15993 diff --git a/Skins/- + morgan spring/score-6@2x.png b/Skins/- + morgan spring/score-6@2x.png new file mode 100644 index 00000000..e9d0ed10 --- /dev/null +++ b/Skins/- + morgan spring/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a958113fdc88c69edb78f516484a4fa2772245b2d394ed8f014b212c22614193 +size 16405 diff --git a/Skins/- + morgan spring/score-7.png b/Skins/- + morgan spring/score-7.png new file mode 100644 index 00000000..51f54e39 --- /dev/null +++ b/Skins/- + morgan spring/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43175ec8f60404bda5283b499abaa97174416f70330c7d0493bed4caab85508 +size 15852 diff --git a/Skins/- + morgan spring/score-7@2x.png b/Skins/- + morgan spring/score-7@2x.png new file mode 100644 index 00000000..282171be --- /dev/null +++ b/Skins/- + morgan spring/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2bc40f968ebba61e00f8804f75d81a41d6b8a61298d363c75fe2e36fffeb09 +size 16116 diff --git a/Skins/- + morgan spring/score-8.png b/Skins/- + morgan spring/score-8.png new file mode 100644 index 00000000..d6c3e2b9 --- /dev/null +++ b/Skins/- + morgan spring/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfeb1ec6fa2fb87ca01c1c6931db43eb3373d318869eb4168fe6d7e452e6199c +size 16008 diff --git a/Skins/- + morgan spring/score-8@2x.png b/Skins/- + morgan spring/score-8@2x.png new file mode 100644 index 00000000..d0cce593 --- /dev/null +++ b/Skins/- + morgan spring/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e5e99a36a077ac21a94187979c5be93f25f7b84d5eaa27d8e7bbfbdad99fa7c +size 16420 diff --git a/Skins/- + morgan spring/score-9.png b/Skins/- + morgan spring/score-9.png new file mode 100644 index 00000000..338a9ca8 --- /dev/null +++ b/Skins/- + morgan spring/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dcc3677b8fba672883ea04e5e210fa31f2ad9bdefb6d8b4838d302f142522da +size 16002 diff --git a/Skins/- + morgan spring/score-9@2x.png b/Skins/- + morgan spring/score-9@2x.png new file mode 100644 index 00000000..c5dd7dc7 --- /dev/null +++ b/Skins/- + morgan spring/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03348e36575a5b11237e07a36a8c54bb3f155ced1f949ab950fdcc1017e40e81 +size 16426 diff --git a/Skins/- + morgan spring/score-comma.png b/Skins/- + morgan spring/score-comma.png new file mode 100644 index 00000000..75e0f699 --- /dev/null +++ b/Skins/- + morgan spring/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bd52831a9b9b4771a0e53d85af0936529a2beb12b4b3d199bff6242de9a70d +size 15574 diff --git a/Skins/- + morgan spring/score-comma@2x.png b/Skins/- + morgan spring/score-comma@2x.png new file mode 100644 index 00000000..4438672a --- /dev/null +++ b/Skins/- + morgan spring/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0548d23c68963095cb2fa470d05ceb53f106dac009c97b0e49545e82f422a148 +size 15628 diff --git a/Skins/- + morgan spring/score-dot.png b/Skins/- + morgan spring/score-dot.png new file mode 100644 index 00000000..2589682e --- /dev/null +++ b/Skins/- + morgan spring/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ef22361dc17568516f8b2710859e09297e6cbf78095345d2e460545c7a1dc6 +size 15502 diff --git a/Skins/- + morgan spring/score-dot@2x.png b/Skins/- + morgan spring/score-dot@2x.png new file mode 100644 index 00000000..74e8f341 --- /dev/null +++ b/Skins/- + morgan spring/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86fbbbd7330a6b3de92995daee5229ec13ac8eb51c34db52e384fe13ae9bda7b +size 14648 diff --git a/Skins/- + morgan spring/score-percent.png b/Skins/- + morgan spring/score-percent.png new file mode 100644 index 00000000..9f8d8b78 --- /dev/null +++ b/Skins/- + morgan spring/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bd5a07177a0eb38e92262d6d6ef066a54eff304b99f315448bd69164b6bf9e5 +size 16079 diff --git a/Skins/- + morgan spring/score-percent@2x.png b/Skins/- + morgan spring/score-percent@2x.png new file mode 100644 index 00000000..615938af --- /dev/null +++ b/Skins/- + morgan spring/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb589c537436f343a15bf55c56dc2a7f1ceb4ee114a89b373ab1bf7cee49b304 +size 15399 diff --git a/Skins/- + morgan spring/score-x.png b/Skins/- + morgan spring/score-x.png new file mode 100644 index 00000000..09d450e6 --- /dev/null +++ b/Skins/- + morgan spring/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf0bbe6aebe805e7eaf3288838f1216e0599ad85106b7abf5cba7d4be338cb2 +size 18465 diff --git a/Skins/- + morgan spring/score-x@2x.png b/Skins/- + morgan spring/score-x@2x.png new file mode 100644 index 00000000..5e218ea3 --- /dev/null +++ b/Skins/- + morgan spring/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493d4fd9fbefbb91f6921c50e1235684d9b80d31e40e91c6c04f5d219ece9100 +size 19040 diff --git a/Skins/- + morgan spring/scorebar-bg.png b/Skins/- + morgan spring/scorebar-bg.png new file mode 100644 index 00000000..350cea64 --- /dev/null +++ b/Skins/- + morgan spring/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59a6b200840fd6f654811604109886bba3851c7b179767b6afdad66c90a8aee +size 17705 diff --git a/Skins/- + morgan spring/scorebar-bg2@2x.png b/Skins/- + morgan spring/scorebar-bg2@2x.png new file mode 100644 index 00000000..22b537a8 --- /dev/null +++ b/Skins/- + morgan spring/scorebar-bg2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a03920c0c3ba776155382bf95ea44752d2d9dcd9df3b9c31a19bdb3104c19f +size 35173 diff --git a/Skins/- + morgan spring/scorebar-bg@2x.png b/Skins/- + morgan spring/scorebar-bg@2x.png new file mode 100644 index 00000000..da1126bf --- /dev/null +++ b/Skins/- + morgan spring/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83391116b094e7497ba81bf25ed39c1e6c05e9995d4ff34d09671c434ec2f28 +size 26984 diff --git a/Skins/- + morgan spring/scorebar-colour.png b/Skins/- + morgan spring/scorebar-colour.png new file mode 100644 index 00000000..77461179 --- /dev/null +++ b/Skins/- + morgan spring/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0070d89ae648c2c4ca48714a31ee859bf889177bb62aba71b2169e1c7336d52 +size 17386 diff --git a/Skins/- + morgan spring/scorebar-colour2@2x.png b/Skins/- + morgan spring/scorebar-colour2@2x.png new file mode 100644 index 00000000..225f2d9a --- /dev/null +++ b/Skins/- + morgan spring/scorebar-colour2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999d07969c4eecaa3af19d7e93711792b7c2e837c51b78fbfee36827db734b1a +size 93383 diff --git a/Skins/- + morgan spring/scorebar-colour@2x.png b/Skins/- + morgan spring/scorebar-colour@2x.png new file mode 100644 index 00000000..42c4d147 --- /dev/null +++ b/Skins/- + morgan spring/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1585fdd34f9d39cdac6808d70fb4d90a7d86acc4e0a60e98b0c790db64e4644a +size 81714 diff --git a/Skins/- + morgan spring/scorebar-ki.png b/Skins/- + morgan spring/scorebar-ki.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/scorebar-kidanger.png b/Skins/- + morgan spring/scorebar-kidanger.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/scoreentry-0.png b/Skins/- + morgan spring/scoreentry-0.png new file mode 100644 index 00000000..25c01303 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7720b58fd08fc7b14540fc42c1756bc6ffcffe76ee83bd2ef4956642eb5655ff +size 21509 diff --git a/Skins/- + morgan spring/scoreentry-0@2x.png b/Skins/- + morgan spring/scoreentry-0@2x.png new file mode 100644 index 00000000..27f09da0 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f0f562130f3f65870180089483956c0325519caa10ba387c4c534a4721f3b5 +size 21663 diff --git a/Skins/- + morgan spring/scoreentry-1.png b/Skins/- + morgan spring/scoreentry-1.png new file mode 100644 index 00000000..6ce75a8b --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934a937b3ce808594ca876a6a3b8450c28ec32a46d88b667ceb22a2e1727e1e2 +size 21382 diff --git a/Skins/- + morgan spring/scoreentry-1@2x.png b/Skins/- + morgan spring/scoreentry-1@2x.png new file mode 100644 index 00000000..ea815560 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfed0c7ad4d9a268620efca68475c7a09cd703ba365109fb9e738e32793bccc1 +size 21427 diff --git a/Skins/- + morgan spring/scoreentry-2.png b/Skins/- + morgan spring/scoreentry-2.png new file mode 100644 index 00000000..62bb6d45 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389d09eb004f35ad5647b5faa4e1b1a835996c620ed777e27634ace1fe8902fa +size 21498 diff --git a/Skins/- + morgan spring/scoreentry-2@2x.png b/Skins/- + morgan spring/scoreentry-2@2x.png new file mode 100644 index 00000000..bc3f6e45 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2339ea1b310af9f1fa88be299c55c3d30b38ff8f540dabed52f0fe44422df1 +size 21642 diff --git a/Skins/- + morgan spring/scoreentry-3.png b/Skins/- + morgan spring/scoreentry-3.png new file mode 100644 index 00000000..867de689 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11cd8cce9dab41c66fec8e47fe4a7e942c285e1d15a6ffae8ae619d49c841fff +size 21502 diff --git a/Skins/- + morgan spring/scoreentry-3@2x.png b/Skins/- + morgan spring/scoreentry-3@2x.png new file mode 100644 index 00000000..4233dcf2 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7884ccf6fd65e54dc3eb3b889972fbae12cae0c2cb3c1894ca3a99eb2adf118f +size 21674 diff --git a/Skins/- + morgan spring/scoreentry-4.png b/Skins/- + morgan spring/scoreentry-4.png new file mode 100644 index 00000000..bf2428f7 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3096bcb8d7923ec8cf12ae8f71104435d717b14c85769fabea8833311646e4 +size 21512 diff --git a/Skins/- + morgan spring/scoreentry-4@2x.png b/Skins/- + morgan spring/scoreentry-4@2x.png new file mode 100644 index 00000000..ff11f162 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:280e37979fb637a57235005f2cbf7545504642e5fd5a505c66cf23a9c6f500b8 +size 21638 diff --git a/Skins/- + morgan spring/scoreentry-5.png b/Skins/- + morgan spring/scoreentry-5.png new file mode 100644 index 00000000..aade1d22 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6637336730b0ce7b1aee54312b861f1adf3acb99772b9947568206c299c7abc6 +size 21526 diff --git a/Skins/- + morgan spring/scoreentry-5@2x.png b/Skins/- + morgan spring/scoreentry-5@2x.png new file mode 100644 index 00000000..e57f8a6a --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3493337ba703ad731e4b00b304ca97d4cbe0678d56b8bd583c5c9bad34719589 +size 21676 diff --git a/Skins/- + morgan spring/scoreentry-6.png b/Skins/- + morgan spring/scoreentry-6.png new file mode 100644 index 00000000..7d0bd10f --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5405699a4ea9033d508fda3930adc12758ce8fcfb0bbc2311e1a78866af85bb +size 21542 diff --git a/Skins/- + morgan spring/scoreentry-6@2x.png b/Skins/- + morgan spring/scoreentry-6@2x.png new file mode 100644 index 00000000..df19bfa9 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc2d758ff83afa0e120d8df7481ac0dc8763d22f89129a459b8be37e17cd850 +size 21720 diff --git a/Skins/- + morgan spring/scoreentry-7.png b/Skins/- + morgan spring/scoreentry-7.png new file mode 100644 index 00000000..e3f5bf75 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e48a385a481db7d6e5aa1cdf8327834244ff4ccde2fb2365eb9d8054a3f65a2 +size 21498 diff --git a/Skins/- + morgan spring/scoreentry-7@2x.png b/Skins/- + morgan spring/scoreentry-7@2x.png new file mode 100644 index 00000000..8ba75d13 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e8f05fb5e99b2cf553121f7c74cadce36008a16bde5c7b645932f1df475381 +size 21640 diff --git a/Skins/- + morgan spring/scoreentry-8.png b/Skins/- + morgan spring/scoreentry-8.png new file mode 100644 index 00000000..6c317bc4 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a9a6317005110e86e31cf3d37a3ea41b5e165395336d7a523affec6039ac4c +size 21526 diff --git a/Skins/- + morgan spring/scoreentry-8@2x.png b/Skins/- + morgan spring/scoreentry-8@2x.png new file mode 100644 index 00000000..a6ab3c63 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6140f70140edfe4e112d93e140cdd76958d3e659589a2f23a4c4b4e57b6a9d +size 21709 diff --git a/Skins/- + morgan spring/scoreentry-9.png b/Skins/- + morgan spring/scoreentry-9.png new file mode 100644 index 00000000..27cd6a3d --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc5c380425ef393949a67c266ddf8c82b92c26e8698933ec68b260a4629d20e +size 21539 diff --git a/Skins/- + morgan spring/scoreentry-9@2x.png b/Skins/- + morgan spring/scoreentry-9@2x.png new file mode 100644 index 00000000..2e445736 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a64df578f41eee11b2f622eb0186f919e301aab18e1ebb299b9122ae022589e4 +size 21696 diff --git a/Skins/- + morgan spring/scoreentry-comma.png b/Skins/- + morgan spring/scoreentry-comma.png new file mode 100644 index 00000000..409b9900 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b2f7363a1ff55ab9c2e725350677e4bed82ebd2839c2ba9471408fbe3fe849 +size 21380 diff --git a/Skins/- + morgan spring/scoreentry-comma@2x.png b/Skins/- + morgan spring/scoreentry-comma@2x.png new file mode 100644 index 00000000..09573c27 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30730c980a248159ede3ace6edc04ab7bbf8f9f4abc1a1581f87b0ee381bff8d +size 21437 diff --git a/Skins/- + morgan spring/scoreentry-dot.png b/Skins/- + morgan spring/scoreentry-dot.png new file mode 100644 index 00000000..1be036d7 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd7ad4829287e2b18bdfe9688dd5e488594b2ba42a750d3aa4dd301d1886d1fd +size 21375 diff --git a/Skins/- + morgan spring/scoreentry-dot@2x.png b/Skins/- + morgan spring/scoreentry-dot@2x.png new file mode 100644 index 00000000..c02307c8 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb7f69208ac3aa338759a917a620da61571d1aad9fa538c7dd999d4a9efa7ab +size 21410 diff --git a/Skins/- + morgan spring/scoreentry-percent.png b/Skins/- + morgan spring/scoreentry-percent.png new file mode 100644 index 00000000..22d489d8 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a51c522e0392484e562940130986835a1857f9f113ce859d1fb54b1f376957 +size 21562 diff --git a/Skins/- + morgan spring/scoreentry-percent@2x.png b/Skins/- + morgan spring/scoreentry-percent@2x.png new file mode 100644 index 00000000..f63c2479 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d9415c5311039a5fef83eff14f7c6f2e577caabc4fcdb3cf9703ce5c2e06131 +size 21737 diff --git a/Skins/- + morgan spring/scoreentry-x.png b/Skins/- + morgan spring/scoreentry-x.png new file mode 100644 index 00000000..6acc1b17 --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28d6a81c2865919dac06b5c85ec404b617ca801f3c3d09ed05d3936032a05b8 +size 21474 diff --git a/Skins/- + morgan spring/scoreentry-x@2x.png b/Skins/- + morgan spring/scoreentry-x@2x.png new file mode 100644 index 00000000..0fd5c70d --- /dev/null +++ b/Skins/- + morgan spring/scoreentry-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a386c346d649c251e34334bfa86bbe91bf640ebd2e8f461155fe961729fcdee5 +size 21615 diff --git a/Skins/- + morgan spring/section-fail.png b/Skins/- + morgan spring/section-fail.png new file mode 100644 index 00000000..0af4d962 --- /dev/null +++ b/Skins/- + morgan spring/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2556b0d298c0b4abc5f13c20179ba5f0ce7702a7c1c91edcc89b21b52858847a +size 72552 diff --git a/Skins/- + morgan spring/section-pass.png b/Skins/- + morgan spring/section-pass.png new file mode 100644 index 00000000..81c5aa66 --- /dev/null +++ b/Skins/- + morgan spring/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dbe69c4d075de426c2dcab045705fc305a5fcf36b2cad8a85b5195f206151fe +size 111142 diff --git a/Skins/- + morgan spring/sectionfail.wav b/Skins/- + morgan spring/sectionfail.wav new file mode 100644 index 00000000..c6211564 --- /dev/null +++ b/Skins/- + morgan spring/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4faff1a6e5b87f58371c938bb702ccbd8d175fb5717739593125d77d905ff7e7 +size 24592 diff --git a/Skins/- + morgan spring/sectionpass.mp3 b/Skins/- + morgan spring/sectionpass.mp3 new file mode 100644 index 00000000..8e2c5740 --- /dev/null +++ b/Skins/- + morgan spring/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5241e3a302bb30f4076a0a41201e318211ef2037bd929a35e13a288dbbc590c6 +size 21359 diff --git a/Skins/- + morgan spring/sectionpass.wav b/Skins/- + morgan spring/sectionpass.wav new file mode 100644 index 00000000..ee3f1f2c --- /dev/null +++ b/Skins/- + morgan spring/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459a48175ab86d7eecfe5932c74d8abadb817c64611f6ddeab762abccd7d845b +size 208480 diff --git a/Skins/- + morgan spring/seeya.wav b/Skins/- + morgan spring/seeya.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- + morgan spring/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- + morgan spring/select-difficulty.wav b/Skins/- + morgan spring/select-difficulty.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/select-expand.wav b/Skins/- + morgan spring/select-expand.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/select-expand.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/selection-mod-autoplay.png b/Skins/- + morgan spring/selection-mod-autoplay.png new file mode 100644 index 00000000..be882f99 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719b4673fa3cf3a6a6f7544483d46a400eb348feb324f36c8ca0a0d41d096a3e +size 6233 diff --git a/Skins/- + morgan spring/selection-mod-autoplay@2x.png b/Skins/- + morgan spring/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..6920dc96 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a0c85cb20bc2f60f21a4ed5e99f9e52380b1d65020d1afc47b2d36b8ceacb5 +size 11976 diff --git a/Skins/- + morgan spring/selection-mod-cinema.png b/Skins/- + morgan spring/selection-mod-cinema.png new file mode 100644 index 00000000..98a9cdfd --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e1b2c5f020635dfadeb17777d97e5380e69f172742f0db167466506184231d +size 10363 diff --git a/Skins/- + morgan spring/selection-mod-cinema@2x.png b/Skins/- + morgan spring/selection-mod-cinema@2x.png new file mode 100644 index 00000000..e97d0868 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623742c359861dd3f7ed05ba54f1e09189f9ddfc977eadbc437dd73ec316aeb2 +size 25789 diff --git a/Skins/- + morgan spring/selection-mod-doubletime.png b/Skins/- + morgan spring/selection-mod-doubletime.png new file mode 100644 index 00000000..898bde3f --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4480f8be549fa162231d6f55d617067a20992d8bcc228a15c564e7e3f72475c6 +size 10917 diff --git a/Skins/- + morgan spring/selection-mod-doubletime@2x.png b/Skins/- + morgan spring/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..380e1c17 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef26f55f8f2523c2ad8da220197ddc9ac95b8743e6fced50c0e1e80895564239 +size 25156 diff --git a/Skins/- + morgan spring/selection-mod-easy.png b/Skins/- + morgan spring/selection-mod-easy.png new file mode 100644 index 00000000..d96fe265 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed3f5c593f41565cb2ec91dd3d979fc717859aed6c833d755907c78f8063d50 +size 6548 diff --git a/Skins/- + morgan spring/selection-mod-easy@2x.png b/Skins/- + morgan spring/selection-mod-easy@2x.png new file mode 100644 index 00000000..8af22343 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b1f11901a9ed92feaba50b24db1bfdb1139105a8fe039ac06fca071f89d825 +size 14443 diff --git a/Skins/- + morgan spring/selection-mod-flashlight.png b/Skins/- + morgan spring/selection-mod-flashlight.png new file mode 100644 index 00000000..e2843a6d --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c09b3dce5c66269067c8b53e6a05ad5440119f56084a50923d65572c01419ae +size 6844 diff --git a/Skins/- + morgan spring/selection-mod-flashlight@2x.png b/Skins/- + morgan spring/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..5fb0fa6e --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b7c0a66c1dbacdab08a88ed8d8aef74c6e0ccd4f870485bd828794664fb4e8 +size 15452 diff --git a/Skins/- + morgan spring/selection-mod-halftime.png b/Skins/- + morgan spring/selection-mod-halftime.png new file mode 100644 index 00000000..1ccaf9d0 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf5945ea957fcd13f0018c5645caee8fd896f7e311ae005e54ff998e48c1d2a +size 5450 diff --git a/Skins/- + morgan spring/selection-mod-halftime@2x.png b/Skins/- + morgan spring/selection-mod-halftime@2x.png new file mode 100644 index 00000000..fc162106 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c17cc2eec5a0c8bfc1504a120f8c04c10fe3fce8e1405a3d2283ba775f0c3ee +size 13447 diff --git a/Skins/- + morgan spring/selection-mod-hardrock.png b/Skins/- + morgan spring/selection-mod-hardrock.png new file mode 100644 index 00000000..9bf0add6 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae1177c769a17770d32147e4c9aff9a6df7120c15ddb41a9d7e3d41cc319405 +size 9008 diff --git a/Skins/- + morgan spring/selection-mod-hardrock@2x.png b/Skins/- + morgan spring/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..e4ad24e9 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b349c090e29a4ebde2638ce9b869c56ca1ac7419355a917b800d66b7f8e70aed +size 17227 diff --git a/Skins/- + morgan spring/selection-mod-hidden.png b/Skins/- + morgan spring/selection-mod-hidden.png new file mode 100644 index 00000000..e5565656 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e17690dc95d84c0a8aca4c4868d136d9ed2fde639d9f7798e9fd577411029e +size 9928 diff --git a/Skins/- + morgan spring/selection-mod-hidden@2x.png b/Skins/- + morgan spring/selection-mod-hidden@2x.png new file mode 100644 index 00000000..a95a147b --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c849387ef848ed255c4a1a4ff3ab5f88b6eb5a41c60120b96572e3271b51d09c +size 21997 diff --git a/Skins/- + morgan spring/selection-mod-nightcore.png b/Skins/- + morgan spring/selection-mod-nightcore.png new file mode 100644 index 00000000..77af29a1 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbee81fe4e28ae0de32dc9faed124ff0d2d08b34e9d9299133206c12a6e2c04 +size 8707 diff --git a/Skins/- + morgan spring/selection-mod-nightcore@2x.png b/Skins/- + morgan spring/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..00aa944f --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a11ee5f21420a6dd61534c559ca905d1fb407b16cdb5678aba8d3ff5b2f497 +size 18713 diff --git a/Skins/- + morgan spring/selection-mod-nofail.png b/Skins/- + morgan spring/selection-mod-nofail.png new file mode 100644 index 00000000..fc1f203b --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f273176795c5bbb2f8d0223fd6ff5f39e06b1d73ce2bb246e31dc8f8444cdcc +size 10233 diff --git a/Skins/- + morgan spring/selection-mod-nofail@2x.png b/Skins/- + morgan spring/selection-mod-nofail@2x.png new file mode 100644 index 00000000..e622c4d5 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc51341b4d823b9446d31034442f7d92c8cc97ab9e783bbf739738aeff845228 +size 24136 diff --git a/Skins/- + morgan spring/selection-mod-perfect.png b/Skins/- + morgan spring/selection-mod-perfect.png new file mode 100644 index 00000000..c466e44a --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed80018ad4e958bfb38613f88f99773bd85f3c6a7496d0d260ed3d9fcbc80e1 +size 7045 diff --git a/Skins/- + morgan spring/selection-mod-perfect@2x.png b/Skins/- + morgan spring/selection-mod-perfect@2x.png new file mode 100644 index 00000000..e7044813 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baa80c20bf3d8d191f3d6642a442a04e2fac2b92fc64fd47c4028085fb7a7803 +size 14315 diff --git a/Skins/- + morgan spring/selection-mod-relax.png b/Skins/- + morgan spring/selection-mod-relax.png new file mode 100644 index 00000000..f1cd0774 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49c7b77e20e464c8310d7cbe37f8e89e46775b7332070227f3bdef003079f13 +size 6333 diff --git a/Skins/- + morgan spring/selection-mod-relax2.png b/Skins/- + morgan spring/selection-mod-relax2.png new file mode 100644 index 00000000..8d73f496 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209e52f474cc3a1f37b44fa24291151fdd8a6a3d8fd49a373b5bd0deba8f6fa5 +size 8660 diff --git a/Skins/- + morgan spring/selection-mod-relax2@2x.png b/Skins/- + morgan spring/selection-mod-relax2@2x.png new file mode 100644 index 00000000..5c62ddf4 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75e52eb2cb4a226e6cdb20148f65f50510d62fc0fd7b10134814026a19fc518 +size 19107 diff --git a/Skins/- + morgan spring/selection-mod-relax@2x.png b/Skins/- + morgan spring/selection-mod-relax@2x.png new file mode 100644 index 00000000..45b1c532 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af864855fe3ce6d2d00fa7653a49a02b1f43d76f34bf03192a2281758f65c02e +size 14185 diff --git a/Skins/- + morgan spring/selection-mod-spunout.png b/Skins/- + morgan spring/selection-mod-spunout.png new file mode 100644 index 00000000..8eac3ad2 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709756d78410a26d5e0bd516b5fb2f61ae6df9f1aea3018fedf5a6f92e740880 +size 9408 diff --git a/Skins/- + morgan spring/selection-mod-spunout@2x.png b/Skins/- + morgan spring/selection-mod-spunout@2x.png new file mode 100644 index 00000000..6cad3f51 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7f94dc1d04ebcc8a9e414164a8c1728d5e69a9ac544c56da0932dfa82c1b78 +size 22055 diff --git a/Skins/- + morgan spring/selection-mod-suddendeath.png b/Skins/- + morgan spring/selection-mod-suddendeath.png new file mode 100644 index 00000000..3921e975 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cd14d9ee8e443f34cc717d3a2e626c37a04228e453e75d17629520405be9ff +size 10613 diff --git a/Skins/- + morgan spring/selection-mod-suddendeath@2x.png b/Skins/- + morgan spring/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..08cc886f --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:922b13e5b4f800d8caf8c3a9150d7f555352be61831510a93f1dd28055b527ec +size 24893 diff --git a/Skins/- + morgan spring/selection-mod-target.png b/Skins/- + morgan spring/selection-mod-target.png new file mode 100644 index 00000000..b991df67 --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01a024e0b26574cf27a03de9df6e946a6d23fddd71b302f1114729e1247814d +size 13547 diff --git a/Skins/- + morgan spring/selection-mod-target@2x.png b/Skins/- + morgan spring/selection-mod-target@2x.png new file mode 100644 index 00000000..5d2c72bc --- /dev/null +++ b/Skins/- + morgan spring/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee51e83e0ab3409f77bb0e3d8abf32a37398870c3391eab30ac278db1b932285 +size 33315 diff --git a/Skins/- + morgan spring/selection-mode-over.png b/Skins/- + morgan spring/selection-mode-over.png new file mode 100644 index 00000000..a1dc5046 --- /dev/null +++ b/Skins/- + morgan spring/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905861d1b37b4a6bba9c9274cf4678b73cc8650db3b477107380a27c0493681b +size 21384 diff --git a/Skins/- + morgan spring/selection-mode-over@2x.png b/Skins/- + morgan spring/selection-mode-over@2x.png new file mode 100644 index 00000000..9ad922d6 --- /dev/null +++ b/Skins/- + morgan spring/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ba2ba11df9c9ed4d75062905dc6442304f68f8ea6a271241c430932f2e38718 +size 21882 diff --git a/Skins/- + morgan spring/selection-mode.png b/Skins/- + morgan spring/selection-mode.png new file mode 100644 index 00000000..58bf8b34 --- /dev/null +++ b/Skins/- + morgan spring/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c281998f00493b2cd356acb19af914163f8be4c80e858083dbfb46ffc296cb9 +size 460449 diff --git a/Skins/- + morgan spring/selection-mode@2x.png b/Skins/- + morgan spring/selection-mode@2x.png new file mode 100644 index 00000000..228c6f8b --- /dev/null +++ b/Skins/- + morgan spring/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebcad6542e5df45db9b4e2c65458bb649313ea1a268037b077b347658685ddc +size 837241 diff --git a/Skins/- + morgan spring/selection-mods-over.png b/Skins/- + morgan spring/selection-mods-over.png new file mode 100644 index 00000000..43f0c8f4 --- /dev/null +++ b/Skins/- + morgan spring/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3178af4066e664c09036c70b94c5335bf65256e1a6419616c3f1f5ae042762f7 +size 21362 diff --git a/Skins/- + morgan spring/selection-mods-over@2x.png b/Skins/- + morgan spring/selection-mods-over@2x.png new file mode 100644 index 00000000..454219d1 --- /dev/null +++ b/Skins/- + morgan spring/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937cd60b097b6431a1766150dc76b89549f657120f576fbecf4dbf15037fc6ae +size 21827 diff --git a/Skins/- + morgan spring/selection-mods.png b/Skins/- + morgan spring/selection-mods.png new file mode 100644 index 00000000..2906c7c3 --- /dev/null +++ b/Skins/- + morgan spring/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9908f3e66031d6daecbb61941e1c9d3c608227d499f340b250c3166c668fa46 +size 280 diff --git a/Skins/- + morgan spring/selection-mods@2x.png b/Skins/- + morgan spring/selection-mods@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/selection-options-over.png b/Skins/- + morgan spring/selection-options-over.png new file mode 100644 index 00000000..c9ba70bb --- /dev/null +++ b/Skins/- + morgan spring/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf7af5ac510be960c54179ef42e9db3a5139124fc7dd9db8d1ccaf29a902649 +size 21362 diff --git a/Skins/- + morgan spring/selection-options-over@2x.png b/Skins/- + morgan spring/selection-options-over@2x.png new file mode 100644 index 00000000..454219d1 --- /dev/null +++ b/Skins/- + morgan spring/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937cd60b097b6431a1766150dc76b89549f657120f576fbecf4dbf15037fc6ae +size 21827 diff --git a/Skins/- + morgan spring/selection-options.png b/Skins/- + morgan spring/selection-options.png new file mode 100644 index 00000000..2906c7c3 --- /dev/null +++ b/Skins/- + morgan spring/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9908f3e66031d6daecbb61941e1c9d3c608227d499f340b250c3166c668fa46 +size 280 diff --git a/Skins/- + morgan spring/selection-options@2x.png b/Skins/- + morgan spring/selection-options@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/selection-random-over.png b/Skins/- + morgan spring/selection-random-over.png new file mode 100644 index 00000000..df606b58 --- /dev/null +++ b/Skins/- + morgan spring/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b36ed5db1ae292b670d33096d104b38bd6d71cd63daf0868085e84310bfb48b8 +size 21362 diff --git a/Skins/- + morgan spring/selection-random-over@2x.png b/Skins/- + morgan spring/selection-random-over@2x.png new file mode 100644 index 00000000..454219d1 --- /dev/null +++ b/Skins/- + morgan spring/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937cd60b097b6431a1766150dc76b89549f657120f576fbecf4dbf15037fc6ae +size 21827 diff --git a/Skins/- + morgan spring/selection-random.png b/Skins/- + morgan spring/selection-random.png new file mode 100644 index 00000000..2906c7c3 --- /dev/null +++ b/Skins/- + morgan spring/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9908f3e66031d6daecbb61941e1c9d3c608227d499f340b250c3166c668fa46 +size 280 diff --git a/Skins/- + morgan spring/selection-random@2x.png b/Skins/- + morgan spring/selection-random@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/selection-tab.png b/Skins/- + morgan spring/selection-tab.png new file mode 100644 index 00000000..c6784364 --- /dev/null +++ b/Skins/- + morgan spring/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f51f150d5ab48a175dd0f4de4a2647689ffb56a2514dc15e567e8bba525d2e82 +size 4574 diff --git a/Skins/- + morgan spring/shutter.wav b/Skins/- + morgan spring/shutter.wav new file mode 100644 index 00000000..8e39ec08 --- /dev/null +++ b/Skins/- + morgan spring/shutter.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc5aacfbaecb009b8226225f7b069292a913b693650a1384baa2082e761f774 +size 466488 diff --git a/Skins/- + morgan spring/skin.ini b/Skins/- + morgan spring/skin.ini new file mode 100644 index 00000000..43247114 Binary files /dev/null and b/Skins/- + morgan spring/skin.ini differ diff --git a/Skins/- + morgan spring/skin2.ini b/Skins/- + morgan spring/skin2.ini new file mode 100644 index 00000000..80d53c85 --- /dev/null +++ b/Skins/- + morgan spring/skin2.ini @@ -0,0 +1,40 @@ +[General] +Name: + - morgan final +Author: morgan / various artists +Version: 1 +SliderBallFlip: 0 +CursorRotate: 0 +CursorExpand: 1 +CursorCentre: 1 +SliderBallFrames: 1 +HitCircleOverlayAboveNumer: 1 +SpinnerFrequencyModulate: 1 +LayeredHitSounds: 1 +SpinnerFadePlayfield: 0 +SpinnerNoBlink: 0 +AllowSliderBallTint: 0 +// AnimationFramerate: +CursorTrailRotate: 0 +// CustomComboBurstSounds: +// ComboBurstRandom : 0 +SliderStyle: 2 + +[Colours] +Combo1: 255,255,255 +Combo2: 255,255,255 +Combo3: 255,255,255 +Combo4: 255,255,255 +SliderBorder: 255,255,255 +SliderTrackOverride: 0,0,0 +SpinnerApproachCircle: 49,197,244 +SpinnerFrequencyModulate: 49,197,244 +SpinnerFadePlayfield: 49,197,244 +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 230,230,230 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 0 +ScorePrefix: score +ScoreOverlap: 0 +ComboPrefix: niggaidontwantnerves diff --git a/Skins/- + morgan spring/sliderb.png b/Skins/- + morgan spring/sliderb.png new file mode 100644 index 00000000..0a91b329 --- /dev/null +++ b/Skins/- + morgan spring/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8dd4509f2a444d2e4df30c6408bf5455b7f48e57dc61d7a0eb9242bf1dea37 +size 1849 diff --git a/Skins/- + morgan spring/sliderb0.png b/Skins/- + morgan spring/sliderb0.png new file mode 100644 index 00000000..e391d9e1 --- /dev/null +++ b/Skins/- + morgan spring/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b6a720c60df52f080011b2292bd5303fa6409b2da839a43af37df768a09912 +size 5453 diff --git a/Skins/- + morgan spring/sliderendcircle.png b/Skins/- + morgan spring/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/- + morgan spring/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/- + morgan spring/sliderfollowcircle.png b/Skins/- + morgan spring/sliderfollowcircle.png new file mode 100644 index 00000000..2061988c --- /dev/null +++ b/Skins/- + morgan spring/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e1ed55739bc58439bfb56bffb95bd2a83b5472778d666b05084dba031561b6 +size 31449 diff --git a/Skins/- + morgan spring/sliderfollowcircle222-0.png b/Skins/- + morgan spring/sliderfollowcircle222-0.png new file mode 100644 index 00000000..e13fae42 --- /dev/null +++ b/Skins/- + morgan spring/sliderfollowcircle222-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062dd8ae31b52241542a9bc32ffd5181ddce01ad7e627e7a9c59fb5f426257f1 +size 19733 diff --git a/Skins/- + morgan spring/sliderpoint10.png b/Skins/- + morgan spring/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/sliderpoint30.png b/Skins/- + morgan spring/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/sliderscorepoint.png b/Skins/- + morgan spring/sliderscorepoint.png new file mode 100644 index 00000000..fa23baaf --- /dev/null +++ b/Skins/- + morgan spring/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ded4b7a8e68cffa01a088ad4dbb88ac3c25c3253ab95785568b259509844050 +size 2792 diff --git a/Skins/- + morgan spring/sliderscorepoint@2x.png b/Skins/- + morgan spring/sliderscorepoint@2x.png new file mode 100644 index 00000000..f01d68bd --- /dev/null +++ b/Skins/- + morgan spring/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9af2743892d82308d852f4f7b1ee92d4d03c79b4c1ebf8dbc7a6835327647e +size 3357 diff --git a/Skins/- + morgan spring/soft-hitclap.wav b/Skins/- + morgan spring/soft-hitclap.wav new file mode 100644 index 00000000..523df550 --- /dev/null +++ b/Skins/- + morgan spring/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90936fe0641a45a1563ecdbd6918581a959605a206348887e349bd06a06d0e3a +size 48246 diff --git a/Skins/- + morgan spring/soft-hitclap2.wav b/Skins/- + morgan spring/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- + morgan spring/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- + morgan spring/soft-hitfinish.wav b/Skins/- + morgan spring/soft-hitfinish.wav new file mode 100644 index 00000000..138c614d --- /dev/null +++ b/Skins/- + morgan spring/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ddd85be838217c26525d61be66bb41df700a5a14dcab000a59c4b47b262efa +size 145508 diff --git a/Skins/- + morgan spring/soft-hitfinish2.wav b/Skins/- + morgan spring/soft-hitfinish2.wav new file mode 100644 index 00000000..12b65e74 --- /dev/null +++ b/Skins/- + morgan spring/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:615c84d90ceb7bd5fdbf826803a33a3f717f8b550bec4718b38d00d07b6b31c3 +size 303364 diff --git a/Skins/- + morgan spring/soft-hitnormal.wav b/Skins/- + morgan spring/soft-hitnormal.wav new file mode 100644 index 00000000..fc52a164 --- /dev/null +++ b/Skins/- + morgan spring/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b24e656be07d9722c0e00965492bc357810b3efa360e3ef64e49b3677f7dbe1 +size 20880 diff --git a/Skins/- + morgan spring/soft-hitnormal1.wav b/Skins/- + morgan spring/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/- + morgan spring/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/- + morgan spring/soft-hitnormal2.wav b/Skins/- + morgan spring/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/- + morgan spring/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/- + morgan spring/soft-hitnormal3.wav b/Skins/- + morgan spring/soft-hitnormal3.wav new file mode 100644 index 00000000..5b051504 --- /dev/null +++ b/Skins/- + morgan spring/soft-hitnormal3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00fa18913afee0fa1c198fcd9efe0c5183dc4f3204bb445ffaa87ff85b593ec1 +size 99569 diff --git a/Skins/- + morgan spring/soft-hitnormal4.wav b/Skins/- + morgan spring/soft-hitnormal4.wav new file mode 100644 index 00000000..abc7f38b --- /dev/null +++ b/Skins/- + morgan spring/soft-hitnormal4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f74bc696e025e36c0e69bd7e56e85a490b7b40006ee009b281d018379cb867 +size 31752 diff --git a/Skins/- + morgan spring/soft-hitnormalhh.wav b/Skins/- + morgan spring/soft-hitnormalhh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/- + morgan spring/soft-hitnormalhh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/- + morgan spring/soft-hitwhistle.wav b/Skins/- + morgan spring/soft-hitwhistle.wav new file mode 100644 index 00000000..47bcb50f --- /dev/null +++ b/Skins/- + morgan spring/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4592a5431853090cde45f38936efa7fecf13b7d2b252d59b63eb890c94573c6d +size 25804 diff --git a/Skins/- + morgan spring/soft-hitwhistle1.wav b/Skins/- + morgan spring/soft-hitwhistle1.wav new file mode 100644 index 00000000..aac06a41 --- /dev/null +++ b/Skins/- + morgan spring/soft-hitwhistle1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ea7b4fb967158ae380178b7aea0dbdd2868c0d670b917c42b94e72884306b2 +size 210092 diff --git a/Skins/- + morgan spring/soft-hitwhistle2.wav b/Skins/- + morgan spring/soft-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/- + morgan spring/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/- + morgan spring/soft-sliderslide.wav b/Skins/- + morgan spring/soft-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/- + morgan spring/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/- + morgan spring/soft-sliderslide2.wav b/Skins/- + morgan spring/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/soft-slidertick.wav b/Skins/- + morgan spring/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/- + morgan spring/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/- + morgan spring/soft-slidertick2.wav b/Skins/- + morgan spring/soft-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/soft-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/soft-sliderwhistle.wav b/Skins/- + morgan spring/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- + morgan spring/softl-hitclap2.wav b/Skins/- + morgan spring/softl-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- + morgan spring/softl-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- + morgan spring/softl-hitfinish.wav b/Skins/- + morgan spring/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/- + morgan spring/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/- + morgan spring/spinner-approachcircle.png b/Skins/- + morgan spring/spinner-approachcircle.png new file mode 100644 index 00000000..98ab53b0 --- /dev/null +++ b/Skins/- + morgan spring/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75313703fdfffa1b317c9e296cfa76df7bab36f46d5fab9cce603a1772bc3d1c +size 13062 diff --git a/Skins/- + morgan spring/spinner-background.png b/Skins/- + morgan spring/spinner-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/spinner-bottom.png b/Skins/- + morgan spring/spinner-bottom.png new file mode 100644 index 00000000..8853da67 --- /dev/null +++ b/Skins/- + morgan spring/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:affa29e1e8830604e7e4599d3e856ee603d6aa37ce4109985c1c7bdf3e07631c +size 3496 diff --git a/Skins/- + morgan spring/spinner-bottom@2x.png b/Skins/- + morgan spring/spinner-bottom@2x.png new file mode 100644 index 00000000..3377110d --- /dev/null +++ b/Skins/- + morgan spring/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a1ea426b2275bcd72b01693315d48476ca717038865b75bb9334273720d471 +size 131 diff --git a/Skins/- + morgan spring/spinner-circle.png b/Skins/- + morgan spring/spinner-circle.png new file mode 100644 index 00000000..ef4870bd --- /dev/null +++ b/Skins/- + morgan spring/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c4d87c4ba011689bd7fabe6cf9a5bdeaf089f74ba3ae3a18a44a583144dcbc5 +size 2706 diff --git a/Skins/- + morgan spring/spinner-clear.png b/Skins/- + morgan spring/spinner-clear.png new file mode 100644 index 00000000..7a475a96 --- /dev/null +++ b/Skins/- + morgan spring/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c0b0e455072b95eceecb999407691cfaef1c2adbd8d357dc7c701bf6ad2733 +size 2792 diff --git a/Skins/- + morgan spring/spinner-clear@2x.png b/Skins/- + morgan spring/spinner-clear@2x.png new file mode 100644 index 00000000..3377110d --- /dev/null +++ b/Skins/- + morgan spring/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a1ea426b2275bcd72b01693315d48476ca717038865b75bb9334273720d471 +size 131 diff --git a/Skins/- + morgan spring/spinner-glow.png b/Skins/- + morgan spring/spinner-glow.png new file mode 100644 index 00000000..7a475a96 --- /dev/null +++ b/Skins/- + morgan spring/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c0b0e455072b95eceecb999407691cfaef1c2adbd8d357dc7c701bf6ad2733 +size 2792 diff --git a/Skins/- + morgan spring/spinner-glow@2x.png b/Skins/- + morgan spring/spinner-glow@2x.png new file mode 100644 index 00000000..3377110d --- /dev/null +++ b/Skins/- + morgan spring/spinner-glow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a1ea426b2275bcd72b01693315d48476ca717038865b75bb9334273720d471 +size 131 diff --git a/Skins/- + morgan spring/spinner-metre.png b/Skins/- + morgan spring/spinner-metre.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/spinner-middle.png b/Skins/- + morgan spring/spinner-middle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/spinner-middle2.png b/Skins/- + morgan spring/spinner-middle2.png new file mode 100644 index 00000000..7a475a96 --- /dev/null +++ b/Skins/- + morgan spring/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c0b0e455072b95eceecb999407691cfaef1c2adbd8d357dc7c701bf6ad2733 +size 2792 diff --git a/Skins/- + morgan spring/spinner-middle2@2x.png b/Skins/- + morgan spring/spinner-middle2@2x.png new file mode 100644 index 00000000..dfef97d7 --- /dev/null +++ b/Skins/- + morgan spring/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da75f3a6b1bcd8a7ad1981f8b7d44cf6f18741681f8e971e78d9264ae1cbaf9 +size 131 diff --git a/Skins/- + morgan spring/spinner-osu.png b/Skins/- + morgan spring/spinner-osu.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/- + morgan spring/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/- + morgan spring/spinner-osu.wav b/Skins/- + morgan spring/spinner-osu.wav new file mode 100644 index 00000000..5b1b61b5 --- /dev/null +++ b/Skins/- + morgan spring/spinner-osu.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a5ea992a53c97b6c08b7256ba85d75dde1198302992f7df0746bbc6ee0157f +size 91308 diff --git a/Skins/- + morgan spring/spinner-rpm.png b/Skins/- + morgan spring/spinner-rpm.png new file mode 100644 index 00000000..76b5dcd8 --- /dev/null +++ b/Skins/- + morgan spring/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26042d31f7a104fb04f38e17bbda04ca3eb6c28c8a5dfc38e9671facb699dedb +size 2219 diff --git a/Skins/- + morgan spring/spinner-spin.png b/Skins/- + morgan spring/spinner-spin.png new file mode 100644 index 00000000..72314e76 --- /dev/null +++ b/Skins/- + morgan spring/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6026aa714c9079d63a27b6c1ff95b069f296ac685f7c6bec18449b3e0286ab94 +size 182 diff --git a/Skins/- + morgan spring/spinner-spin@2x.png b/Skins/- + morgan spring/spinner-spin@2x.png new file mode 100644 index 00000000..dfef97d7 --- /dev/null +++ b/Skins/- + morgan spring/spinner-spin@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da75f3a6b1bcd8a7ad1981f8b7d44cf6f18741681f8e971e78d9264ae1cbaf9 +size 131 diff --git a/Skins/- + morgan spring/spinner-top.png b/Skins/- + morgan spring/spinner-top.png new file mode 100644 index 00000000..7a475a96 --- /dev/null +++ b/Skins/- + morgan spring/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c0b0e455072b95eceecb999407691cfaef1c2adbd8d357dc7c701bf6ad2733 +size 2792 diff --git a/Skins/- + morgan spring/spinner-top@2x.png b/Skins/- + morgan spring/spinner-top@2x.png new file mode 100644 index 00000000..dfef97d7 --- /dev/null +++ b/Skins/- + morgan spring/spinner-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da75f3a6b1bcd8a7ad1981f8b7d44cf6f18741681f8e971e78d9264ae1cbaf9 +size 131 diff --git a/Skins/- + morgan spring/spinnerbonus.wav b/Skins/- + morgan spring/spinnerbonus.wav new file mode 100644 index 00000000..262eda1e --- /dev/null +++ b/Skins/- + morgan spring/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0519fd662999cfcf48f60c73912216953f2d4b47b33daad8df3ddf73407e66 +size 524806 diff --git a/Skins/- + morgan spring/spinnerspin.mp3 b/Skins/- + morgan spring/spinnerspin.mp3 new file mode 100644 index 00000000..fdaf9a24 --- /dev/null +++ b/Skins/- + morgan spring/spinnerspin.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678990e0480ea95ff81eebe0e89ed4d1ed6171c275021f26059fcfc13c0dfe58 +size 13672 diff --git a/Skins/- + morgan spring/spinnerspin.wav b/Skins/- + morgan spring/spinnerspin.wav new file mode 100644 index 00000000..8e3c0d9a --- /dev/null +++ b/Skins/- + morgan spring/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca06ced00a460d2bea791c5e0ef611d49aafb4ebb2790a8cb893080c4fb72826 +size 66080 diff --git a/Skins/- + morgan spring/star.png b/Skins/- + morgan spring/star.png new file mode 100644 index 00000000..ed5209fe --- /dev/null +++ b/Skins/- + morgan spring/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d7990682ce7572182d838baa4acc247cf9beacfb883c746e254f5bc332037b +size 18486 diff --git a/Skins/- + morgan spring/star2.png b/Skins/- + morgan spring/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- + morgan spring/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- + morgan spring/taiko-normal-hitclap.wav b/Skins/- + morgan spring/taiko-normal-hitclap.wav new file mode 100644 index 00000000..b0755c42 --- /dev/null +++ b/Skins/- + morgan spring/taiko-normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5945abc36beb813c01ec4901641aa16df7ea9cb265c88f3780b8ad18f604c41 +size 31276 diff --git a/Skins/- + morgan spring/taiko-normal-hitfinish.wav b/Skins/- + morgan spring/taiko-normal-hitfinish.wav new file mode 100644 index 00000000..ce04b456 --- /dev/null +++ b/Skins/- + morgan spring/taiko-normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a496b4f0b223546c0ae7dc8341df9874dd5c990fc90f35cf9c8a068c476efcd9 +size 129196 diff --git a/Skins/- + morgan spring/taiko-normal-hitnormal.wav b/Skins/- + morgan spring/taiko-normal-hitnormal.wav new file mode 100644 index 00000000..512a85ab --- /dev/null +++ b/Skins/- + morgan spring/taiko-normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed61b523d494222ee408cb259cd9265bb805c488f8b729c88b07f57ff2cd3ef9 +size 77900 diff --git a/Skins/- + morgan spring/taiko-normal-hitwhistle.wav b/Skins/- + morgan spring/taiko-normal-hitwhistle.wav new file mode 100644 index 00000000..cb61c9fe --- /dev/null +++ b/Skins/- + morgan spring/taiko-normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10dd824b01ae6df48e80b0a101534a09206efde3e0b6cca16b9528f92fcba4f0 +size 136868 diff --git a/Skins/- + morgan spring/taiko-soft-hitclap.wav b/Skins/- + morgan spring/taiko-soft-hitclap.wav new file mode 100644 index 00000000..44a3bcc7 --- /dev/null +++ b/Skins/- + morgan spring/taiko-soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2823b3b2523e78cb07df04742202b140d567859e1a267d709628935550299f67 +size 31276 diff --git a/Skins/- + morgan spring/taiko-soft-hitfinish.wav b/Skins/- + morgan spring/taiko-soft-hitfinish.wav new file mode 100644 index 00000000..79f6dc44 --- /dev/null +++ b/Skins/- + morgan spring/taiko-soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67b83efe886c8d34eba097df511588302d643efda8a248b3fdceeb6fc80aab01 +size 129196 diff --git a/Skins/- + morgan spring/taiko-soft-hitnormal.wav b/Skins/- + morgan spring/taiko-soft-hitnormal.wav new file mode 100644 index 00000000..5233c826 --- /dev/null +++ b/Skins/- + morgan spring/taiko-soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a858d20e02a8350e169047f63c68c888b6aee4735a96cb4e852dac00c120ef +size 77900 diff --git a/Skins/- + morgan spring/taiko-soft-hitwhistle.wav b/Skins/- + morgan spring/taiko-soft-hitwhistle.wav new file mode 100644 index 00000000..233e3e60 --- /dev/null +++ b/Skins/- + morgan spring/taiko-soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6705c63911565d6977572858bd994c0f4e3e84dbd7c1b1f78e7b7c1c97b09018 +size 136868 diff --git a/Skins/- + morgan spring/welcome.wav b/Skins/- + morgan spring/welcome.wav new file mode 100644 index 00000000..4b193b10 --- /dev/null +++ b/Skins/- + morgan spring/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b168eda71713a36f4e2477286cd27894048ddf828592134029854c1f623039 +size 265790 diff --git a/Skins/- + morgan spring/whoosh.wav b/Skins/- + morgan spring/whoosh.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- + morgan spring/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/# credits.txt b/Skins/- Seoul v11 Asta Edit/# credits.txt new file mode 100644 index 00000000..1a593c31 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/# credits.txt @@ -0,0 +1,21 @@ +////////////////////////////////////////////////////// CREDITS ////////////////////////////////////////////////////// +/////////////////////////////////////////////////////// ART //////////////////////////////////////////////////////// +// teffish (twitter - @teffish / pixiv - https://www.pixiv.net/users/673438) - mods and interface +// ツチヤ / abisswalker (twitter - @abisswalker8 https://twitter.com/abisswalker8 - https://www.pixiv.net/users/9678597) - backgrounds +// こもわた遙華 (twitter @mokowata https://twitter.com/mokowata / pixiv - https://www.pixiv.net/users/442855) - chibis +// 蒼ウサギ (twitter @AoUSA0328 https://twitter.com/AoUSA0328 / pixiv - https://www.pixiv.net/users/19095613) - echidna/menugirl +// こおもい (twitter @koomoi_11 https://twitter.com/koomoi_11 / pixiv - https://www.pixiv.net/users/851032) - spinner/modeselect + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Fonts Used: +// Josefin Sans - score numbers +// Poppins - combo numbers, 50/100/300s +// Kozuka Gothic Pro and Hiragino Maru Gothic Pro - UI text and main fonts for everything else +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +Misc Sources: +menu-background art: https://www.pixiv.net/artworks/82755969 +ranking panel echidna art: https://twitter.com/AoUSA0328/status/1530855497003565056 +failsound music:https://www.youtube.com/watch?v=-W5g0-S-_8s +applause music: https://www.youtube.com/watch?v=3zAJuDjknGU + diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/# credits.txt b/Skins/- Seoul v11 Asta Edit/- Seoul v11/# credits.txt new file mode 100644 index 00000000..1a593c31 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/# credits.txt @@ -0,0 +1,21 @@ +////////////////////////////////////////////////////// CREDITS ////////////////////////////////////////////////////// +/////////////////////////////////////////////////////// ART //////////////////////////////////////////////////////// +// teffish (twitter - @teffish / pixiv - https://www.pixiv.net/users/673438) - mods and interface +// ツチヤ / abisswalker (twitter - @abisswalker8 https://twitter.com/abisswalker8 - https://www.pixiv.net/users/9678597) - backgrounds +// こもわた遙華 (twitter @mokowata https://twitter.com/mokowata / pixiv - https://www.pixiv.net/users/442855) - chibis +// 蒼ウサギ (twitter @AoUSA0328 https://twitter.com/AoUSA0328 / pixiv - https://www.pixiv.net/users/19095613) - echidna/menugirl +// こおもい (twitter @koomoi_11 https://twitter.com/koomoi_11 / pixiv - https://www.pixiv.net/users/851032) - spinner/modeselect + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Fonts Used: +// Josefin Sans - score numbers +// Poppins - combo numbers, 50/100/300s +// Kozuka Gothic Pro and Hiragino Maru Gothic Pro - UI text and main fonts for everything else +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +Misc Sources: +menu-background art: https://www.pixiv.net/artworks/82755969 +ranking panel echidna art: https://twitter.com/AoUSA0328/status/1530855497003565056 +failsound music:https://www.youtube.com/watch?v=-W5g0-S-_8s +applause music: https://www.youtube.com/watch?v=3zAJuDjknGU + diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/applause.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/applause.ogg new file mode 100644 index 00000000..e2b5ee46 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e138aa31c52a6806347976f9f57877c47838a31161fab281cfb7914ede3e26 +size 2257923 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/approachcircle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/approachcircle.png new file mode 100644 index 00000000..6a249201 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd820259aff785d5d58a3a22ce9408f46ee6a999494c5a3b489d79036db4df43 +size 13406 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/approachcircle@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-generic.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-generic.png new file mode 100644 index 00000000..a3dc6c5a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-generic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec7dfb54a06ec6f61cc7dc0ecc50d21b80d5fd6963b564f30d33a5b17616611 +size 5267 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-generic@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-generic@2x.png new file mode 100644 index 00000000..a3836479 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-generic@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5a4bdd8b2261d2183fc20f789606544524fdd47941bfce5c9b8349d17fee34 +size 8355 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-pause.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-pause.png new file mode 100644 index 00000000..a60919df --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-pause.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8292505f803bcf6dd5b3266961c63221c8fd7db536a18b59f34cf6eea0e2fd +size 5267 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-pause@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-pause@2x.png new file mode 100644 index 00000000..a3836479 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-pause@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5a4bdd8b2261d2183fc20f789606544524fdd47941bfce5c9b8349d17fee34 +size 8355 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-warning.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-warning.png new file mode 100644 index 00000000..13590972 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d781ace999b98ae8f3edbd293c12a6e214657ce9944f9e1f24e2ec941463719c +size 2827 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-warning@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-warning@2x.png new file mode 100644 index 00000000..7fe406e0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/arrow-warning@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59dbf9c67e8723d5b3d65369ad0581d4ba1141f9e77ff38bdc2ff812adcef80e +size 4918 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-left.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-left.png new file mode 100644 index 00000000..ff27a2f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3012e300bdd2cf02ab6f9d8de74e76416e8c7557d6575c09bed0a9868449c433 +size 2979 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-left@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-left@2x.png new file mode 100644 index 00000000..ba0b1f39 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-left@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d0b0c5757db02b2ebaf7e68a466552cc55750193a39caf5360b18c010dd475 +size 7443 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-middle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-middle.png new file mode 100644 index 00000000..697f18f1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3dc3d52d2b9d0244baffe296ca61e012f97a24f30a4ad277048e46a4ca7417d +size 12161 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-middle@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-middle@2x.png new file mode 100644 index 00000000..027abafe --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f6da98834a017967b073df82816dbd67427311bcad4e11ee3ba12f5eb55fc3 +size 68628 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-right.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-right.png new file mode 100644 index 00000000..d9314816 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e9d119b7c41923f6cb920da55c645a8ee5233fa0bf8bffe392c59ec1147af3 +size 2920 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-right@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-right@2x.png new file mode 100644 index 00000000..5828b043 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/button-right@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2fe4c6033cd200117e4eff952a92721f6f16c32bd01ada08ccbfc4cfd0e89d +size 7323 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/click-short-confirm.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/click-short-confirm.wav new file mode 100644 index 00000000..4ab891f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/click-short-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58777283660650f950bdd6ea2e28dff829743782099cff6a2237527e820e3dd5 +size 91918 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/click-short.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/click-short.wav new file mode 100644 index 00000000..39eba0bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/click-short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b20ee3218ef95a0937f207663684bf05450810771d3d9893f284dae63521670 +size 5560 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/clickshort.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/clickshort.wav new file mode 100644 index 00000000..39eba0bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/clickshort.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b20ee3218ef95a0937f207663684bf05450810771d3d9893f284dae63521670 +size 5560 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-0.png new file mode 100644 index 00000000..09baec31 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70591e01a6902f37bdd8caaf5da3ba1d9e713930056df64fa9e07c7042c12467 +size 1454 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-0@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-0@2x.png new file mode 100644 index 00000000..941a300d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c7af25ce648b0d420c57c7bd57e49dd20ee7cd50259c12c97eaf463c18e654 +size 3296 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-1.png new file mode 100644 index 00000000..dbe53c88 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49bd9cc8eac54f1f927b344d924ec7789c262908459bb8e262fc4b83ecbd12bf +size 926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-1@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-1@2x.png new file mode 100644 index 00000000..b97a6489 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a103db25da887c89c5b3c372573add4831e8ff9e908a177881ee832c3c23a4b9 +size 1661 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-2.png new file mode 100644 index 00000000..884851cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4368891b5bab778fb21ec8cf60839d0e892999ef33c2c3a3475e292e8eb327f9 +size 1297 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-2@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-2@2x.png new file mode 100644 index 00000000..c3cbbc7d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a432f7bdccc3abd1f0804dea716e57b56abe2007e2dd778ce37f33da04711b +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-3.png new file mode 100644 index 00000000..77fbceef --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f1d8aa90dd2b89b7e54eb6acbb34935f9ee67973829822ab160e1aaa1b5d30 +size 1546 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-3@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-3@2x.png new file mode 100644 index 00000000..e66be571 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd784636875594fe27bcb76be673646da0ab513b54a4c6fba046babf2cebd6e +size 3502 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-4.png new file mode 100644 index 00000000..09d1c541 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4949a8f09dae65e24c64e7404f68ec622d0d402ff5686e7cc963f25586c63f0c +size 1315 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-4@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-4@2x.png new file mode 100644 index 00000000..31e4bb53 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5357f9a1b7c8124b496f4c0d5e3001d18ec004d4c9f5fa1364c6ba77a5783178 +size 2576 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-5.png new file mode 100644 index 00000000..d3b5454f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991a8b44763a6f06d95d44f76653deac4e38a93a2df3779875e69291a8a30484 +size 1432 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-5@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-5@2x.png new file mode 100644 index 00000000..510def78 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26890a55773acf26935c7f80c93615b7c1e4a7d58a1f81656577fc33dc1a9c9 +size 3105 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-6.png new file mode 100644 index 00000000..d872b782 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab894f5928c606c6c51e0c7f0f4dbc2b46b17ab361b04b23d2384b464e9a1810 +size 1580 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-6@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-6@2x.png new file mode 100644 index 00000000..ab66d47f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24224acb3e588eac727ac01c16e92cc392178aceddfd778c29baf55a9651bc1c +size 3602 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-7.png new file mode 100644 index 00000000..03c5888d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439c768519fb53c3f88b7cba6aeaf0d66275a7d403651f75afb79d8b0c628a52 +size 1029 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-7@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-7@2x.png new file mode 100644 index 00000000..177c2bd0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35936d4b4972505a340a70c252a36a8b4d07d9fa30655625753c842e11c75ec +size 1684 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-8.png new file mode 100644 index 00000000..3fc87325 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7685ec7e687aa237df3a663b16bbcbabdb045884561d839770ae07a29ecf36e4 +size 1616 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-8@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-8@2x.png new file mode 100644 index 00000000..223203f4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2356d274240666f5425d53a8e4031635d86c9b9c5ee2dac9bc1a044ed0c7d3 +size 3731 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-9.png new file mode 100644 index 00000000..ccec291f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb08e6f97d2dab1763ceee8d71043197a3b0a9110f2d856cc56b5a4d46ef23bd +size 1611 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-9@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-9@2x.png new file mode 100644 index 00000000..2da1d9af --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa65143238b629af392c2a99e108601ace11aa5dd7f798fbbe025693fdaa56f8 +size 3639 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-x.png new file mode 100644 index 00000000..8799a556 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74bf8f92ed03891b2310bc8174b8c08aeeb16ed06337711aebbbc076638ea8ae +size 1418 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-x@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-x@2x.png new file mode 100644 index 00000000..47364774 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combo-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e17041ce8a0d82651bc95995ffd34e43a005810dd78d1a54f2d85b87ea5de0 +size 3727 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combobreak.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combobreak.wav new file mode 100644 index 00000000..d619f715 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8627af04eb69db0c823c0a1e39129235c66f1c28395d4df18e59dde7c10d1dc +size 34132 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/combobreakalt.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combobreakalt.wav new file mode 100644 index 00000000..207e4366 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/combobreakalt.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c78fd56564bf8a107ea0988df13a7a75520192471f5bff1fa05bd9f20e6590 +size 147476 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/comboburst.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/comboburst.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/count.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/count1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count1.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/count1s.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count1s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/count2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count2.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/count2s.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count2s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/count3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count3.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/count3s.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count3s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursor.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursor.png new file mode 100644 index 00000000..a60427f6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75ad88163c549652a015d2f5a77ced96d3936b94094df2d840e3a1097167a733 +size 295 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursor@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursor@2x.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursormiddle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursormiddle.png new file mode 100644 index 00000000..7dde0179 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursormiddle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67826a8c9470817afdc964c76b934bc205fb917eac38c713070ec52e24f821a1 +size 5498 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursortrail.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursortrail.png new file mode 100644 index 00000000..f6b280b1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:852c9140b769d7e09127c13e663a136e40137bc95f95f3b07a8042edf761f1c3 +size 1457 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-0.png new file mode 100644 index 00000000..d24a5942 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b245bf28443e61b4fdcf3d5f21d2f3d3d139bed1e102158dc31f018db54b24 +size 1620 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-0@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-0@2x.png new file mode 100644 index 00000000..fd50d8c8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c55b1c1b758695a0a9628b2223415866efa7af520ac15dfe55703ae44e7d82c +size 3554 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-1.png new file mode 100644 index 00000000..6c44c5b7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084e7761b22ed341cc3d0cc6bd6ee72b24d868bce0fbe0eab7f4653f8cbcc2e2 +size 860 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-1@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-1@2x.png new file mode 100644 index 00000000..be93f5c2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88fb7500dbc6bbec0aebb4119f39e30e601ddf5550e65288efa5dd368cc637a +size 1576 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-2.png new file mode 100644 index 00000000..11c25c6a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c59e89fc2379654c3a8241a1fadc74ee861fa381f4a01ca23089aad2347bad +size 1351 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-2@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-2@2x.png new file mode 100644 index 00000000..e2ade84a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3230c0f35bee6931687093d19b82ffde88b8583cad56ade88f54feafae16db +size 2717 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-3.png new file mode 100644 index 00000000..4fb5fc00 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b055d10b3d284a35eeee658d5eeb00f84d3ff2a6cbdcddc959a7813331c7eda +size 1591 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-3@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-3@2x.png new file mode 100644 index 00000000..71912a9e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f01b97a241ca32b965fcd8635f9203cad0f1ccadeb7c161ec3f95ba2d625e34 +size 3361 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-4.png new file mode 100644 index 00000000..6175ca84 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3043e2ae27d61ea144df172ff93801b5b5eddc878d27f30c9b0acf04b926bde1 +size 1244 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-4@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-4@2x.png new file mode 100644 index 00000000..c70d53b2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01340e863abf68dccc1faed45817e0d9c67b9704788e6feae73b163060d29051 +size 2370 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-5.png new file mode 100644 index 00000000..b2c25ed4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a41e9593945dcec119d1ab0a44ba2b739f6b134b1e78d84b1f085ae5bc5fbd6 +size 1519 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-5@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-5@2x.png new file mode 100644 index 00000000..ccd5129d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29b097b85c243512beda57f1e0d565f374608754c457816e051271c64703942 +size 3215 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-6.png new file mode 100644 index 00000000..77883293 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cbcf555e46287c2192848a6d18aea65ac8f35d7bf17f633b3e5cf01ebf1745 +size 1730 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-6@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-6@2x.png new file mode 100644 index 00000000..b5d7f7d8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc8b4065d8c9ff0daa03401d24ac2ab95c5ceef4ac2687f4f848d507161c877 +size 3679 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-7.png new file mode 100644 index 00000000..0a4335a8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a471a44962549323e0e46bd409d1c9c176d7f7eacfea03783de68e22e1f0682 +size 896 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-7@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-7@2x.png new file mode 100644 index 00000000..b9f8322b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb7ec0056a5a4420a552a87cc7c12c9ad2adf2473b485ecd293606782fb3cfb +size 1542 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-8.png new file mode 100644 index 00000000..3c75233f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6fc923b3a8ad9064e5ee81911d18a64964aca13d9c88543f176513fa8bf738d +size 1744 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-8@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-8@2x.png new file mode 100644 index 00000000..1df26ff8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048da0235fa57e87713b4914ebf9f242ed1d5d0aa4182f9071e37e770f5fc86c +size 3739 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-9.png new file mode 100644 index 00000000..18519cf8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9efc97a55d9ebeaed4c0c255d9ddbe542e73d7a7ba786828c165859696feb46f +size 1723 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-9@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-9@2x.png new file mode 100644 index 00000000..1a521005 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb0b6f575f8abf8f69302e2631397ea50e1594965d697822f630e24106a7a9a +size 3635 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitclap.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitclap.ogg new file mode 100644 index 00000000..5b077e09 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1267e0cbe6f451fe7cc80c54aa8d9609788744f80dc4f55f98ac20c3063ab9 +size 6355 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitfinish.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitfinish.ogg new file mode 100644 index 00000000..3d4795e4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1f1e064b00b77b7a2afaf2a9d65fde1ce7baf787d46b5f814427bfee7b1786 +size 7320 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitnormal.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitnormal.ogg new file mode 100644 index 00000000..e3c7a777 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8a31d3e16d4acf5128682e203d422210f75e6b4f87548987d833588d6513a0 +size 7320 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitwhistle.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitwhistle.ogg new file mode 100644 index 00000000..e32d2661 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33656343d065233083c31d932fd076f12490fcf82b58bc9559a506516fec90f3 +size 19982 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-sliderslide.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-slidertick.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-sliderwhistle.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/fail-background.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/fail-background.png new file mode 100644 index 00000000..92a147e8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec5c6040694674664691017c121ab87e8892cce9602ade098c078783e0eb05dd +size 923440 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/fail-background@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/fail-background@2x.png new file mode 100644 index 00000000..363f1ab1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/fail-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f08dfc3961f761e7e01da501f2706ca3d5a90380c1d46503924e702acf6973ed +size 2926946 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/failsound.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/failsound.ogg new file mode 100644 index 00000000..30e3c8fd --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c502536e2bb3bf6010440ecaa757607e0eb674a6218e7d39d9090be444569380 +size 2188607 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-0.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-1.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-2.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-3.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-4.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-5.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-6.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-7.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-8.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-9.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/go.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/go.png new file mode 100644 index 00000000..cd9290c8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48a6cef1d4f143f9585daafb0d2c5769d5e2991d2d84e119e34fa75d0725e88 +size 1433053 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/gos.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/gos.wav new file mode 100644 index 00000000..8864a237 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977a135f0949a829b9a1fead56ef9c963d836921f96ccadb1b0401376ffdf93f +size 529244 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/heartbeat.mp3 b/Skins/- Seoul v11 Asta Edit/- Seoul v11/heartbeat.mp3 new file mode 100644 index 00000000..9f5e78d3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/heartbeat.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a95657b49066c5b4664a7f9c7d1a27430af20d2eea25e06194df4e85f9be73 +size 12646 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-0.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-1.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-10.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-10.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-11.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-11.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-12.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-12.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-13.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-13.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-14.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-14.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-15.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-15.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-16.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-16.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-17.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-17.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-18.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-18.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-19.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-19.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-2.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-20.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-20.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-21.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-3.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-4.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-5.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-6.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-7.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-8.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-9.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0.png new file mode 100644 index 00000000..7565a290 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81926ef0391e7604d276aa81bc352874ca30e8a2e3e4b98409d9ef821fd8f82 +size 280 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-0.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-1.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-10.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-10.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-11.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-11.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-12.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-12.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-13.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-13.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-14.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-14.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-15.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-15.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-16.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-16.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-17.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-17.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-18.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-18.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-19.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-19.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-2.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-20.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-20.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-21.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-3.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-4.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-5.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-6.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-7.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-8.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-9.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-0.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-1.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-10.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-10.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-11.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-11.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-12.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-12.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-13.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-13.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-14.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-14.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-15.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-15.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-16.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-16.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-17.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-17.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-18.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-18.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-19.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-19.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-2.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-20.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-20.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-21.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-3.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-4.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-5.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-6.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-7.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-8.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-9.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300g-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300g.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300g.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300k-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300k.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300k.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-0.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-1.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-10.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-10.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-11.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-11.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-12.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-12.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-13.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-13.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-14.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-14.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-15.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-15.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-16.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-16.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-17.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-17.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-18.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-18.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-19.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-19.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-2.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-20.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-20.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-21.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-3.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-4.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-5.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-6.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-7.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-8.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-9.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50.png new file mode 100644 index 00000000..7565a290 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81926ef0391e7604d276aa81bc352874ca30e8a2e3e4b98409d9ef821fd8f82 +size 280 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-0.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-1.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-10.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-10.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-11.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-11.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-12.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-12.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-13.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-13.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-14.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-14.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-15.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-15.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-16.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-16.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-17.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-17.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-18.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-18.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-19.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-19.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-2.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-20.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-20.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-21.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-3.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-4.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-5.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-6.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-7.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-8.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-9.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircle.png new file mode 100644 index 00000000..fd6fa582 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e54d94e375fef3906140c3209ff4ba3e0af825d24f2406c7a99ab1d2001d4f +size 4339 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircle@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircle@2x.png new file mode 100644 index 00000000..8262e4e9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12b81e2f3e41f90123253225acc1340b6a966150eeaa3a2643f7c956e657cf3 +size 9472 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircleoverlay.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircleoverlay.png new file mode 100644 index 00000000..fb37b27b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59017568858c761e41b126cfb5ab571ce28c450423816a77f81c14fc267dbd21 +size 14658 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircleoverlay@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircleoverlay@2x.png new file mode 100644 index 00000000..a3f124ac --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96977ca2aea8a113f23c225ff6b208f5f8cc20e6d57f9f5baa804c1c6a8da4ec +size 26465 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircleselect.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircleselect.png new file mode 100644 index 00000000..d8271622 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8e03cd30f94d4afd3eaf219f1801bc783130e1b4566d2b4035103ac98b8e895 +size 6957 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-background.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-background.png new file mode 100644 index 00000000..081a803d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81af3bc5b735fefbcec84a8d964448c073a1a47a830f8c31f6ecc912ce279043 +size 23400 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-background@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-background@2x.png new file mode 100644 index 00000000..3c7dbd38 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf48b7873d7eaae42fab1e2273ff3859e4c723228c651da6faf7525105ac898a +size 75124 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-key.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-key.png new file mode 100644 index 00000000..565adf00 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80341452dd962f087779f5369abcdd63ef82068c58f1479d5866e0059903f87a +size 763 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-key@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-key@2x.png new file mode 100644 index 00000000..ad784cfd --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446ca0eb8ccf17b2e8d5e6c79c76e155f7a98b7f2f4e7fe83211fa8b3b7a58ff +size 1345 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/lighting.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/lighting.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-confirm.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-confirm.wav new file mode 100644 index 00000000..17f98e5e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb601a34b33697c96b5ab93aa8a9b20331c34e43586411ee8d898a0210f230a9 +size 62724 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-join.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-join.wav new file mode 100644 index 00000000..1d31b082 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-join.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5883c6eab9fd596e3c037cecf5bd52106cba95bdfddfc8fdd20754ae699fc0e5 +size 55048 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-leave.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-leave.wav new file mode 100644 index 00000000..2c01b4f8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-leave.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5863d5c06d5599345228121de70f15de43f82768bb64a670dc074cf741a740f +size 47738 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-start.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-start.wav new file mode 100644 index 00000000..193a0e01 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/match-start.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d9f103543926dbe431afd64837790e57f7791c1ecc093d000ca46b21504fe1 +size 31470 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-0.png new file mode 100644 index 00000000..15cb60e8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ab7d76923b8b2f16859272424c0db551b072c862cd6cc15e4824cf2cb0a576 +size 44872 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-0@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-0@2x.png new file mode 100644 index 00000000..481adf25 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:364bf5fd7e7a6120ba05d7fb468de204c2da19a6467418117fbe76fe6076f168 +size 150634 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-1.png new file mode 100644 index 00000000..64f61c94 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64aae7fa898e2f14c47ac1d3e8b755f323d31a5ce09788d07ea4298af7910dff +size 45577 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-1@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-1@2x.png new file mode 100644 index 00000000..256879e3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:388bc7ee1b542c58bcf1b17e9931dd6878c692124793c4a0d97c5924116a57bc +size 151885 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-2.png new file mode 100644 index 00000000..ceeae849 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebb5659d55ca76c6f1df66a8927c548d15d18904e17b2d268685a8f4719f07a +size 45709 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-2@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-2@2x.png new file mode 100644 index 00000000..8e0c4952 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846557bde2b6f9b35ba2df77e3be743bd560709f2a902835e3d70d08f87dee20 +size 152402 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-3.png new file mode 100644 index 00000000..47eaa29c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bc92ae64833f78470caf913f99c3980dde3359d09900cef7f9e10bfe793c0f +size 45732 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-3@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-3@2x.png new file mode 100644 index 00000000..fa311819 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5bba705221e2faab34980103c6b019ebb6313d28f3b9f6b09a239be7599fa2 +size 152316 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-4.png new file mode 100644 index 00000000..beb9382c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c89a86eef190e65a2c7b469b8341b21c64cdf51dcb69f263d2d2f8a0c1c67c +size 45981 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-4@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-4@2x.png new file mode 100644 index 00000000..5784b9a1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0b3a70336eb3c54897761c07e6a7d35f4deb356672f1aa8bc2c9e2cacf6efc +size 152676 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-5.png new file mode 100644 index 00000000..68ff6121 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84fb5cfc645c010ed85aab56396e7ad4d770c40904341c03652ff1d146ccc3aa +size 45718 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-5@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-5@2x.png new file mode 100644 index 00000000..c8b50795 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b9bf1bacf200fa5213c1f11afc5e07f4a891a2004c063ce058d202f5676e7a +size 152207 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-6.png new file mode 100644 index 00000000..b5d86a01 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f86cf56dc148a8acbe252e7413f44bda60bc851f20ffb91da7c1547e6f623e +size 45928 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-6@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-6@2x.png new file mode 100644 index 00000000..dc5e9fdb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f2c707e3a57e593f660e16baeb163b0dad972ee6ba347afa5cba67d8c0f453 +size 152184 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-7.png new file mode 100644 index 00000000..a777d14d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99696c58edec8ef167f2f77343d3c7968d4a43968a0ec4cdc4a55215d44e4f03 +size 45876 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-7@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-7@2x.png new file mode 100644 index 00000000..cf085c3f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377b0bb51fe164bb47d2f3e4fc4857a0ea2d0e5bcb41fc3f3305425310b37a85 +size 151575 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-8.png new file mode 100644 index 00000000..46ba3f9f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:669e0f1bfcaf6fd9b6c3e6a5ec1e29b46740882f222b4d76eeff88c9978981d1 +size 41354 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-8@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-8@2x.png new file mode 100644 index 00000000..c8f1e631 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-back-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2250777e105b9d626b081da692765bc84ec288061ca75e918f25ccdc6f66a2bd +size 142352 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-background.jpg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-background.jpg new file mode 100644 index 00000000..3197ec59 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6263bf6f6ddad75d89e5ea85c6bdf6cb073a229135b50dfca812d9cf84fd05f +size 4741923 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-button-background.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-button-background.png new file mode 100644 index 00000000..b6fe76a2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce0c7fc62ead7d23acf4dd759a26e41a08621383deaea7df2f7f85bfad2de964 +size 101409 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-button-background@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-button-background@2x.png new file mode 100644 index 00000000..bc13e200 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f47d5942a6e791961fae17d0ea01f0f670b412c8338f4f5f335a8097d2030572 +size 427231 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-snow.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-snow.png new file mode 100644 index 00000000..d32d1064 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b8bf6dc28c8057234c5d858a9b011f7d9fe2592327ffb331d862a225bef838 +size 2221 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-snow@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-snow@2x.png new file mode 100644 index 00000000..716d6bd7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menu-snow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523d8678c485f19da053293d0e1d271f9812714d1d40993c184b8e71bc159730 +size 4830 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menuback.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menuback.wav new file mode 100644 index 00000000..e86ffda4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161d093f692794dfea6b1c01e53dea34c657f290739954519c9fca78fe20779b +size 178510 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menuclick.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menuclick.wav new file mode 100644 index 00000000..39eba0bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b20ee3218ef95a0937f207663684bf05450810771d3d9893f284dae63521670 +size 5560 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/menuhit.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menuhit.wav new file mode 100644 index 00000000..4ab891f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58777283660650f950bdd6ea2e28dff829743782099cff6a2237527e820e3dd5 +size 91918 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/metronomehigh.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/metronomehigh.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/metronomehigh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/metronomelow.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/metronomelow.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/metronomelow.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits-med.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits-med.png new file mode 100644 index 00000000..548b10d7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b8b6eae868382b25fdf61b25ebf970f10a9ea3069562829b00c7b356f3f6460 +size 3266 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits-med@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits-med@2x.png new file mode 100644 index 00000000..70b3f135 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:353f26e8d135ddf77c1dc4e9c5b2af0a24590a600cb7e9e8041e9e160dca6e6e +size 9906 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits-small.png new file mode 100644 index 00000000..d2ac0f32 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd9dd3ab2ae7ab3a4cf06f1e40dea8e371b956d56f7bbecaccd14c8196f2e3f +size 133 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits.png new file mode 100644 index 00000000..51ddbc06 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70344a9cc013d0c555b03066c006675c03db693bf2a2c35186faa6f82bcce3ed +size 11231 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits@2x.png new file mode 100644 index 00000000..670f4a95 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-fruits@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dabb41f34f3c3c2e7b11804c129155d36149480e9ecf930eed70723b5959688 +size 21102 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania-med.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania-med.png new file mode 100644 index 00000000..69db9c0e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72710199692fdcf4d16910f5f985cb7b904c7173241e476d07ea85ea41763250 +size 3267 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania-med@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania-med@2x.png new file mode 100644 index 00000000..b3540e05 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaab4ccb3048848701d18afa3b2acc27eb90f7db4f40860c0c27f7732c9f3387 +size 9906 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania-small.png new file mode 100644 index 00000000..d2ac0f32 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd9dd3ab2ae7ab3a4cf06f1e40dea8e371b956d56f7bbecaccd14c8196f2e3f +size 133 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania.png new file mode 100644 index 00000000..51ddbc06 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70344a9cc013d0c555b03066c006675c03db693bf2a2c35186faa6f82bcce3ed +size 11231 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania@2x.png new file mode 100644 index 00000000..670f4a95 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-mania@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dabb41f34f3c3c2e7b11804c129155d36149480e9ecf930eed70723b5959688 +size 21102 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-med.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-med.png new file mode 100644 index 00000000..eda97573 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:352c27848d0aff4728040224abaff1e7f3d6f5969d2f14f8f90c9da6d51c44eb +size 2200281 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-med@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-med@2x.png new file mode 100644 index 00000000..1d27691f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2c772cca8bc99011c255a064646b7889e6baaf15562fa77f22e86625d17520 +size 7155051 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-small.png new file mode 100644 index 00000000..edae5024 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45bf02509a8ae908a55b0cb3b4d86d284369e06909ddcde3c3db4edef0404903 +size 353500 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-small@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-small@2x.png new file mode 100644 index 00000000..c6b84fb6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c651a97845c571bf4b5638874beaf2f126026f2e8537cc1e6d227ab561471a2e +size 1265642 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu.png new file mode 100644 index 00000000..d3335dcc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3776afbde8c62173719cf2fbdbb4514fc5034bb57c3ec6b1eb24a27377120f24 +size 11231 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu@2x.png new file mode 100644 index 00000000..670f4a95 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-osu@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dabb41f34f3c3c2e7b11804c129155d36149480e9ecf930eed70723b5959688 +size 21102 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko-med.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko-med.png new file mode 100644 index 00000000..a29ca9e2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ad026b0361967b7fc8b74dbebd9012dd761f21301e0a104260994fee0559b6 +size 3265 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko-med@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko-med@2x.png new file mode 100644 index 00000000..155c793f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c855486f355e75b99cd9818f49e328156bd40c53cc63e866ae975aa806f487 +size 9906 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko-small.png new file mode 100644 index 00000000..d2ac0f32 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd9dd3ab2ae7ab3a4cf06f1e40dea8e371b956d56f7bbecaccd14c8196f2e3f +size 133 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko.png new file mode 100644 index 00000000..d3335dcc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3776afbde8c62173719cf2fbdbb4514fc5034bb57c3ec6b1eb24a27377120f24 +size 11231 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko@2x.png new file mode 100644 index 00000000..670f4a95 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/mode-taiko@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dabb41f34f3c3c2e7b11804c129155d36149480e9ecf930eed70723b5959688 +size 21102 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/multi-skipped.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/multi-skipped.png new file mode 100644 index 00000000..02ddc2d4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/multi-skipped.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:274fb4e31ddbcbaf65ef91dcb08837b74142ec42026b0056ec2f6d7aca10d5af +size 2480 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/multi-skipped@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/multi-skipped@2x.png new file mode 100644 index 00000000..098904d8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/multi-skipped@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258bce19733db4bb5ec9d54e63078ee2c5003ae06ab561d7decc4700bbe90341 +size 3491 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/nightcore-clap.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/nightcore-finish.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/nightcore-hat.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/nightcore-kick.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitclap.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitclap.ogg new file mode 100644 index 00000000..7ea48397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484019aa9a7658a17d3f20604fad0b74619d44f012517fb4997f8e683d40fc01 +size 6355 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitfinish.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitfinish.ogg new file mode 100644 index 00000000..bdfacecd --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a23ac7661ed7a255878edbb7f69ffd9946386acd077c5a70fdf602eca2f08a +size 7362 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitnormal.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitnormal.ogg new file mode 100644 index 00000000..be24f799 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e71ffc3876bcd0eab8a158a41fe227b3686f6f148121fbb6c4d73539c0579b0 +size 7561 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitwhistle.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitwhistle.ogg new file mode 100644 index 00000000..ad704fd3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b363e74cdc94580f9112347071c25b07371ddaf3d8ad0108555125d6b036358d +size 6531 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-sliderslide.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/src/default-skin/normal-slidertick.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-slidertick.wav similarity index 100% rename from src/default-skin/normal-slidertick.wav rename to Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-slidertick.wav diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-sliderwhistle.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-back-click.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-back-click.wav new file mode 100644 index 00000000..e86ffda4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-back-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161d093f692794dfea6b1c01e53dea34c657f290739954519c9fca78fe20779b +size 178510 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-back.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-back.png new file mode 100644 index 00000000..4749520e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52097cf2cdacf80c0dac39a75436c1f44710cd6cd6a8012884fe7426ff569918 +size 32283 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-back@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-back@2x.png new file mode 100644 index 00000000..d666a82d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b4bcf07aabde8ac3342b76d1c667ae8db7d177aa03f6449a2e2432a93c50e5 +size 127798 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-continue-click.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-continue-click.wav new file mode 100644 index 00000000..4ab891f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-continue-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58777283660650f950bdd6ea2e28dff829743782099cff6a2237527e820e3dd5 +size 91918 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-continue.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-continue.png new file mode 100644 index 00000000..8dcc7453 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d4c74983e45d38fa2bb17d9ba520e2942a18b4209b9ec98696b24e16f932fd +size 33776 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-continue@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-continue@2x.png new file mode 100644 index 00000000..5863ae70 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85be692a874bbaa57bd24cecb10390041c34e0524c06314685532df751c798f7 +size 143235 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-hover.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-hover.wav new file mode 100644 index 00000000..39eba0bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b20ee3218ef95a0937f207663684bf05450810771d3d9893f284dae63521670 +size 5560 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-loop.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-loop.ogg new file mode 100644 index 00000000..111d6ba5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-loop.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77ff95407f0116cd8cd47bc807fdb9e635b5d03b4e9273b997e25ceb407cb17 +size 5148428 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-overlay.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-overlay.png new file mode 100644 index 00000000..1623256d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8dec909c0ca129bcc5417e63af64f80130fb405a0dc265707300b57d1dcd42 +size 1670115 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-overlay@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-overlay@2x.png new file mode 100644 index 00000000..9b205462 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9735d2d261aac8bacf57f568fff2baf3f33bdf9641463bad5f5de127fc1c6c14 +size 5851256 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-replay.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-replay.png new file mode 100644 index 00000000..c2c75697 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b957de92f0c75c2f85c98db248f6893595980a131f08eba2883727f29adead2 +size 18824 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-replay@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-replay@2x.png new file mode 100644 index 00000000..aa6f6003 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b40b9a5f5b4e60c790604f656bedfae3b703433805a686aa1603ff382038f3 +size 52955 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-retry-click.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-retry-click.wav new file mode 100644 index 00000000..4ab891f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-retry-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58777283660650f950bdd6ea2e28dff829743782099cff6a2237527e820e3dd5 +size 91918 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-retry.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-retry.png new file mode 100644 index 00000000..f54c2f5b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75795ab5b6b20cb56ced6bedece4393284bafbf9d67671b7d0a1a72a1715712 +size 33192 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-retry@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-retry@2x.png new file mode 100644 index 00000000..4ff1c7f6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87db427b69d70d6ad16c847843f5719fd2a240d0a403c3d51e67fc0600fcf26f +size 146365 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonclear0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonclear0.png new file mode 100644 index 00000000..19575853 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonclear0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a9755f93ec5ace7a9f95ab91ca3aa2b7b431b596fb79f97138b73d015ebb92 +size 15935 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonfail0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonfail0.png new file mode 100644 index 00000000..eb73ec8a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonfail0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d46435c9e57a95b8e696cc5ce5b30e483b6e395eb35aea1cf39ba0f4844f9fad +size 33548 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonidle0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonidle0.png new file mode 100644 index 00000000..4360b973 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonidle0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6bd3df48fcbd9068f8adad8c80157b9973a3fb11a59975be59ded8f60a47b7c +size 33388 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonkiai0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonkiai0.png new file mode 100644 index 00000000..4c1ac164 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/pippidonkiai0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c496165a750469274366c61669baa5d99d7db28b0428021f8a1f55b96c6e408 +size 16763 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-0.png new file mode 100644 index 00000000..457baa85 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a77e62d4da691a21676d08cfc6b69c62f8ba3c720fee234f1355678e44f1973 +size 125856 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-0@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-0@2x.png new file mode 100644 index 00000000..8d374283 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff13aeeb75052baaedd3fda636ea68fcdf31756cdae92b186a3649235f0976d8 +size 465206 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-1.png new file mode 100644 index 00000000..54a35488 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cad979ce751d52d08fdf508da5ac9c69ad36119f8081fc289c1d8f8c5b81883 +size 128253 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-1@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-1@2x.png new file mode 100644 index 00000000..55fdc219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0e53edda5691736a3da31c800b034fac22c57a331d7146327601618fe489a23 +size 478545 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-2.png new file mode 100644 index 00000000..db0da7ca --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87d0a19fdbdaf8a35872e4fc4667166928eb50e0e637b53a2d1d667a1ec7e43 +size 125594 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-2@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-2@2x.png new file mode 100644 index 00000000..549e93d9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4037165e53d64cf0a4c23b2dbbb38949d91f56b6509914f866a1f0043c8d78aa +size 471320 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-3.png new file mode 100644 index 00000000..cd260a70 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73c45dd4ca356c0232ecb2cd4dd76372da0de1bad81835a89af2fd915da1da8 +size 125599 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-3@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-3@2x.png new file mode 100644 index 00000000..08ff127f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685fe3e7612c8f6f0761d92ec289ff1787da4aa2943c24c9243b499ded156baf +size 471534 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-4.png new file mode 100644 index 00000000..f9557b50 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402b6fe338f16f9b68b374b9aab9063e7e37422bb980829764e79fff60c89c64 +size 128252 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-4@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-4@2x.png new file mode 100644 index 00000000..d5bf7e63 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12ea28b8f499b58d48ce4614971e2452096d85002feb58c9d151d0c6dbf1f33 +size 479422 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-5.png new file mode 100644 index 00000000..7fa5cc1d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8331e5ce15c0ca59ac25572b67a1cbd318d5c668797d893829b62fb244ea45 +size 128696 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-5@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-5@2x.png new file mode 100644 index 00000000..186d00cb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65797bc24a9fa647f29e998ba4e3f609746ce70eab277b9b361728f073a1a246 +size 484523 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-6.png new file mode 100644 index 00000000..ccc028d3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787a7986e8799076f61cbccfc1846a4e92f9b6a53575976fabd0db59d5048e61 +size 128974 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-6@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-6@2x.png new file mode 100644 index 00000000..9d55a400 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-skip-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b49e753997123780ca08c6391d78d922ffc00db0c7f4e78668b722ad748cab +size 484046 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-unranked.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-unranked.png new file mode 100644 index 00000000..480b116c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277ec7345895445acd2b682b5fb5a9e9edde12f7e1b45de7a00252e6b125b46c +size 5058 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-unranked@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-unranked@2x.png new file mode 100644 index 00000000..94b15acb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35144408edb240d8242baad08bf4dd3f452bafe64f57e325bbb993643eaea84 +size 8200 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A-small.png new file mode 100644 index 00000000..dc654780 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30a01be9f9eac9f4dec1b4d3011a112b6fa0e38fdddeebcc574971937611714 +size 2054 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A-small@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A-small@2x.png new file mode 100644 index 00000000..809dbaf9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a7da6fc3bb5da44805406d568c634b6261bb0307fc706d3b25438ce3302c9c +size 3228 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A.png new file mode 100644 index 00000000..1ec90975 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c144bd15b950df03efaad5ee0497fb6e23c0c7912b1ec4b00954e2a3bdff8c +size 61267 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A@2x.png new file mode 100644 index 00000000..60581f25 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4359907f0a588ed03550d3b0800804c5064e560ebd65cc2ad2e82859da801f73 +size 211944 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B-small.png new file mode 100644 index 00000000..36f31374 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3234df4941afbf3e3962ad10a78e48015154eea69e9188048a3ae565d2ae53c4 +size 2071 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B-small@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B-small@2x.png new file mode 100644 index 00000000..d85f272c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb2374e56222b7518b9d515961660ed3db169d29768a0226108acdb8cd0e90d +size 3578 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B.png new file mode 100644 index 00000000..45b52f4c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c45457ed2d2d0095e55b5ac183d2fe4e4405785c34c6dc639619c472daf1f00 +size 58028 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B@2x.png new file mode 100644 index 00000000..3e5d4638 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1dfffcbe39c387578384aba75e19446cd3f16221e056e6cef1906d3b77a1518 +size 201511 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C-small.png new file mode 100644 index 00000000..ee856dc6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08cb1bc82fd1f1e0fdcd0ed189ea5c7c2a9ef8953c345cc7904f25ba37a72d4 +size 1824 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C-small@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C-small@2x.png new file mode 100644 index 00000000..b37049c3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac5b32541cd62facdd62fe1aa091b93823e6ec5a44326a7f6f7896d098b814d +size 3314 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C.png new file mode 100644 index 00000000..12feea8c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ccaf922cb997ac535650b02e8dd6b47dba4a160d4840d87caa0b240a605c89 +size 57270 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C@2x.png new file mode 100644 index 00000000..f25fd7d9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea39afa880913756e3b13d7d89696329a6ddc150e6f0d077aada4b2c3571d95 +size 203178 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D-small.png new file mode 100644 index 00000000..cd3e9938 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c2603e4a36e1e33acd833938242f2ae7b3f20cd8ae8a91ddf74e812c7bfd7e +size 2287 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D-small@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D-small@2x.png new file mode 100644 index 00000000..876f6331 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212550b1f6e879e3d086c3a981c7b4b98e27c05a7d8878cb2cc226311f3a89ff +size 3877 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D.png new file mode 100644 index 00000000..4d3bc212 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59235057414e7c340112f7277640c6a35f9570f9fcba8ce539ee12877e147dd3 +size 53468 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D@2x.png new file mode 100644 index 00000000..a4f2fe4f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a116d6325c35d5800831978996ee0cdd397d7c3f6bfe824e302ac4d9371414bf +size 182311 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S-small.png new file mode 100644 index 00000000..c42aaaba --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4067921d060c3f8e12cda921c8ca2192140745c2eb5614ba1645da3e9472e5c +size 1914 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S-small@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S-small@2x.png new file mode 100644 index 00000000..50f3b739 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674a6956776c40febfa51d5356b6d22c56f132b539d1348d8ddc3121cfcd0da2 +size 3623 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S.png new file mode 100644 index 00000000..096266e1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a803622301e0561d7a8a929a19ccb15588d440c8b56d47faccb3bc24c2a077 +size 62705 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S@2x.png new file mode 100644 index 00000000..d73d5e14 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d6b0165019d07d61095cd65a6fecca17ccb4c7f2db41f94bc0dcdbeda9f3ff +size 214956 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH-small.png new file mode 100644 index 00000000..533d781d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc1adb2251de626533717b90b6ee7080479beb2fdeabff798ab522941296d2e +size 2218 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH-small@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH-small@2x.png new file mode 100644 index 00000000..43751c6d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0cd53e9bba24f4c09c3bc9b30c22499ab2f9d82636f5ca9ba6952426a7bab8 +size 4162 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH.png new file mode 100644 index 00000000..6729824c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84195976f751d1922e3ccb9e02800306fcfe2e35b252a63917cf606eb1688853 +size 64235 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH@2x.png new file mode 100644 index 00000000..7a89a895 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3992c51b6f82af0690672e9742108ea7dadb3f51df635dd80c72a3fcdce69ae +size 219030 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X-small.png new file mode 100644 index 00000000..19827597 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcb239151ed1dd05f401b75bbcafb47a108d3ec632f266d08a8e884599caa25 +size 2984 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X-small@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X-small@2x.png new file mode 100644 index 00000000..3d3ceb91 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5abab3cec316982186f82d24111d7bea0ee81ed561b093deac40f119bf9b20 +size 4846 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X.png new file mode 100644 index 00000000..02548e64 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9fc68eae943555fdbfc3e20eeb2a68ce6ea406418472249459f5ed91806c4c +size 56242 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X@2x.png new file mode 100644 index 00000000..d759e582 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ac74be4698819cb6c4b1daa16f42723b0d009b10c18cc2e26c1ea4f2658c1f +size 184076 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH-small.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH-small.png new file mode 100644 index 00000000..6fbf06e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f00725ced95637e9d2b754463960db37136683ca753156920de08c083724e4 +size 3444 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH-small@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH-small@2x.png new file mode 100644 index 00000000..19672c73 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e43bc3fbb8bf20b5b2883e7d43c6785538dade5681c42bd157dc40fd569eb5 +size 5523 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH.png new file mode 100644 index 00000000..6ecdf242 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc813db02a54e4464e61beac749ace3995137fb04975ba081712b093151201df +size 108767 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH@2x.png new file mode 100644 index 00000000..b4faf8ff --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07feeb51038893b8eabd5a246fe32d7853b60a4247199759881bb5b891d4cbd5 +size 327483 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-accuracy.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-graph.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-graph.png new file mode 100644 index 00000000..6816b03b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5bd72749af2225e35855bd0604d39f4cc84a89e0029240728e429aab2f8ef8c +size 639 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-maxcombo.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-maxcombo.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-panel.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-panel.png new file mode 100644 index 00000000..6341ea0d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e8c1cc7a2e0ce712a3e8104895f99b9bf735b344f5590914f1ef54d3e39b7c +size 2489760 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-panel@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-panel@2x.png new file mode 100644 index 00000000..d355de32 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ae07de36315ac7be2f2a6a004bf97365ebb54862b63c2be7e9d7d33aee543d +size 8624945 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-perfect.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-perfect.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-retry.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-retry.png new file mode 100644 index 00000000..fa75a1d2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188a9d980964cb4b164a32eac799838b0d4763af3c4f0e422dbf54158ec91026 +size 18207 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-retry@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-retry@2x.png new file mode 100644 index 00000000..5f49a63c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be78bee92b0420afc798e93c1f7fd1fbc05574647789d3efaba3eae53bd08c92 +size 52256 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-title.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-title.png new file mode 100644 index 00000000..f6b6be48 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5af2e60c3db61ff0edfa87b7151ce80ab6355124af24a4dad02817bf9fd6bc +size 89770 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-title@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-title@2x.png new file mode 100644 index 00000000..36b993ca --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ranking-title@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b4e4e3f9b6fe8b1bfd0cac1827cc134c775de67b38602f3e354041eca8d91f +size 429360 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ready.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ready.png new file mode 100644 index 00000000..81da3589 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fe05e736f688831e0169b31ab09819f9ed3d08c33355a4e218d087392405d3 +size 31146 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ready.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ready.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/ready@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ready@2x.png new file mode 100644 index 00000000..063ce283 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/ready@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8684fe2604c67ee6db4f73c414a80485af9c246d99f95a91babe48f6835b50ac +size 119909 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/reversearrow.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/reversearrow.png new file mode 100644 index 00000000..e6ea3310 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405cf5ae64ec82bdbbcd63e6806197ffff68376c33d91e7633e57a41233e03a3 +size 2454 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-0.png new file mode 100644 index 00000000..072e580e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f18a9faa7131816beb019dcb89d05a22ef96f01c1fe58f2206fdedb55ee96f +size 1264 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-0@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-0@2x.png new file mode 100644 index 00000000..36c0054d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14c90bb84b7d81a5c327bbb67390b94889321ad30ea24f195aee9194be6b382 +size 2697 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-1.png new file mode 100644 index 00000000..87e72417 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a23ecfb1b8c65981c95fb3c6d1540ee5981a0e5f5073ce0d88729b7a08beae4 +size 787 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-1@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-1@2x.png new file mode 100644 index 00000000..4cae69e8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba4a9c26e6dd1e15c775300000338d5949b36eeae6d5ec1fc998384f4e8a8a1 +size 1219 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-2.png new file mode 100644 index 00000000..f8911db0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8ce96e5b97a2f215021d3b119601fbeceb895d9d746903116d1506fa0013362 +size 1196 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-2@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-2@2x.png new file mode 100644 index 00000000..07d7888a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c86c3d6aff2f0ba734de32bc42035b1596922f4e9d4542edd715f9ef78c9f1 +size 2521 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-3.png new file mode 100644 index 00000000..cd9760e8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a408bfd1de509c30d95c60b70f2709b52588e98ee7ebf44c946578ac7e62029 +size 1140 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-3@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-3@2x.png new file mode 100644 index 00000000..1e1c2534 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02204ed60486c8228144c6621dc437438ee2970a76cf8ec50b39967a3970d85b +size 2479 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-4.png new file mode 100644 index 00000000..f7c4d637 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f94130c3312b30122646b6bddef6e1b34e89c13d9b45102d8afbda0043533b +size 1024 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-4@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-4@2x.png new file mode 100644 index 00000000..a71ad605 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5452464d4cc59e986d3ff8743e28352477c0254433716d6b549dfacea5a467b9 +size 1968 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-5.png new file mode 100644 index 00000000..8b6a6e58 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ef57c6c3ded33997c18d2b41374a67dbdc9682df2865b2281834e1b0263aa5 +size 1147 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-5@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-5@2x.png new file mode 100644 index 00000000..b79dda2d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae59699b55fc63621ed0f4b8a95fc2490d74da7c286cbf3d854f7ce88db97a77 +size 2368 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-6.png new file mode 100644 index 00000000..5511ddea --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3113327689f452a5e4349fab69bdd2259cfe8c5f05e6cd91c2251b3b40a073c +size 1213 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-6@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-6@2x.png new file mode 100644 index 00000000..b910d6ec --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e9da9cf10ffafa37ac0fcd9281fa9cb38f982dffcc1eb84ea7d8b499538ca7 +size 2642 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-7.png new file mode 100644 index 00000000..c6762939 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf00232e5d965d756acd8170574c5502327d9f88e319f7882893783b981e5e9 +size 910 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-7@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-7@2x.png new file mode 100644 index 00000000..a62b0294 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3f471b3edb3da60a080eb2ef6d52e44e526c419d3cc617b4f4cc9006a27554 +size 1390 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-8.png new file mode 100644 index 00000000..0b75f772 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b6b8dccdc34af1b8a3dfda02100c530bf0e1f5f52f62031ffeaf0122f2dd5f7 +size 1267 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-8@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-8@2x.png new file mode 100644 index 00000000..1359944a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a65f8d615a0e7b3440fdca8e049c66fdb87de4ed0502b94dda96ab8a24adac4 +size 2772 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-9.png new file mode 100644 index 00000000..7c422e7a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0519f130ef4128ca21b2a3083b52321f15761e1d6a09a216e59308d9bb5dc842 +size 1172 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-9@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-9@2x.png new file mode 100644 index 00000000..182acde0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a3b7145625cfcc58fab097d18fef6b9d208b0155a1664bf1f2798bbe6c1870 +size 2560 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-comma.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-comma.png new file mode 100644 index 00000000..32839bb1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c557fab08508da0701bc4d27ed32abacd923428e8915a53e0b7d5bbeeb458a +size 573 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-comma@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-comma@2x.png new file mode 100644 index 00000000..cf8284ef --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdd7b4cee415a888e8433d4677ec788a8745c2959cb3c1e07f935b241d0259a +size 1033 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-dot.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-dot.png new file mode 100644 index 00000000..32839bb1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c557fab08508da0701bc4d27ed32abacd923428e8915a53e0b7d5bbeeb458a +size 573 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-dot@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-dot@2x.png new file mode 100644 index 00000000..cf8284ef --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdd7b4cee415a888e8433d4677ec788a8745c2959cb3c1e07f935b241d0259a +size 1033 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-percent.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-percent.png new file mode 100644 index 00000000..a0a41f18 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bee93698a858fef1b11b114415a566a7e61a4238fc9374b9d721f259a0460d +size 2370 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-x.png new file mode 100644 index 00000000..7aa5a642 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5569904e81f32de059409c72b256180d2a2699c19bd87c7ac0b5641cccd6562f +size 1051 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-x@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-x@2x.png new file mode 100644 index 00000000..ba358341 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40b16434fc1c4664f6faf6007873bf055f5e49a918286c6757f6483baa4c861 +size 2873 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-bg.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-bg.png new file mode 100644 index 00000000..733e6b81 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:845f30ccfc15b43dd401e244669c06e8ec7f193b6c31042a5cec5aaa994f1073 +size 4388 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-bg@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-bg@2x.png new file mode 100644 index 00000000..552610e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a549adf3ead48c9d5d2e5a1c1c2e57414d7545fb4a4053982185b2a845879f +size 16702 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-colour-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-colour-0.png new file mode 100644 index 00000000..e65a50a3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-colour-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d006b06f9f5c2711aefb3ed241906d2e0793b5a6f3b879b4943aeaa3d6c87f84 +size 12524 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-colour-0@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-colour-0@2x.png new file mode 100644 index 00000000..6982fcec --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scorebar-colour-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ec4270ef6afd7d0d2dadfe701e45a0063e9fb9da6e3c2ea5829075b71928e2 +size 33843 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-0.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-0.png new file mode 100644 index 00000000..18775ea6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849fbe1e91257acbb6e8ed703fd333428bd171e360386e7c9d541e560cc05ce7 +size 753 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-0@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-0@2x.png new file mode 100644 index 00000000..4c498ce6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff80112d5a18f5aeb86b5bb43704cb2b9cd453f7411d418caa18cc0af7391153 +size 559 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-1.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-1.png new file mode 100644 index 00000000..7f922c50 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7669de132a70a6f78c9e51c606da55e3948c5a99bc23b175ce34b38c7ce8cca3 +size 505 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-1@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-1@2x.png new file mode 100644 index 00000000..b5bce844 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75137ef77625c2ec2ffa240f9509cb6e1ce6f2f6f0adf5e0a4552a1020331baf +size 218 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-2.png new file mode 100644 index 00000000..c19725be --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192ac761a355162355e271e363fa0c73f27217a96d7d342b38f1e4a8ea34c7ae +size 771 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-2@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-2@2x.png new file mode 100644 index 00000000..09996be7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a483b53475ab50e9407589686e4a4e3d9e1a2fb7844266ab74a1035f9e061e +size 565 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-3.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-3.png new file mode 100644 index 00000000..424a89f1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0308fa7b0f642f5488c7566c57d3721de3b5af8be00c28a2259c35f2752a06c1 +size 760 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-3@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-3@2x.png new file mode 100644 index 00000000..96b0c1b8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4a4a2d90be6fed6ab4388a9d96bc333bcd466d1b82cd12d26a1b6ecc6e6be6 +size 643 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-4.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-4.png new file mode 100644 index 00000000..16462796 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a5465f3f38b916234f85142b2b5c05bf547aafa9481c7ba87a7bc0c37bccb8 +size 684 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-4@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-4@2x.png new file mode 100644 index 00000000..51f38396 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9ca61d1435251857f467ae89952a4ddfabba7d34636630e0fb4895b22b6908 +size 444 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-5.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-5.png new file mode 100644 index 00000000..f757bcba --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a12d0acf5475154f1607b5ee840c24fbb992ed9d59873c2b9e7fd4b437fdc5f +size 756 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-5@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-5@2x.png new file mode 100644 index 00000000..26f51de7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9505ee0e15104b814072ac96f03d89824601df73b51f66cf47583b538d0a43 +size 595 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-6.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-6.png new file mode 100644 index 00000000..11497b11 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c7d784811bc1333edd8f3f5b881f4c479105ce20030594aecc1b7ce2133bc3c +size 764 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-6@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-6@2x.png new file mode 100644 index 00000000..819df54d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc378d11f37dbe1cb3e44b8f639d483ff12853d84f3683c4421e224b92701945 +size 688 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-7.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-7.png new file mode 100644 index 00000000..dc56cd88 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113619dba0455b1142501fa52a40b6dc07fb96c56191df7b8a915099f663bde9 +size 631 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-7@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-7@2x.png new file mode 100644 index 00000000..a3e89fd1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39d46c9492f4673b47c0bef5698e62ac00e8ad026bc4ddf87e6758b42187d03 +size 429 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-8.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-8.png new file mode 100644 index 00000000..2852a569 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185b52692d52d941c5c51b0403a844f21f3d7b8d5f003d8c39df46984e5ffebb +size 786 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-8@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-8@2x.png new file mode 100644 index 00000000..89604b78 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec72ffad5f12523eae0442415cd751d244358be09df14ffccd139aaf70d3f3b7 +size 736 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-9.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-9.png new file mode 100644 index 00000000..186bae0a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06d1638d9149dcab745a6d3bc372bec47e5d93ef23d97a3dee3c0e0c23b46fe +size 789 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-9@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-9@2x.png new file mode 100644 index 00000000..97a0c8b3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2eaf6b9a957812d3c3130f69129e3c8d6822bfb5041a25a1eba47d2c2319619 +size 672 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-comma.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-comma.png new file mode 100644 index 00000000..2238d6de --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b025063f080db606327f037f509a883bc83bbcf99bfd3c52412cf68741d8ae +size 405 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-comma@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-comma@2x.png new file mode 100644 index 00000000..630948cb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba5568f862822fba357fd5eca5f829cff1a30d5a6b64334d19979ddbb26a317 +size 171 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-dot.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-dot.png new file mode 100644 index 00000000..b85fe67a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70fb45cd83e6b2a2ced24fc0dbdc763ceffd858edb8bb18f1995512a7a6850cc +size 381 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-dot@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-dot@2x.png new file mode 100644 index 00000000..31ccd816 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19351a692f2821b86c87c9be22452668db9812bb8cc25b150278a4796b7c7955 +size 127 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-percent.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-percent.png new file mode 100644 index 00000000..6803a0d5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132a34f686ca317ce773e11a2a11cb53e679acc8b5b08d7e25b520b4c2c8a6ed +size 816 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-percent@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-percent@2x.png new file mode 100644 index 00000000..a2b65253 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d9d94b6037bbd6f4612cb6e4c532f6d3ba49b716689bd2d8a23b1535c5ec85 +size 788 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-x.png new file mode 100644 index 00000000..b511edb7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299b848490bd6f9b15a4eb7ef87a87f58e81dec8e03cfeacc88dad5fb7a862ca +size 564 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-x@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-x@2x.png new file mode 100644 index 00000000..053ed9bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/scoreentry-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:880fa642c1baf37d6b2117e596b8b9c6833b0989a70df21c1adc42227653adf1 +size 419 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-fail.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-fail.png new file mode 100644 index 00000000..b03203e4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e9df83831ebf0eccfde5e2258ba307c20eb07e28e241cdebf448cdcb1530a2 +size 116501 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-fail@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-fail@2x.png new file mode 100644 index 00000000..5abfc27c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0356c3ee44417c6ca3b53e117aa4ec1af8492cb08a84d3c88c8dd8ad4eb4b512 +size 415830 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-pass.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-pass.png new file mode 100644 index 00000000..e23c91cd --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fcb10ea69d9472d701f8e7bf1f530595dcbeddada8da5f5d3739e2a84a3f086 +size 112561 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-pass@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-pass@2x.png new file mode 100644 index 00000000..ce3311da --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a5030b15fe3a5f9d9419f9d3b8a37de60165bcddb1b68c6c6b0277facd15bf +size 408208 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sectionfail.mp3 b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sectionfail.mp3 new file mode 100644 index 00000000..d20ad8d9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c42ae0ef4f2b75b98eaa8628c293ec8cb60a4374caee1498d1e71969682d022 +size 13392 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sectionpass.mp3 b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sectionpass.mp3 new file mode 100644 index 00000000..72deb39f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2025977f8a43419a240fbc3b0db1c504aafcfd79c902556c5a15ab6508c69f +size 8795 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/seeya.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/seeya.wav new file mode 100644 index 00000000..f7d88a0c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c55ea8fb51ddcef76e08650f66f26822af93d4390ad265052387e7f4088283 +size 165382 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/select-difficulty.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/select-difficulty.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/select-expand.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/select-expand.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/select-expand.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-autoplay.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-autoplay.png new file mode 100644 index 00000000..a3e85ad6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a08edbcec365e87e66e3059ec405a1dd8f5f2a61671020ffff7d0740f49b9e71 +size 14267 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-autoplay@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..1445f71c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843411dc3ba29c85ccfbf19ae5744500bc751ef9683733cab4b2ec9d7946012b +size 48130 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-cinema.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-cinema.png new file mode 100644 index 00000000..054f7030 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:091d4be8af90a6bed990265db1ec909da28b20025162512670656b4956b6d24d +size 13714 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-cinema@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-cinema@2x.png new file mode 100644 index 00000000..b3c04458 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d448ed7ee29f1068c5328058b5df8fefc69da7ea436c47bf044115ad3692ed25 +size 47559 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-doubletime.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-doubletime.png new file mode 100644 index 00000000..ba3fc22d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e71da3dbd7c51d627f1536baa59eae7fce2f99cfda5ac3a9d5436475e744ce9 +size 14211 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-doubletime@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..bf0b07d2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202e7267af8f71e21f6df27ae8979a1992d8489d7210159cc9b276847081b849 +size 48584 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-easy.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-easy.png new file mode 100644 index 00000000..e18417cf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b926be0512739a4651f3546f73f4a532bafde126a17d286b69dc1f25ea9e60 +size 13815 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-easy@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-easy@2x.png new file mode 100644 index 00000000..5b1899d0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b3f3a10ac137f9f9a0587061962b1433f38036c5c936cab00959bc89005a26 +size 45434 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-flashlight.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-flashlight.png new file mode 100644 index 00000000..c1ee5923 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266a0cdf746f65379b4b6519c936af899035c1af798ac61f741060fc988c21a7 +size 13560 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-flashlight@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..341e87f1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae9010277a97179852bbf31d120f19d601998bd252d6bfd7a7a38d7d834f490 +size 43678 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-halftime.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-halftime.png new file mode 100644 index 00000000..c6566503 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:297a3d7747fc102bdc03022f42510ef1b697eeb6668414eb11e387c31df1f1dd +size 13963 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-halftime@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-halftime@2x.png new file mode 100644 index 00000000..62740a32 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9fc4709429384b69f37851d83a4e4c8ca491b71efe0210429c6f3bf63516d5 +size 48501 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hardrock.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hardrock.png new file mode 100644 index 00000000..1a10629b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0cb624799ea5d756884552c1a86cb0992b663a98598527e3a422c9fd515956 +size 14504 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hardrock@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..c28334e0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d430124fa1368e63d2d5cba1a61a7006e329fb9c80b0b71752d80c0396374cf +size 48763 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hidden.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hidden.png new file mode 100644 index 00000000..5432b67a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c971a7e491e05c29aab60bf9bf9b24e77f3d6d2031e75f8b9ca2cf1507d094 +size 14510 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hidden@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hidden@2x.png new file mode 100644 index 00000000..05ebf6cb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9209bb678eb1ee40041474b3d688c0fce1690cd227d5e75ce79e3e3eb6d2975d +size 48291 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nightcore.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nightcore.png new file mode 100644 index 00000000..4e44bd33 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1746e9ba17a083b2ee07ca5fbe325c322fa209d949a8b8907e408c413e3b4336 +size 14664 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nightcore@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..82bfdbd4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:160e667e786b86c43ab4e9358a5c07200ee84b42987097f20208bc148c2e2591 +size 49261 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nofail.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nofail.png new file mode 100644 index 00000000..3a9263e0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c50f3506135cb5d89690c687f6f8a221a6b670440f7efbf96e5b031e5716093 +size 13809 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nofail@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nofail@2x.png new file mode 100644 index 00000000..9e1cec09 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a8cc0ebe81354bb2c87764aadad04bcb622a7e0ff6cf0d7e7f859737f1ae68 +size 47743 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-perfect.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-perfect.png new file mode 100644 index 00000000..ccac246c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d3277c91a1823ffe6af130786ba00408102c2ba79a54134e04e6ac62563e2b +size 14186 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-perfect@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-perfect@2x.png new file mode 100644 index 00000000..d6aebb06 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8081163f29034e16f55fb292d8535752b56e98a567f3aed9d8008c1c67700a +size 47538 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax.png new file mode 100644 index 00000000..dfa6b177 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b01ab755f2b71515e391c76e0fb61bbc3a2015184547950380e398a7e215fcb +size 14573 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax2.png new file mode 100644 index 00000000..07586518 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b25b11ef69510f87d1fde5ef6b9ee8c83689c527568733e57d5c40ae4f64cf1 +size 13337 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax2@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax2@2x.png new file mode 100644 index 00000000..be0f1b2d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d491f352e8cc3f6de394499d85872321a31a239fc745eb72a469cb4aecd371 +size 43680 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax@2x.png new file mode 100644 index 00000000..f10e310e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a80864a71d517a796e9517a3d9bbfe586b00956ad8432e298c642509ba980ff +size 48801 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-scorev2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-scorev2.png new file mode 100644 index 00000000..66978403 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d825cb4f195cee68924177f19c15cb3796976f07462a4f3c6599c1ffca8d6f4 +size 14299 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-scorev2@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..0f42327f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e61c39237dd6e3fc522383ff320379990b0c29291af84203834981d9752743 +size 49471 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-spunout.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-spunout.png new file mode 100644 index 00000000..acf89a94 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbdf6ebbbdf68c5f6c84e7052f3dd86d539cc7929930d70a5a7411ef0fcb15fa +size 13415 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-spunout@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-spunout@2x.png new file mode 100644 index 00000000..db1d3d52 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a73b1822b86e94d2572f85deaf09a546f7ba8d25ccb5a60306588c1d713e2719 +size 42125 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-suddendeath.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-suddendeath.png new file mode 100644 index 00000000..23957c37 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa277115ea8a29d36812dae9013cb98b1fe42c037e0e7cb6747eb3daecc4061b +size 14576 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-suddendeath@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..f8803e6d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb497cb9ca56c8189fa4796afc9066df44b771b484eb46c781203d67d34c46d1 +size 50380 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-target.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-target.png new file mode 100644 index 00000000..1c8d4492 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10f902fb3b9f7966885cb94ba3b01d01c6d4633e5b25b8eb11587018d158627 +size 13490 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-target@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-target@2x.png new file mode 100644 index 00000000..fa1789e0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a290a02deddd27db90ef3ac7e70e4965ee7cc8ba2c0fee96bc8df8fdd4cfc673 +size 45718 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over.png new file mode 100644 index 00000000..8eea5409 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083e84809256967aeca308acf185522f2e1c21588a25f54c839e0797a1208679 +size 3181 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over2.png new file mode 100644 index 00000000..6981e9d1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a9b2f573ed898397f1a3e5ca3151b54b22776e1f97bd77d82a860fb38b81b7 +size 3299 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over@2x.png new file mode 100644 index 00000000..e893244f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9b775fc7a16ecd471ce90041b731a2af06f8246ccc2dc827a9db086d291eb51 +size 6131 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over@2x2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over@2x2.png new file mode 100644 index 00000000..06334ee0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode-over@2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ac2fee22ec6f1da6992dd3c7d4b5831c20e820dadfbe0c07909e7d72423137 +size 7815 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode.png new file mode 100644 index 00000000..e0def2d1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13494f786eb675dcf147b1617d3c3a51f35354cda065135ac6d849fdef5bca28 +size 210911 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode@2x.png new file mode 100644 index 00000000..0e70a6e5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f6491573b060d4815faccd687e14cc0ac8f9b6d9f3bb5fb0b614f8a3f484ed8 +size 657209 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods-over.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods-over.png new file mode 100644 index 00000000..0e344500 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92346ed198cc82bf7a02dd666ea9eab5adcb2bf22617c11622f8844552da5cfb +size 4366 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods-over@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods-over@2x.png new file mode 100644 index 00000000..4e6fe572 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61626d4efd65fb80f318c70c4ee32fbcdc009bb57c03d16f0bb0daaaab85ef0 +size 9086 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods.png new file mode 100644 index 00000000..28d189e3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91a9f39c88f63bc6853b986e0ce60aa0ece0b8f6bbedc8b93a31a2e9e978ba5 +size 2886 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods@2x.png new file mode 100644 index 00000000..9d133d31 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a0b06b17c139f4048af05a94510c44c11a2f94d6ec45706e4df74902df96ef +size 5270 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options-over.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options-over.png new file mode 100644 index 00000000..d7f9f091 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d209a329a8f798cd1983aaf0003172df083f82863535aab42b3d0bac917d477 +size 5084 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options-over@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options-over@2x.png new file mode 100644 index 00000000..27a543f6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02cb813e6ec8b02f21d07e6c3d9c6f5cedbd29906e7ee150292a95fa7fe6f53e +size 9992 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options.png new file mode 100644 index 00000000..273d9bb1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9819b62f782d25b9a81505e81e51c848f1be1c84cb17c1024bb26f9eb27a7d81 +size 6731 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options@2x.png new file mode 100644 index 00000000..7b0a1c05 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a58d24c536f82361b1812b5d5a4d1c3095cc43aa63d93ab7eeb19c1fdcf40e1 +size 16868 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random-over.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random-over.png new file mode 100644 index 00000000..27f83957 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7bb803148a5ad12463480e8baff16a2da3fc9028325be314d01b755d6f98c38 +size 4289 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random-over@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random-over@2x.png new file mode 100644 index 00000000..7044943c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e175457933697fdd2d2cf2ece67af8eaa88e33f4f589c75074b7e1de138d295 +size 8295 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random.png new file mode 100644 index 00000000..ae136e67 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:206911bc7702b7e9c800b4777582bc5057b3ed36bda8b65b5c1601c1b181be2f +size 4896 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random@2x.png new file mode 100644 index 00000000..a7cf7814 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafa2f37e63abf9e02c473d8223929710796f1c6f77225c853e2061cf32404d2 +size 11563 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-tab2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-tab2.png new file mode 100644 index 00000000..9d933994 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-tab2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3195006768b22c7b568170a9f2e2462c5ce29e2700bd7329bfd8a01edc6620fd +size 864 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-tab2@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-tab2@2x.png new file mode 100644 index 00000000..c9e2a532 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/selection-tab2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cc80734e92f5a638394ba4bc18e3bd3fe5a8a8f67ef7d189cfa2bced0f585d +size 870 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/skin.ini b/Skins/- Seoul v11 Asta Edit/- Seoul v11/skin.ini new file mode 100644 index 00000000..5a24b449 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/skin.ini @@ -0,0 +1,45 @@ +[General] +Name: - Seoul v11 +Author: Seouless +Version: latest + +// stuff // +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 1 +SliderStyle: 2 +SliderBallFlip: 0 +AllowSliderBallTint: 0 + +HitCircleOverlayAboveNumer: 0 +SpinnerFadePlayfield: 1 + +[Colours] +Combo1: 228, 207, 160 +Combo2: 185, 155, 246 +Combo3: 135, 220, 170 +Combo4: 255, 172, 229 + +//Older colors from stream +//Combo1: 75, 168, 234 +//Combo2: 185, 155, 246 +//Combo3: 85, 131, 216 +//Combo4: 255, 172, 229 + +MenuGlow: 250, 140, 166 +SliderBorder: 90, 105, 132 +SliderTrackOverride: 1, 5, 15 + +SpinnerApproachCircle: 255,255,255 + +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 178,178,178 +InputOverlayText: 255,255,255 + +[Fonts] +HitCircleOverlap: 19 +ScorePrefix: score +ComboPrefix: combo +ScoreOverlap: 9 +ComboOverlap: 5 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderb.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderb.png new file mode 100644 index 00000000..ad342ef8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d5d3f4ecd4d3b86b3461bf05d4764ea937734bc8d62d10da6e8eecaa58efbc3 +size 21501 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderb@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderb@2x.png new file mode 100644 index 00000000..09235383 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a8c839c5d499d0121ceff70e917cdf0efce063404daa0c02ce96ea7a043172 +size 63357 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderendcircle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderfollowcircle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderfollowcircle.png new file mode 100644 index 00000000..7c276ead --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc854db067e261686b0631bb5fbece2f8395fe7696706bb98bd95175165c271 +size 10961 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderfollowcircle@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderfollowcircle@2x.png new file mode 100644 index 00000000..66394c7e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:625dd62db12dd135c62d29d65b3f6a88f17221f76335bf7f59f942d2a510701e +size 26996 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderpoint10.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderpoint10.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderpoint30.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderpoint30.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderscorepoint.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderscorepoint.png new file mode 100644 index 00000000..7d411ae4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c67674fea5fbc0a588a31dd7e911e1c2b488081712087f9428bee7884ebb058 +size 3462 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircle.png new file mode 100644 index 00000000..e45c102d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17e6b998df6c384056eb3654eb161a74c26762cb6d31c15ab8a8b1e816fee079 +size 6628 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircle@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircle@2x.png new file mode 100644 index 00000000..67858b3d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5a6f0ce500a6b0170e83980ba014182fe5df8b3e95117feeb6ac9559c21f74 +size 18433 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircleoverlay.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircleoverlay.png new file mode 100644 index 00000000..525780a5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40800afe519b29e6204e18d215790aaf4d9fea0b2336f3163a8650a611f717e +size 15295 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircleoverlay@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircleoverlay@2x.png new file mode 100644 index 00000000..5f424a31 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/sliderstartcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4385dccfe3c76280a2566294e43a6f7f19f2de11e9ba6ac2dbca9df76b3ba790 +size 30625 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitclap.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitclap.wav new file mode 100644 index 00000000..0419d2c7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1ed9f6afefa7a8de9930f84b6d50dbf04826f7394eb1ba4a14cf4580d6d3a9 +size 42450 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitclap2.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitclap2.wav new file mode 100644 index 00000000..3d8aaa60 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c6bc82e55b02266241dcc1d2095e33205c0e899a72bf22e5f3c00c7d05797b +size 42468 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitfinish.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitfinish.ogg new file mode 100644 index 00000000..4c524c6d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c03c169e03677550db361f9f026239ac35f95f5c5f26431f55b77b8bfcea309 +size 7320 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitfinish.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitfinish.wav new file mode 100644 index 00000000..138c614d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ddd85be838217c26525d61be66bb41df700a5a14dcab000a59c4b47b262efa +size 145508 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitnormal.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitnormal.ogg new file mode 100644 index 00000000..fde45a49 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0689d74e41495e4beec3d09879c3b8327d83205cc54bb662a1c73253834adbc +size 7320 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitnormal.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitnormal.wav new file mode 100644 index 00000000..5895b4af --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6b68c0cd5dd76481f02b14535f2aedfdbdec92d6bf665aaf4649b0bfef4624 +size 25580 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitnormalh.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitsoft.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitwhistle.ogg b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitwhistle.ogg new file mode 100644 index 00000000..f6ae4062 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bdf76a73d6624ce2746cabe10b3299d4381b829f46d591310d7d6aa20aeae25 +size 7272 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitwhistle.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-sliderslide.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-slidertick.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/src/default-skin/drum-sliderwhistle.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-sliderwhistle.wav similarity index 100% rename from src/default-skin/drum-sliderwhistle.wav rename to Skins/- Seoul v11 Asta Edit/- Seoul v11/soft-sliderwhistle.wav diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/softl-hitfinish.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/softl-hitwhistle.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/softl-hitwhistle.wav new file mode 100644 index 00000000..b2ead5b1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/softl-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0bf4803858de71662a0d497d789a4d24d5c3cee7d0976377abf47156578018 +size 20428 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-approachcircle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-approachcircle.png new file mode 100644 index 00000000..aaa29575 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ff67b939b178bc7ee6eb5c1132f5ed6c9ae737db748900bdfb84b50cdcea72 +size 280 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-approachcircle@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-approachcircle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-background.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-background.png new file mode 100644 index 00000000..aa3a8eca --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d38268c42f4a16d7ae8cb978d293d309ff3e01cdb15d8aacde48cc344db6ef +size 100153 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-background@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-background@2x.png new file mode 100644 index 00000000..4b017302 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff496a2a55c7242679d2ef34336a473534cb7f98156d98b00bc223e9565a07b6 +size 362056 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-bottom.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-bottom.png new file mode 100644 index 00000000..60a73b7b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6962f12ac3b9f1a0ff453011b973984d3804ba95a5f206eb578805ddaf8d880 +size 3496 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-circle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-circle.png new file mode 100644 index 00000000..e9998ce4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610c1eb11807a6fb1f3299f295a0507bc38421e521c87e88cb83e29b1db5a116 +size 24152 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-circle@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-circle@2x.png new file mode 100644 index 00000000..c38a6554 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f433ff3fc30bf91e7f63ef11805b92bce1532d11ff7c2c2dd1bddfefbb5cd1 +size 52211 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-clear.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-clear.png new file mode 100644 index 00000000..9fef69fa --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37264f10f213e2ae4424831d0ee86ed81f18b7d6577e640b5116164e5268c8d6 +size 7489 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-clear@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-clear@2x.png new file mode 100644 index 00000000..75e2aad5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d15e482c6302f6f343d5e5f142205120f5aca96b5f4660e35407370da02a33c +size 13246 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-glow.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-glow.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-metre.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-metre.png new file mode 100644 index 00000000..6d9ed638 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebcf5fa1c6a8e2fb1886b4ae4dac414d8813333efdc50c378e512543d56ed5cb +size 233075 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-metre@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-metre@2x.png new file mode 100644 index 00000000..fbe6730f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7387c89d0d2fbc7a3388e9d27c829d80a7a15c09588d712b5570c5c4e49868d0 +size 750849 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-middle.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-middle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-osu.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-osu.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-osu.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-osu.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-rpm.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-rpm.png new file mode 100644 index 00000000..4630477d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b12cfd7945d04d934802522ff454d768905451b7a702700775811977d7e67e71 +size 4932 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-spin.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-spin.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-top.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-top.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinnerbonus.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinnerbonus.wav new file mode 100644 index 00000000..86c5dc8d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1f21e07c487f611b20dac1593cfaca26143f37a7bc9dabb8f0adb3d69d3195 +size 112158 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinnerspin.mp3 b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinnerspin.mp3 new file mode 100644 index 00000000..fdaf9a24 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinnerspin.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678990e0480ea95ff81eebe0e89ed4d1ed6171c275021f26059fcfc13c0dfe58 +size 13672 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinnerspin.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/spinnerspin.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/star.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/star.png new file mode 100644 index 00000000..2f3a830e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c883c8a8d76e9a6e6e947194bd2bf36af71cc832db649dce68320bfeccacafa2 +size 1987 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/star2.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/star2.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/volume-bg-effect.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/volume-bg-effect.png new file mode 100644 index 00000000..ccde3628 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/volume-bg-effect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bbb029d51e120c7f912284ca6d77a53f5727baf13fab56060ae610b64eb7dc +size 6130 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/volume-bg.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/volume-bg.png new file mode 100644 index 00000000..2fb265a2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/volume-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e42a9691bf9e687227eb7ca43c1200b7059a4630736e832187a2e1b221842f7 +size 5280 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/welcome.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/welcome.wav new file mode 100644 index 00000000..bc989aaf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c1f19400ea599071163501d4417980d067ca75cf72c3306f45da428918196d9 +size 284284 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/welcome_text.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/welcome_text.png new file mode 100644 index 00000000..a53a365b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/welcome_text.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210838fbd267dcc95fa903a18c39f7fbbf785e4c9dca9ae8b59a77295bfad5ea +size 20088 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/welcome_text@2x.png b/Skins/- Seoul v11 Asta Edit/- Seoul v11/welcome_text@2x.png new file mode 100644 index 00000000..9f851c7f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/welcome_text@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc17dc1be6cee0618a6d488af6c339379aace460d391260c2d1476bd4c3847d +size 48939 diff --git a/Skins/- Seoul v11 Asta Edit/- Seoul v11/whoosh.wav b/Skins/- Seoul v11 Asta Edit/- Seoul v11/whoosh.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/- Seoul v11/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/READ ME IF YOU'RE HAVING ISSUES.txt b/Skins/- Seoul v11 Asta Edit/READ ME IF YOU'RE HAVING ISSUES.txt new file mode 100644 index 00000000..df468e79 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/READ ME IF YOU'RE HAVING ISSUES.txt @@ -0,0 +1,3 @@ +Drag the files into your skin folder, either rename or replace the old ones. Make sure you drag the actual files, not just the folder. + +If you're having issues with the cursors delete/rename all of the old files in your skin folder, including @2x versions. \ No newline at end of file diff --git a/Skins/- Seoul v11 Asta Edit/applause.ogg b/Skins/- Seoul v11 Asta Edit/applause.ogg new file mode 100644 index 00000000..e2b5ee46 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e138aa31c52a6806347976f9f57877c47838a31161fab281cfb7914ede3e26 +size 2257923 diff --git a/Skins/- Seoul v11 Asta Edit/approachcircle.png b/Skins/- Seoul v11 Asta Edit/approachcircle.png new file mode 100644 index 00000000..6a249201 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd820259aff785d5d58a3a22ce9408f46ee6a999494c5a3b489d79036db4df43 +size 13406 diff --git a/Skins/- Seoul v11 Asta Edit/approachcircle@2x.png b/Skins/- Seoul v11 Asta Edit/approachcircle@2x.png new file mode 100644 index 00000000..049c3859 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5aa0281536067ab0453dbadbab1069a744f1950d23ffc095d15fc520ec9f49 +size 20379 diff --git a/Skins/- Seoul v11 Asta Edit/arrow-generic.png b/Skins/- Seoul v11 Asta Edit/arrow-generic.png new file mode 100644 index 00000000..a3dc6c5a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/arrow-generic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec7dfb54a06ec6f61cc7dc0ecc50d21b80d5fd6963b564f30d33a5b17616611 +size 5267 diff --git a/Skins/- Seoul v11 Asta Edit/arrow-generic@2x.png b/Skins/- Seoul v11 Asta Edit/arrow-generic@2x.png new file mode 100644 index 00000000..a3836479 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/arrow-generic@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5a4bdd8b2261d2183fc20f789606544524fdd47941bfce5c9b8349d17fee34 +size 8355 diff --git a/Skins/- Seoul v11 Asta Edit/arrow-pause.png b/Skins/- Seoul v11 Asta Edit/arrow-pause.png new file mode 100644 index 00000000..a60919df --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/arrow-pause.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8292505f803bcf6dd5b3266961c63221c8fd7db536a18b59f34cf6eea0e2fd +size 5267 diff --git a/Skins/- Seoul v11 Asta Edit/arrow-pause@2x.png b/Skins/- Seoul v11 Asta Edit/arrow-pause@2x.png new file mode 100644 index 00000000..a3836479 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/arrow-pause@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5a4bdd8b2261d2183fc20f789606544524fdd47941bfce5c9b8349d17fee34 +size 8355 diff --git a/Skins/- Seoul v11 Asta Edit/arrow-warning.png b/Skins/- Seoul v11 Asta Edit/arrow-warning.png new file mode 100644 index 00000000..13590972 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/arrow-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d781ace999b98ae8f3edbd293c12a6e214657ce9944f9e1f24e2ec941463719c +size 2827 diff --git a/Skins/- Seoul v11 Asta Edit/arrow-warning@2x.png b/Skins/- Seoul v11 Asta Edit/arrow-warning@2x.png new file mode 100644 index 00000000..7fe406e0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/arrow-warning@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59dbf9c67e8723d5b3d65369ad0581d4ba1141f9e77ff38bdc2ff812adcef80e +size 4918 diff --git a/Skins/- Seoul v11 Asta Edit/button-left.png b/Skins/- Seoul v11 Asta Edit/button-left.png new file mode 100644 index 00000000..ff27a2f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3012e300bdd2cf02ab6f9d8de74e76416e8c7557d6575c09bed0a9868449c433 +size 2979 diff --git a/Skins/- Seoul v11 Asta Edit/button-left@2x.png b/Skins/- Seoul v11 Asta Edit/button-left@2x.png new file mode 100644 index 00000000..ba0b1f39 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/button-left@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d0b0c5757db02b2ebaf7e68a466552cc55750193a39caf5360b18c010dd475 +size 7443 diff --git a/Skins/- Seoul v11 Asta Edit/button-middle.png b/Skins/- Seoul v11 Asta Edit/button-middle.png new file mode 100644 index 00000000..697f18f1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3dc3d52d2b9d0244baffe296ca61e012f97a24f30a4ad277048e46a4ca7417d +size 12161 diff --git a/Skins/- Seoul v11 Asta Edit/button-middle@2x.png b/Skins/- Seoul v11 Asta Edit/button-middle@2x.png new file mode 100644 index 00000000..027abafe --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/button-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f6da98834a017967b073df82816dbd67427311bcad4e11ee3ba12f5eb55fc3 +size 68628 diff --git a/Skins/- Seoul v11 Asta Edit/button-right.png b/Skins/- Seoul v11 Asta Edit/button-right.png new file mode 100644 index 00000000..d9314816 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e9d119b7c41923f6cb920da55c645a8ee5233fa0bf8bffe392c59ec1147af3 +size 2920 diff --git a/Skins/- Seoul v11 Asta Edit/button-right@2x.png b/Skins/- Seoul v11 Asta Edit/button-right@2x.png new file mode 100644 index 00000000..5828b043 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/button-right@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2fe4c6033cd200117e4eff952a92721f6f16c32bd01ada08ccbfc4cfd0e89d +size 7323 diff --git a/Skins/- Seoul v11 Asta Edit/click-short-confirm.wav b/Skins/- Seoul v11 Asta Edit/click-short-confirm.wav new file mode 100644 index 00000000..4ab891f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/click-short-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58777283660650f950bdd6ea2e28dff829743782099cff6a2237527e820e3dd5 +size 91918 diff --git a/Skins/- Seoul v11 Asta Edit/click-short.wav b/Skins/- Seoul v11 Asta Edit/click-short.wav new file mode 100644 index 00000000..39eba0bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/click-short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b20ee3218ef95a0937f207663684bf05450810771d3d9893f284dae63521670 +size 5560 diff --git a/Skins/- Seoul v11 Asta Edit/clickshort.wav b/Skins/- Seoul v11 Asta Edit/clickshort.wav new file mode 100644 index 00000000..39eba0bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/clickshort.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b20ee3218ef95a0937f207663684bf05450810771d3d9893f284dae63521670 +size 5560 diff --git a/Skins/- Seoul v11 Asta Edit/combo-0.png b/Skins/- Seoul v11 Asta Edit/combo-0.png new file mode 100644 index 00000000..09baec31 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70591e01a6902f37bdd8caaf5da3ba1d9e713930056df64fa9e07c7042c12467 +size 1454 diff --git a/Skins/- Seoul v11 Asta Edit/combo-0@2x.png b/Skins/- Seoul v11 Asta Edit/combo-0@2x.png new file mode 100644 index 00000000..941a300d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c7af25ce648b0d420c57c7bd57e49dd20ee7cd50259c12c97eaf463c18e654 +size 3296 diff --git a/Skins/- Seoul v11 Asta Edit/combo-1.png b/Skins/- Seoul v11 Asta Edit/combo-1.png new file mode 100644 index 00000000..dbe53c88 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49bd9cc8eac54f1f927b344d924ec7789c262908459bb8e262fc4b83ecbd12bf +size 926 diff --git a/Skins/- Seoul v11 Asta Edit/combo-1@2x.png b/Skins/- Seoul v11 Asta Edit/combo-1@2x.png new file mode 100644 index 00000000..b97a6489 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a103db25da887c89c5b3c372573add4831e8ff9e908a177881ee832c3c23a4b9 +size 1661 diff --git a/Skins/- Seoul v11 Asta Edit/combo-2.png b/Skins/- Seoul v11 Asta Edit/combo-2.png new file mode 100644 index 00000000..884851cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4368891b5bab778fb21ec8cf60839d0e892999ef33c2c3a3475e292e8eb327f9 +size 1297 diff --git a/Skins/- Seoul v11 Asta Edit/combo-2@2x.png b/Skins/- Seoul v11 Asta Edit/combo-2@2x.png new file mode 100644 index 00000000..c3cbbc7d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a432f7bdccc3abd1f0804dea716e57b56abe2007e2dd778ce37f33da04711b +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/combo-3.png b/Skins/- Seoul v11 Asta Edit/combo-3.png new file mode 100644 index 00000000..77fbceef --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f1d8aa90dd2b89b7e54eb6acbb34935f9ee67973829822ab160e1aaa1b5d30 +size 1546 diff --git a/Skins/- Seoul v11 Asta Edit/combo-3@2x.png b/Skins/- Seoul v11 Asta Edit/combo-3@2x.png new file mode 100644 index 00000000..e66be571 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd784636875594fe27bcb76be673646da0ab513b54a4c6fba046babf2cebd6e +size 3502 diff --git a/Skins/- Seoul v11 Asta Edit/combo-4.png b/Skins/- Seoul v11 Asta Edit/combo-4.png new file mode 100644 index 00000000..09d1c541 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4949a8f09dae65e24c64e7404f68ec622d0d402ff5686e7cc963f25586c63f0c +size 1315 diff --git a/Skins/- Seoul v11 Asta Edit/combo-4@2x.png b/Skins/- Seoul v11 Asta Edit/combo-4@2x.png new file mode 100644 index 00000000..31e4bb53 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5357f9a1b7c8124b496f4c0d5e3001d18ec004d4c9f5fa1364c6ba77a5783178 +size 2576 diff --git a/Skins/- Seoul v11 Asta Edit/combo-5.png b/Skins/- Seoul v11 Asta Edit/combo-5.png new file mode 100644 index 00000000..d3b5454f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991a8b44763a6f06d95d44f76653deac4e38a93a2df3779875e69291a8a30484 +size 1432 diff --git a/Skins/- Seoul v11 Asta Edit/combo-5@2x.png b/Skins/- Seoul v11 Asta Edit/combo-5@2x.png new file mode 100644 index 00000000..510def78 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26890a55773acf26935c7f80c93615b7c1e4a7d58a1f81656577fc33dc1a9c9 +size 3105 diff --git a/Skins/- Seoul v11 Asta Edit/combo-6.png b/Skins/- Seoul v11 Asta Edit/combo-6.png new file mode 100644 index 00000000..d872b782 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab894f5928c606c6c51e0c7f0f4dbc2b46b17ab361b04b23d2384b464e9a1810 +size 1580 diff --git a/Skins/- Seoul v11 Asta Edit/combo-6@2x.png b/Skins/- Seoul v11 Asta Edit/combo-6@2x.png new file mode 100644 index 00000000..ab66d47f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24224acb3e588eac727ac01c16e92cc392178aceddfd778c29baf55a9651bc1c +size 3602 diff --git a/Skins/- Seoul v11 Asta Edit/combo-7.png b/Skins/- Seoul v11 Asta Edit/combo-7.png new file mode 100644 index 00000000..03c5888d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439c768519fb53c3f88b7cba6aeaf0d66275a7d403651f75afb79d8b0c628a52 +size 1029 diff --git a/Skins/- Seoul v11 Asta Edit/combo-7@2x.png b/Skins/- Seoul v11 Asta Edit/combo-7@2x.png new file mode 100644 index 00000000..177c2bd0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35936d4b4972505a340a70c252a36a8b4d07d9fa30655625753c842e11c75ec +size 1684 diff --git a/Skins/- Seoul v11 Asta Edit/combo-8.png b/Skins/- Seoul v11 Asta Edit/combo-8.png new file mode 100644 index 00000000..3fc87325 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7685ec7e687aa237df3a663b16bbcbabdb045884561d839770ae07a29ecf36e4 +size 1616 diff --git a/Skins/- Seoul v11 Asta Edit/combo-8@2x.png b/Skins/- Seoul v11 Asta Edit/combo-8@2x.png new file mode 100644 index 00000000..223203f4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2356d274240666f5425d53a8e4031635d86c9b9c5ee2dac9bc1a044ed0c7d3 +size 3731 diff --git a/Skins/- Seoul v11 Asta Edit/combo-9.png b/Skins/- Seoul v11 Asta Edit/combo-9.png new file mode 100644 index 00000000..ccec291f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb08e6f97d2dab1763ceee8d71043197a3b0a9110f2d856cc56b5a4d46ef23bd +size 1611 diff --git a/Skins/- Seoul v11 Asta Edit/combo-9@2x.png b/Skins/- Seoul v11 Asta Edit/combo-9@2x.png new file mode 100644 index 00000000..2da1d9af --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa65143238b629af392c2a99e108601ace11aa5dd7f798fbbe025693fdaa56f8 +size 3639 diff --git a/Skins/- Seoul v11 Asta Edit/combo-x.png b/Skins/- Seoul v11 Asta Edit/combo-x.png new file mode 100644 index 00000000..8799a556 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74bf8f92ed03891b2310bc8174b8c08aeeb16ed06337711aebbbc076638ea8ae +size 1418 diff --git a/Skins/- Seoul v11 Asta Edit/combo-x@2x.png b/Skins/- Seoul v11 Asta Edit/combo-x@2x.png new file mode 100644 index 00000000..47364774 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combo-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e17041ce8a0d82651bc95995ffd34e43a005810dd78d1a54f2d85b87ea5de0 +size 3727 diff --git a/Skins/- Seoul v11 Asta Edit/combobreak.wav b/Skins/- Seoul v11 Asta Edit/combobreak.wav new file mode 100644 index 00000000..d619f715 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8627af04eb69db0c823c0a1e39129235c66f1c28395d4df18e59dde7c10d1dc +size 34132 diff --git a/Skins/- Seoul v11 Asta Edit/combobreakalt.wav b/Skins/- Seoul v11 Asta Edit/combobreakalt.wav new file mode 100644 index 00000000..207e4366 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/combobreakalt.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c78fd56564bf8a107ea0988df13a7a75520192471f5bff1fa05bd9f20e6590 +size 147476 diff --git a/Skins/- Seoul v11 Asta Edit/comboburst.png b/Skins/- Seoul v11 Asta Edit/comboburst.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/count.wav b/Skins/- Seoul v11 Asta Edit/count.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/count.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- Seoul v11 Asta Edit/count1.png b/Skins/- Seoul v11 Asta Edit/count1.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/count1s.wav b/Skins/- Seoul v11 Asta Edit/count1s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- Seoul v11 Asta Edit/count2.png b/Skins/- Seoul v11 Asta Edit/count2.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/count2s.wav b/Skins/- Seoul v11 Asta Edit/count2s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- Seoul v11 Asta Edit/count3.png b/Skins/- Seoul v11 Asta Edit/count3.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/count3s.wav b/Skins/- Seoul v11 Asta Edit/count3s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- Seoul v11 Asta Edit/cursor old.zip b/Skins/- Seoul v11 Asta Edit/cursor old.zip new file mode 100644 index 00000000..9455dea1 Binary files /dev/null and b/Skins/- Seoul v11 Asta Edit/cursor old.zip differ diff --git a/Skins/- Seoul v11 Asta Edit/cursor.png b/Skins/- Seoul v11 Asta Edit/cursor.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/cursor@2x.png b/Skins/- Seoul v11 Asta Edit/cursor@2x.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- Seoul v11 Asta Edit/cursormiddle.png b/Skins/- Seoul v11 Asta Edit/cursormiddle.png new file mode 100644 index 00000000..87e42c77 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/cursormiddle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1adaf190c28df9e518fe2de549412a2c4d1e3cbe3a9466888c5cd18be685e8 +size 6182 diff --git a/Skins/- Seoul v11 Asta Edit/cursormiddle@2x.png b/Skins/- Seoul v11 Asta Edit/cursormiddle@2x.png new file mode 100644 index 00000000..29bc3d39 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/cursormiddle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905e02481a161adfb3a7aa9432bf6dca1aa197c1d0e9367aed8565104b72604a +size 16053 diff --git a/Skins/- Seoul v11 Asta Edit/cursortrail.png b/Skins/- Seoul v11 Asta Edit/cursortrail.png new file mode 100644 index 00000000..b36e3e35 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a1c330f09b054d2aec647387bce7ffb5e373d8d13437ee52d36fe308aba406f +size 412 diff --git a/Skins/- Seoul v11 Asta Edit/default-0.png b/Skins/- Seoul v11 Asta Edit/default-0.png new file mode 100644 index 00000000..890d3341 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a597948184fb89897b87cdd12d38fc2247636e8922eaba8b6616b2af2dbae888 +size 3378 diff --git a/Skins/- Seoul v11 Asta Edit/default-0@2x.png b/Skins/- Seoul v11 Asta Edit/default-0@2x.png new file mode 100644 index 00000000..99744536 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a763a15c639f9f77fff82c177452a31ec6717ab8d7786ab386d25c7a9c07428 +size 10263 diff --git a/Skins/- Seoul v11 Asta Edit/default-1.png b/Skins/- Seoul v11 Asta Edit/default-1.png new file mode 100644 index 00000000..3c0edff5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c31db3ebd02d9ca532548477a92a9da1fd090ed6c08fcf8a9a0029045d5b5b +size 1983 diff --git a/Skins/- Seoul v11 Asta Edit/default-1@2x.png b/Skins/- Seoul v11 Asta Edit/default-1@2x.png new file mode 100644 index 00000000..cfc99354 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b9cec50e233bc871fbe990c14ce141dcf792fa06a64478abbdda65abcd1bc0 +size 4498 diff --git a/Skins/- Seoul v11 Asta Edit/default-2.png b/Skins/- Seoul v11 Asta Edit/default-2.png new file mode 100644 index 00000000..904db05c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de3e7d86c0df77dc92524ced7baa8b60cf3d101d0bcfc2a747d4faecedd18e6d +size 3166 diff --git a/Skins/- Seoul v11 Asta Edit/default-2@2x.png b/Skins/- Seoul v11 Asta Edit/default-2@2x.png new file mode 100644 index 00000000..945dfe16 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33671c6c846187302067c7274bc50184b5f200526f146ceb2299db6f4a17c7b6 +size 9243 diff --git a/Skins/- Seoul v11 Asta Edit/default-3.png b/Skins/- Seoul v11 Asta Edit/default-3.png new file mode 100644 index 00000000..d688ca93 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c4c9bfe86f2a039c9b0e75ae72124853caa4664d7adb994dfc77ffabc2ff52f +size 3214 diff --git a/Skins/- Seoul v11 Asta Edit/default-3@2x.png b/Skins/- Seoul v11 Asta Edit/default-3@2x.png new file mode 100644 index 00000000..1e4c68de --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41e83027c36af14a78e8430d452dd3da7425e0a1a414244bfab4dfc7dcfa62f +size 9538 diff --git a/Skins/- Seoul v11 Asta Edit/default-4.png b/Skins/- Seoul v11 Asta Edit/default-4.png new file mode 100644 index 00000000..5174a32d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3379b8103d33192227a16069a773498b896edc2e47300163ecf668915e87105a +size 2590 diff --git a/Skins/- Seoul v11 Asta Edit/default-4@2x.png b/Skins/- Seoul v11 Asta Edit/default-4@2x.png new file mode 100644 index 00000000..1f71fcd7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b34420b35fa3f0042cdfb2d59f3f31c31ba351397ae9150ea62b0cd8a1fde5f +size 6776 diff --git a/Skins/- Seoul v11 Asta Edit/default-5.png b/Skins/- Seoul v11 Asta Edit/default-5.png new file mode 100644 index 00000000..e3d5e496 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37b41c2ac4b0410e20637edcd9505c57ff4f72064011498ac2ac5a8f12aaf8a +size 3289 diff --git a/Skins/- Seoul v11 Asta Edit/default-5@2x.png b/Skins/- Seoul v11 Asta Edit/default-5@2x.png new file mode 100644 index 00000000..76b2aeca --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ddf9217617ebd4ddb2929747e5d1ddd84510da7f65047cc6ad15c92eb45fb2 +size 9809 diff --git a/Skins/- Seoul v11 Asta Edit/default-6.png b/Skins/- Seoul v11 Asta Edit/default-6.png new file mode 100644 index 00000000..4712daf4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df0664c19f1c86f1a3452cfdf1341cb9e8d05af1b95ff1463419821a2b61f219 +size 3476 diff --git a/Skins/- Seoul v11 Asta Edit/default-6@2x.png b/Skins/- Seoul v11 Asta Edit/default-6@2x.png new file mode 100644 index 00000000..a366bb3d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc01efb3a2aca3af1ff79beb89ced3314d049235a0bebb1e9bd5eab4193d6150 +size 10593 diff --git a/Skins/- Seoul v11 Asta Edit/default-7.png b/Skins/- Seoul v11 Asta Edit/default-7.png new file mode 100644 index 00000000..6271bd6b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05299f6d11cad54ec5419c55cd4182d519947adeb16f8895cb38adc336ff044 +size 2716 diff --git a/Skins/- Seoul v11 Asta Edit/default-7@2x.png b/Skins/- Seoul v11 Asta Edit/default-7@2x.png new file mode 100644 index 00000000..751ea941 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb207bb846c41196d21766a850ed16aaf14ebe2791d770d012a06085be89569 +size 7241 diff --git a/Skins/- Seoul v11 Asta Edit/default-8.png b/Skins/- Seoul v11 Asta Edit/default-8.png new file mode 100644 index 00000000..326fd41b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ff77340a8f9e44b2b579ca4fd32d2e78c1acf0d5f59a2ddfb2e9fb85950ea7 +size 3601 diff --git a/Skins/- Seoul v11 Asta Edit/default-8@2x.png b/Skins/- Seoul v11 Asta Edit/default-8@2x.png new file mode 100644 index 00000000..fedd3791 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73afcc3cbefb902488e41cd7782923482992b8c9b3dbd8a06c0e430a99461449 +size 11194 diff --git a/Skins/- Seoul v11 Asta Edit/default-9.png b/Skins/- Seoul v11 Asta Edit/default-9.png new file mode 100644 index 00000000..6fb81d8b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1744d6ef14ce47409d81d703584e401adef7cfc13c5db65beea042417a23126b +size 3492 diff --git a/Skins/- Seoul v11 Asta Edit/default-9@2x.png b/Skins/- Seoul v11 Asta Edit/default-9@2x.png new file mode 100644 index 00000000..142d98e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41706fb16faeb3095acfbe34824e49d43facfa09097e2153b2cc1d650a674cd +size 10648 diff --git a/Skins/- Seoul v11 Asta Edit/drum--hitwhistle.wav b/Skins/- Seoul v11 Asta Edit/drum--hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum--hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitclap.ogg b/Skins/- Seoul v11 Asta Edit/drum-hitclap.ogg new file mode 100644 index 00000000..5b077e09 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1267e0cbe6f451fe7cc80c54aa8d9609788744f80dc4f55f98ac20c3063ab9 +size 6355 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitclap.wav b/Skins/- Seoul v11 Asta Edit/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitclap2.wav b/Skins/- Seoul v11 Asta Edit/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitfinish.ogg b/Skins/- Seoul v11 Asta Edit/drum-hitfinish.ogg new file mode 100644 index 00000000..3d4795e4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1f1e064b00b77b7a2afaf2a9d65fde1ce7baf787d46b5f814427bfee7b1786 +size 7320 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitfinish.wav b/Skins/- Seoul v11 Asta Edit/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitnormal.ogg b/Skins/- Seoul v11 Asta Edit/drum-hitnormal.ogg new file mode 100644 index 00000000..e3c7a777 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8a31d3e16d4acf5128682e203d422210f75e6b4f87548987d833588d6513a0 +size 7320 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitnormal.wav b/Skins/- Seoul v11 Asta Edit/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitnormal2.wav b/Skins/- Seoul v11 Asta Edit/drum-hitnormal2.wav new file mode 100644 index 00000000..c2681a84 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73bf862a8b098bf837d0522bfb73469f101b06ca2a75a2c59ab5c336d020dbb0 +size 28064 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitnormalh.wav b/Skins/- Seoul v11 Asta Edit/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitwhistle.ogg b/Skins/- Seoul v11 Asta Edit/drum-hitwhistle.ogg new file mode 100644 index 00000000..e32d2661 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33656343d065233083c31d932fd076f12490fcf82b58bc9559a506516fec90f3 +size 19982 diff --git a/Skins/- Seoul v11 Asta Edit/drum-hitwhistle.wav b/Skins/- Seoul v11 Asta Edit/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- Seoul v11 Asta Edit/drum-sliderslide.wav b/Skins/- Seoul v11 Asta Edit/drum-sliderslide.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/- Seoul v11 Asta Edit/drum-slidertick.wav b/Skins/- Seoul v11 Asta Edit/drum-slidertick.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/- Seoul v11 Asta Edit/drum-sliderwhistle.wav b/Skins/- Seoul v11 Asta Edit/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/fail-background.png b/Skins/- Seoul v11 Asta Edit/fail-background.png new file mode 100644 index 00000000..92a147e8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec5c6040694674664691017c121ab87e8892cce9602ade098c078783e0eb05dd +size 923440 diff --git a/Skins/- Seoul v11 Asta Edit/fail-background@2x.png b/Skins/- Seoul v11 Asta Edit/fail-background@2x.png new file mode 100644 index 00000000..363f1ab1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/fail-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f08dfc3961f761e7e01da501f2706ca3d5a90380c1d46503924e702acf6973ed +size 2926946 diff --git a/Skins/- Seoul v11 Asta Edit/failsound.ogg b/Skins/- Seoul v11 Asta Edit/failsound.ogg new file mode 100644 index 00000000..30e3c8fd --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c502536e2bb3bf6010440ecaa757607e0eb674a6218e7d39d9090be444569380 +size 2188607 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-0.png b/Skins/- Seoul v11 Asta Edit/followpoint-0.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-1.png b/Skins/- Seoul v11 Asta Edit/followpoint-1.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-2.png b/Skins/- Seoul v11 Asta Edit/followpoint-2.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-3.png b/Skins/- Seoul v11 Asta Edit/followpoint-3.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-4.png b/Skins/- Seoul v11 Asta Edit/followpoint-4.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-5.png b/Skins/- Seoul v11 Asta Edit/followpoint-5.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-6.png b/Skins/- Seoul v11 Asta Edit/followpoint-6.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-7.png b/Skins/- Seoul v11 Asta Edit/followpoint-7.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-8.png b/Skins/- Seoul v11 Asta Edit/followpoint-8.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint-9.png b/Skins/- Seoul v11 Asta Edit/followpoint-9.png new file mode 100644 index 00000000..fb9429cc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910a1a7bb9949269378126d978c069f4f7edbf35a5dae5d092695452fe5348b +size 708 diff --git a/Skins/- Seoul v11 Asta Edit/followpoint.png b/Skins/- Seoul v11 Asta Edit/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/go.png b/Skins/- Seoul v11 Asta Edit/go.png new file mode 100644 index 00000000..cd9290c8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48a6cef1d4f143f9585daafb0d2c5769d5e2991d2d84e119e34fa75d0725e88 +size 1433053 diff --git a/Skins/- Seoul v11 Asta Edit/gos.wav b/Skins/- Seoul v11 Asta Edit/gos.wav new file mode 100644 index 00000000..8864a237 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977a135f0949a829b9a1fead56ef9c963d836921f96ccadb1b0401376ffdf93f +size 529244 diff --git a/Skins/- Seoul v11 Asta Edit/heartbeat.mp3 b/Skins/- Seoul v11 Asta Edit/heartbeat.mp3 new file mode 100644 index 00000000..9f5e78d3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/heartbeat.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a95657b49066c5b4664a7f9c7d1a27430af20d2eea25e06194df4e85f9be73 +size 12646 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-0.png b/Skins/- Seoul v11 Asta Edit/hit0-0.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-1.png b/Skins/- Seoul v11 Asta Edit/hit0-1.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-10.png b/Skins/- Seoul v11 Asta Edit/hit0-10.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-11.png b/Skins/- Seoul v11 Asta Edit/hit0-11.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-12.png b/Skins/- Seoul v11 Asta Edit/hit0-12.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-13.png b/Skins/- Seoul v11 Asta Edit/hit0-13.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-14.png b/Skins/- Seoul v11 Asta Edit/hit0-14.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-15.png b/Skins/- Seoul v11 Asta Edit/hit0-15.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-16.png b/Skins/- Seoul v11 Asta Edit/hit0-16.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-17.png b/Skins/- Seoul v11 Asta Edit/hit0-17.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-18.png b/Skins/- Seoul v11 Asta Edit/hit0-18.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-19.png b/Skins/- Seoul v11 Asta Edit/hit0-19.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-2.png b/Skins/- Seoul v11 Asta Edit/hit0-2.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-20.png b/Skins/- Seoul v11 Asta Edit/hit0-20.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-21.png b/Skins/- Seoul v11 Asta Edit/hit0-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-3.png b/Skins/- Seoul v11 Asta Edit/hit0-3.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-4.png b/Skins/- Seoul v11 Asta Edit/hit0-4.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-5.png b/Skins/- Seoul v11 Asta Edit/hit0-5.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-6.png b/Skins/- Seoul v11 Asta Edit/hit0-6.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-7.png b/Skins/- Seoul v11 Asta Edit/hit0-7.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-8.png b/Skins/- Seoul v11 Asta Edit/hit0-8.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0-9.png b/Skins/- Seoul v11 Asta Edit/hit0-9.png new file mode 100644 index 00000000..002189dc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5617d498753fecf21883cf88139316a408a41722ebbd49b433961fe05a4a59 +size 3471 diff --git a/Skins/- Seoul v11 Asta Edit/hit0.png b/Skins/- Seoul v11 Asta Edit/hit0.png new file mode 100644 index 00000000..7565a290 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81926ef0391e7604d276aa81bc352874ca30e8a2e3e4b98409d9ef821fd8f82 +size 280 diff --git a/Skins/- Seoul v11 Asta Edit/hit0@2x.png b/Skins/- Seoul v11 Asta Edit/hit0@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-0.png b/Skins/- Seoul v11 Asta Edit/hit100-0.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-1.png b/Skins/- Seoul v11 Asta Edit/hit100-1.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-10.png b/Skins/- Seoul v11 Asta Edit/hit100-10.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-11.png b/Skins/- Seoul v11 Asta Edit/hit100-11.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-12.png b/Skins/- Seoul v11 Asta Edit/hit100-12.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-13.png b/Skins/- Seoul v11 Asta Edit/hit100-13.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-14.png b/Skins/- Seoul v11 Asta Edit/hit100-14.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-15.png b/Skins/- Seoul v11 Asta Edit/hit100-15.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-16.png b/Skins/- Seoul v11 Asta Edit/hit100-16.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-17.png b/Skins/- Seoul v11 Asta Edit/hit100-17.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-18.png b/Skins/- Seoul v11 Asta Edit/hit100-18.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-19.png b/Skins/- Seoul v11 Asta Edit/hit100-19.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-2.png b/Skins/- Seoul v11 Asta Edit/hit100-2.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-20.png b/Skins/- Seoul v11 Asta Edit/hit100-20.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-21.png b/Skins/- Seoul v11 Asta Edit/hit100-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-3.png b/Skins/- Seoul v11 Asta Edit/hit100-3.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-4.png b/Skins/- Seoul v11 Asta Edit/hit100-4.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-5.png b/Skins/- Seoul v11 Asta Edit/hit100-5.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-6.png b/Skins/- Seoul v11 Asta Edit/hit100-6.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-7.png b/Skins/- Seoul v11 Asta Edit/hit100-7.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-8.png b/Skins/- Seoul v11 Asta Edit/hit100-8.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100-9.png b/Skins/- Seoul v11 Asta Edit/hit100-9.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100.png b/Skins/- Seoul v11 Asta Edit/hit100.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-0.png b/Skins/- Seoul v11 Asta Edit/hit100k-0.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-1.png b/Skins/- Seoul v11 Asta Edit/hit100k-1.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-10.png b/Skins/- Seoul v11 Asta Edit/hit100k-10.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-11.png b/Skins/- Seoul v11 Asta Edit/hit100k-11.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-12.png b/Skins/- Seoul v11 Asta Edit/hit100k-12.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-13.png b/Skins/- Seoul v11 Asta Edit/hit100k-13.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-14.png b/Skins/- Seoul v11 Asta Edit/hit100k-14.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-15.png b/Skins/- Seoul v11 Asta Edit/hit100k-15.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-16.png b/Skins/- Seoul v11 Asta Edit/hit100k-16.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-17.png b/Skins/- Seoul v11 Asta Edit/hit100k-17.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-18.png b/Skins/- Seoul v11 Asta Edit/hit100k-18.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-19.png b/Skins/- Seoul v11 Asta Edit/hit100k-19.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-2.png b/Skins/- Seoul v11 Asta Edit/hit100k-2.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-20.png b/Skins/- Seoul v11 Asta Edit/hit100k-20.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-21.png b/Skins/- Seoul v11 Asta Edit/hit100k-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-3.png b/Skins/- Seoul v11 Asta Edit/hit100k-3.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-4.png b/Skins/- Seoul v11 Asta Edit/hit100k-4.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-5.png b/Skins/- Seoul v11 Asta Edit/hit100k-5.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-6.png b/Skins/- Seoul v11 Asta Edit/hit100k-6.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-7.png b/Skins/- Seoul v11 Asta Edit/hit100k-7.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-8.png b/Skins/- Seoul v11 Asta Edit/hit100k-8.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k-9.png b/Skins/- Seoul v11 Asta Edit/hit100k-9.png new file mode 100644 index 00000000..e8f65219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c46c9d9981c8fd071a1d03e562ed6c894b3672f4e0eef760dfa0c37302db55f +size 1926 diff --git a/Skins/- Seoul v11 Asta Edit/hit100k.png b/Skins/- Seoul v11 Asta Edit/hit100k.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/hit300-0.png b/Skins/- Seoul v11 Asta Edit/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/hit300.png b/Skins/- Seoul v11 Asta Edit/hit300.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/hit300g-0.png b/Skins/- Seoul v11 Asta Edit/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/hit300g.png b/Skins/- Seoul v11 Asta Edit/hit300g.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/hit300k-0.png b/Skins/- Seoul v11 Asta Edit/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/hit300k.png b/Skins/- Seoul v11 Asta Edit/hit300k.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-0.png b/Skins/- Seoul v11 Asta Edit/hit50-0.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-1.png b/Skins/- Seoul v11 Asta Edit/hit50-1.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-10.png b/Skins/- Seoul v11 Asta Edit/hit50-10.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-11.png b/Skins/- Seoul v11 Asta Edit/hit50-11.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-12.png b/Skins/- Seoul v11 Asta Edit/hit50-12.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-13.png b/Skins/- Seoul v11 Asta Edit/hit50-13.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-14.png b/Skins/- Seoul v11 Asta Edit/hit50-14.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-15.png b/Skins/- Seoul v11 Asta Edit/hit50-15.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-16.png b/Skins/- Seoul v11 Asta Edit/hit50-16.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-17.png b/Skins/- Seoul v11 Asta Edit/hit50-17.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-18.png b/Skins/- Seoul v11 Asta Edit/hit50-18.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-19.png b/Skins/- Seoul v11 Asta Edit/hit50-19.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-2.png b/Skins/- Seoul v11 Asta Edit/hit50-2.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-20.png b/Skins/- Seoul v11 Asta Edit/hit50-20.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-21.png b/Skins/- Seoul v11 Asta Edit/hit50-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-3.png b/Skins/- Seoul v11 Asta Edit/hit50-3.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-4.png b/Skins/- Seoul v11 Asta Edit/hit50-4.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-5.png b/Skins/- Seoul v11 Asta Edit/hit50-5.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-6.png b/Skins/- Seoul v11 Asta Edit/hit50-6.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-7.png b/Skins/- Seoul v11 Asta Edit/hit50-7.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-8.png b/Skins/- Seoul v11 Asta Edit/hit50-8.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50-9.png b/Skins/- Seoul v11 Asta Edit/hit50-9.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50.png b/Skins/- Seoul v11 Asta Edit/hit50.png new file mode 100644 index 00000000..7565a290 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81926ef0391e7604d276aa81bc352874ca30e8a2e3e4b98409d9ef821fd8f82 +size 280 diff --git a/Skins/- Seoul v11 Asta Edit/hit50@2x.png b/Skins/- Seoul v11 Asta Edit/hit50@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-0.png b/Skins/- Seoul v11 Asta Edit/hit50k-0.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-1.png b/Skins/- Seoul v11 Asta Edit/hit50k-1.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-10.png b/Skins/- Seoul v11 Asta Edit/hit50k-10.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-11.png b/Skins/- Seoul v11 Asta Edit/hit50k-11.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-12.png b/Skins/- Seoul v11 Asta Edit/hit50k-12.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-13.png b/Skins/- Seoul v11 Asta Edit/hit50k-13.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-14.png b/Skins/- Seoul v11 Asta Edit/hit50k-14.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-15.png b/Skins/- Seoul v11 Asta Edit/hit50k-15.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-16.png b/Skins/- Seoul v11 Asta Edit/hit50k-16.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-17.png b/Skins/- Seoul v11 Asta Edit/hit50k-17.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-18.png b/Skins/- Seoul v11 Asta Edit/hit50k-18.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-19.png b/Skins/- Seoul v11 Asta Edit/hit50k-19.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-2.png b/Skins/- Seoul v11 Asta Edit/hit50k-2.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-20.png b/Skins/- Seoul v11 Asta Edit/hit50k-20.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-21.png b/Skins/- Seoul v11 Asta Edit/hit50k-21.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-3.png b/Skins/- Seoul v11 Asta Edit/hit50k-3.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-4.png b/Skins/- Seoul v11 Asta Edit/hit50k-4.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-5.png b/Skins/- Seoul v11 Asta Edit/hit50k-5.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-6.png b/Skins/- Seoul v11 Asta Edit/hit50k-6.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-7.png b/Skins/- Seoul v11 Asta Edit/hit50k-7.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-8.png b/Skins/- Seoul v11 Asta Edit/hit50k-8.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k-9.png b/Skins/- Seoul v11 Asta Edit/hit50k-9.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hit50k.png b/Skins/- Seoul v11 Asta Edit/hit50k.png new file mode 100644 index 00000000..2d7ea8bb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655fa91e35a9176a4e9cd46f1a320b016e1bce95436847b2c642b1c8888d1ee6 +size 1891 diff --git a/Skins/- Seoul v11 Asta Edit/hitcircle.png b/Skins/- Seoul v11 Asta Edit/hitcircle.png new file mode 100644 index 00000000..771a9c06 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b3f60ca74ed102fd6b02ddc044555e596a5b0e96c645e667f27db4c43b79e2 +size 8871 diff --git a/Skins/- Seoul v11 Asta Edit/hitcircle@2x.png b/Skins/- Seoul v11 Asta Edit/hitcircle@2x.png new file mode 100644 index 00000000..d9440ad4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f0556c4d36cefe00e6678da75f181b5bfc469dd626fe8b1eec11c324e0ee8d +size 30488 diff --git a/Skins/- Seoul v11 Asta Edit/hitcircleoverlay.png b/Skins/- Seoul v11 Asta Edit/hitcircleoverlay.png new file mode 100644 index 00000000..c375911a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad2fb72572667f04b2f5c0dbfbeac207e4ad4456fb8761b2e7c8efc13dee9de +size 7193 diff --git a/Skins/- Seoul v11 Asta Edit/hitcircleoverlay@2x.png b/Skins/- Seoul v11 Asta Edit/hitcircleoverlay@2x.png new file mode 100644 index 00000000..a3f124ac --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96977ca2aea8a113f23c225ff6b208f5f8cc20e6d57f9f5baa804c1c6a8da4ec +size 26465 diff --git a/Skins/- Seoul v11 Asta Edit/hitcircleselect.png b/Skins/- Seoul v11 Asta Edit/hitcircleselect.png new file mode 100644 index 00000000..d8271622 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8e03cd30f94d4afd3eaf219f1801bc783130e1b4566d2b4035103ac98b8e895 +size 6957 diff --git a/Skins/- Seoul v11 Asta Edit/inputoverlay-background.png b/Skins/- Seoul v11 Asta Edit/inputoverlay-background.png new file mode 100644 index 00000000..081a803d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81af3bc5b735fefbcec84a8d964448c073a1a47a830f8c31f6ecc912ce279043 +size 23400 diff --git a/Skins/- Seoul v11 Asta Edit/inputoverlay-background@2x.png b/Skins/- Seoul v11 Asta Edit/inputoverlay-background@2x.png new file mode 100644 index 00000000..3c7dbd38 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf48b7873d7eaae42fab1e2273ff3859e4c723228c651da6faf7525105ac898a +size 75124 diff --git a/Skins/- Seoul v11 Asta Edit/inputoverlay-key.png b/Skins/- Seoul v11 Asta Edit/inputoverlay-key.png new file mode 100644 index 00000000..565adf00 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80341452dd962f087779f5369abcdd63ef82068c58f1479d5866e0059903f87a +size 763 diff --git a/Skins/- Seoul v11 Asta Edit/inputoverlay-key@2x.png b/Skins/- Seoul v11 Asta Edit/inputoverlay-key@2x.png new file mode 100644 index 00000000..ad784cfd --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446ca0eb8ccf17b2e8d5e6c79c76e155f7a98b7f2f4e7fe83211fa8b3b7a58ff +size 1345 diff --git a/Skins/- Seoul v11 Asta Edit/lighting.png b/Skins/- Seoul v11 Asta Edit/lighting.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/- Seoul v11 Asta Edit/match-confirm.wav b/Skins/- Seoul v11 Asta Edit/match-confirm.wav new file mode 100644 index 00000000..17f98e5e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb601a34b33697c96b5ab93aa8a9b20331c34e43586411ee8d898a0210f230a9 +size 62724 diff --git a/Skins/- Seoul v11 Asta Edit/match-join.wav b/Skins/- Seoul v11 Asta Edit/match-join.wav new file mode 100644 index 00000000..1d31b082 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/match-join.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5883c6eab9fd596e3c037cecf5bd52106cba95bdfddfc8fdd20754ae699fc0e5 +size 55048 diff --git a/Skins/- Seoul v11 Asta Edit/match-leave.wav b/Skins/- Seoul v11 Asta Edit/match-leave.wav new file mode 100644 index 00000000..2c01b4f8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/match-leave.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5863d5c06d5599345228121de70f15de43f82768bb64a670dc074cf741a740f +size 47738 diff --git a/Skins/- Seoul v11 Asta Edit/match-start.wav b/Skins/- Seoul v11 Asta Edit/match-start.wav new file mode 100644 index 00000000..193a0e01 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/match-start.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d9f103543926dbe431afd64837790e57f7791c1ecc093d000ca46b21504fe1 +size 31470 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-0.png b/Skins/- Seoul v11 Asta Edit/menu-back-0.png new file mode 100644 index 00000000..15cb60e8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ab7d76923b8b2f16859272424c0db551b072c862cd6cc15e4824cf2cb0a576 +size 44872 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-0@2x.png b/Skins/- Seoul v11 Asta Edit/menu-back-0@2x.png new file mode 100644 index 00000000..481adf25 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:364bf5fd7e7a6120ba05d7fb468de204c2da19a6467418117fbe76fe6076f168 +size 150634 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-1.png b/Skins/- Seoul v11 Asta Edit/menu-back-1.png new file mode 100644 index 00000000..64f61c94 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64aae7fa898e2f14c47ac1d3e8b755f323d31a5ce09788d07ea4298af7910dff +size 45577 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-1@2x.png b/Skins/- Seoul v11 Asta Edit/menu-back-1@2x.png new file mode 100644 index 00000000..256879e3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:388bc7ee1b542c58bcf1b17e9931dd6878c692124793c4a0d97c5924116a57bc +size 151885 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-2.png b/Skins/- Seoul v11 Asta Edit/menu-back-2.png new file mode 100644 index 00000000..ceeae849 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebb5659d55ca76c6f1df66a8927c548d15d18904e17b2d268685a8f4719f07a +size 45709 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-2@2x.png b/Skins/- Seoul v11 Asta Edit/menu-back-2@2x.png new file mode 100644 index 00000000..8e0c4952 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846557bde2b6f9b35ba2df77e3be743bd560709f2a902835e3d70d08f87dee20 +size 152402 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-3.png b/Skins/- Seoul v11 Asta Edit/menu-back-3.png new file mode 100644 index 00000000..47eaa29c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bc92ae64833f78470caf913f99c3980dde3359d09900cef7f9e10bfe793c0f +size 45732 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-3@2x.png b/Skins/- Seoul v11 Asta Edit/menu-back-3@2x.png new file mode 100644 index 00000000..fa311819 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5bba705221e2faab34980103c6b019ebb6313d28f3b9f6b09a239be7599fa2 +size 152316 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-4.png b/Skins/- Seoul v11 Asta Edit/menu-back-4.png new file mode 100644 index 00000000..beb9382c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c89a86eef190e65a2c7b469b8341b21c64cdf51dcb69f263d2d2f8a0c1c67c +size 45981 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-4@2x.png b/Skins/- Seoul v11 Asta Edit/menu-back-4@2x.png new file mode 100644 index 00000000..5784b9a1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0b3a70336eb3c54897761c07e6a7d35f4deb356672f1aa8bc2c9e2cacf6efc +size 152676 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-5.png b/Skins/- Seoul v11 Asta Edit/menu-back-5.png new file mode 100644 index 00000000..68ff6121 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84fb5cfc645c010ed85aab56396e7ad4d770c40904341c03652ff1d146ccc3aa +size 45718 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-5@2x.png b/Skins/- Seoul v11 Asta Edit/menu-back-5@2x.png new file mode 100644 index 00000000..c8b50795 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b9bf1bacf200fa5213c1f11afc5e07f4a891a2004c063ce058d202f5676e7a +size 152207 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-6.png b/Skins/- Seoul v11 Asta Edit/menu-back-6.png new file mode 100644 index 00000000..b5d86a01 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f86cf56dc148a8acbe252e7413f44bda60bc851f20ffb91da7c1547e6f623e +size 45928 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-6@2x.png b/Skins/- Seoul v11 Asta Edit/menu-back-6@2x.png new file mode 100644 index 00000000..dc5e9fdb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f2c707e3a57e593f660e16baeb163b0dad972ee6ba347afa5cba67d8c0f453 +size 152184 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-7.png b/Skins/- Seoul v11 Asta Edit/menu-back-7.png new file mode 100644 index 00000000..a777d14d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99696c58edec8ef167f2f77343d3c7968d4a43968a0ec4cdc4a55215d44e4f03 +size 45876 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-7@2x.png b/Skins/- Seoul v11 Asta Edit/menu-back-7@2x.png new file mode 100644 index 00000000..cf085c3f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377b0bb51fe164bb47d2f3e4fc4857a0ea2d0e5bcb41fc3f3305425310b37a85 +size 151575 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-8.png b/Skins/- Seoul v11 Asta Edit/menu-back-8.png new file mode 100644 index 00000000..46ba3f9f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:669e0f1bfcaf6fd9b6c3e6a5ec1e29b46740882f222b4d76eeff88c9978981d1 +size 41354 diff --git a/Skins/- Seoul v11 Asta Edit/menu-back-8@2x.png b/Skins/- Seoul v11 Asta Edit/menu-back-8@2x.png new file mode 100644 index 00000000..c8f1e631 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-back-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2250777e105b9d626b081da692765bc84ec288061ca75e918f25ccdc6f66a2bd +size 142352 diff --git a/Skins/- Seoul v11 Asta Edit/menu-background.jpg b/Skins/- Seoul v11 Asta Edit/menu-background.jpg new file mode 100644 index 00000000..3197ec59 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6263bf6f6ddad75d89e5ea85c6bdf6cb073a229135b50dfca812d9cf84fd05f +size 4741923 diff --git a/Skins/- Seoul v11 Asta Edit/menu-button-background.png b/Skins/- Seoul v11 Asta Edit/menu-button-background.png new file mode 100644 index 00000000..b6fe76a2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce0c7fc62ead7d23acf4dd759a26e41a08621383deaea7df2f7f85bfad2de964 +size 101409 diff --git a/Skins/- Seoul v11 Asta Edit/menu-button-background@2x.png b/Skins/- Seoul v11 Asta Edit/menu-button-background@2x.png new file mode 100644 index 00000000..bc13e200 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f47d5942a6e791961fae17d0ea01f0f670b412c8338f4f5f335a8097d2030572 +size 427231 diff --git a/Skins/- Seoul v11 Asta Edit/menu-snow.png b/Skins/- Seoul v11 Asta Edit/menu-snow.png new file mode 100644 index 00000000..d32d1064 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b8bf6dc28c8057234c5d858a9b011f7d9fe2592327ffb331d862a225bef838 +size 2221 diff --git a/Skins/- Seoul v11 Asta Edit/menu-snow@2x.png b/Skins/- Seoul v11 Asta Edit/menu-snow@2x.png new file mode 100644 index 00000000..716d6bd7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menu-snow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523d8678c485f19da053293d0e1d271f9812714d1d40993c184b8e71bc159730 +size 4830 diff --git a/Skins/- Seoul v11 Asta Edit/menuback.wav b/Skins/- Seoul v11 Asta Edit/menuback.wav new file mode 100644 index 00000000..e86ffda4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161d093f692794dfea6b1c01e53dea34c657f290739954519c9fca78fe20779b +size 178510 diff --git a/Skins/- Seoul v11 Asta Edit/menuclick.wav b/Skins/- Seoul v11 Asta Edit/menuclick.wav new file mode 100644 index 00000000..39eba0bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b20ee3218ef95a0937f207663684bf05450810771d3d9893f284dae63521670 +size 5560 diff --git a/Skins/- Seoul v11 Asta Edit/menuhit.wav b/Skins/- Seoul v11 Asta Edit/menuhit.wav new file mode 100644 index 00000000..4ab891f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58777283660650f950bdd6ea2e28dff829743782099cff6a2237527e820e3dd5 +size 91918 diff --git a/Skins/- Seoul v11 Asta Edit/metronomehigh.wav b/Skins/- Seoul v11 Asta Edit/metronomehigh.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/metronomehigh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/- Seoul v11 Asta Edit/metronomelow.wav b/Skins/- Seoul v11 Asta Edit/metronomelow.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/metronomelow.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/- Seoul v11 Asta Edit/mode-fruits-med.png b/Skins/- Seoul v11 Asta Edit/mode-fruits-med.png new file mode 100644 index 00000000..548b10d7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-fruits-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b8b6eae868382b25fdf61b25ebf970f10a9ea3069562829b00c7b356f3f6460 +size 3266 diff --git a/Skins/- Seoul v11 Asta Edit/mode-fruits-med@2x.png b/Skins/- Seoul v11 Asta Edit/mode-fruits-med@2x.png new file mode 100644 index 00000000..70b3f135 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-fruits-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:353f26e8d135ddf77c1dc4e9c5b2af0a24590a600cb7e9e8041e9e160dca6e6e +size 9906 diff --git a/Skins/- Seoul v11 Asta Edit/mode-fruits-small.png b/Skins/- Seoul v11 Asta Edit/mode-fruits-small.png new file mode 100644 index 00000000..d2ac0f32 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-fruits-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd9dd3ab2ae7ab3a4cf06f1e40dea8e371b956d56f7bbecaccd14c8196f2e3f +size 133 diff --git a/Skins/- Seoul v11 Asta Edit/mode-fruits.png b/Skins/- Seoul v11 Asta Edit/mode-fruits.png new file mode 100644 index 00000000..51ddbc06 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-fruits.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70344a9cc013d0c555b03066c006675c03db693bf2a2c35186faa6f82bcce3ed +size 11231 diff --git a/Skins/- Seoul v11 Asta Edit/mode-fruits@2x.png b/Skins/- Seoul v11 Asta Edit/mode-fruits@2x.png new file mode 100644 index 00000000..670f4a95 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-fruits@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dabb41f34f3c3c2e7b11804c129155d36149480e9ecf930eed70723b5959688 +size 21102 diff --git a/Skins/- Seoul v11 Asta Edit/mode-mania-med.png b/Skins/- Seoul v11 Asta Edit/mode-mania-med.png new file mode 100644 index 00000000..69db9c0e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-mania-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72710199692fdcf4d16910f5f985cb7b904c7173241e476d07ea85ea41763250 +size 3267 diff --git a/Skins/- Seoul v11 Asta Edit/mode-mania-med@2x.png b/Skins/- Seoul v11 Asta Edit/mode-mania-med@2x.png new file mode 100644 index 00000000..b3540e05 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-mania-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaab4ccb3048848701d18afa3b2acc27eb90f7db4f40860c0c27f7732c9f3387 +size 9906 diff --git a/Skins/- Seoul v11 Asta Edit/mode-mania-small.png b/Skins/- Seoul v11 Asta Edit/mode-mania-small.png new file mode 100644 index 00000000..d2ac0f32 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-mania-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd9dd3ab2ae7ab3a4cf06f1e40dea8e371b956d56f7bbecaccd14c8196f2e3f +size 133 diff --git a/Skins/- Seoul v11 Asta Edit/mode-mania.png b/Skins/- Seoul v11 Asta Edit/mode-mania.png new file mode 100644 index 00000000..51ddbc06 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-mania.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70344a9cc013d0c555b03066c006675c03db693bf2a2c35186faa6f82bcce3ed +size 11231 diff --git a/Skins/- Seoul v11 Asta Edit/mode-mania@2x.png b/Skins/- Seoul v11 Asta Edit/mode-mania@2x.png new file mode 100644 index 00000000..670f4a95 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-mania@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dabb41f34f3c3c2e7b11804c129155d36149480e9ecf930eed70723b5959688 +size 21102 diff --git a/Skins/- Seoul v11 Asta Edit/mode-osu-med.png b/Skins/- Seoul v11 Asta Edit/mode-osu-med.png new file mode 100644 index 00000000..eda97573 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-osu-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:352c27848d0aff4728040224abaff1e7f3d6f5969d2f14f8f90c9da6d51c44eb +size 2200281 diff --git a/Skins/- Seoul v11 Asta Edit/mode-osu-med@2x.png b/Skins/- Seoul v11 Asta Edit/mode-osu-med@2x.png new file mode 100644 index 00000000..1d27691f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-osu-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2c772cca8bc99011c255a064646b7889e6baaf15562fa77f22e86625d17520 +size 7155051 diff --git a/Skins/- Seoul v11 Asta Edit/mode-osu-small.png b/Skins/- Seoul v11 Asta Edit/mode-osu-small.png new file mode 100644 index 00000000..edae5024 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45bf02509a8ae908a55b0cb3b4d86d284369e06909ddcde3c3db4edef0404903 +size 353500 diff --git a/Skins/- Seoul v11 Asta Edit/mode-osu-small@2x.png b/Skins/- Seoul v11 Asta Edit/mode-osu-small@2x.png new file mode 100644 index 00000000..c6b84fb6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c651a97845c571bf4b5638874beaf2f126026f2e8537cc1e6d227ab561471a2e +size 1265642 diff --git a/Skins/- Seoul v11 Asta Edit/mode-osu.png b/Skins/- Seoul v11 Asta Edit/mode-osu.png new file mode 100644 index 00000000..d3335dcc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3776afbde8c62173719cf2fbdbb4514fc5034bb57c3ec6b1eb24a27377120f24 +size 11231 diff --git a/Skins/- Seoul v11 Asta Edit/mode-osu@2x.png b/Skins/- Seoul v11 Asta Edit/mode-osu@2x.png new file mode 100644 index 00000000..670f4a95 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-osu@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dabb41f34f3c3c2e7b11804c129155d36149480e9ecf930eed70723b5959688 +size 21102 diff --git a/Skins/- Seoul v11 Asta Edit/mode-taiko-med.png b/Skins/- Seoul v11 Asta Edit/mode-taiko-med.png new file mode 100644 index 00000000..a29ca9e2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-taiko-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ad026b0361967b7fc8b74dbebd9012dd761f21301e0a104260994fee0559b6 +size 3265 diff --git a/Skins/- Seoul v11 Asta Edit/mode-taiko-med@2x.png b/Skins/- Seoul v11 Asta Edit/mode-taiko-med@2x.png new file mode 100644 index 00000000..155c793f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-taiko-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c855486f355e75b99cd9818f49e328156bd40c53cc63e866ae975aa806f487 +size 9906 diff --git a/Skins/- Seoul v11 Asta Edit/mode-taiko-small.png b/Skins/- Seoul v11 Asta Edit/mode-taiko-small.png new file mode 100644 index 00000000..d2ac0f32 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-taiko-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd9dd3ab2ae7ab3a4cf06f1e40dea8e371b956d56f7bbecaccd14c8196f2e3f +size 133 diff --git a/Skins/- Seoul v11 Asta Edit/mode-taiko.png b/Skins/- Seoul v11 Asta Edit/mode-taiko.png new file mode 100644 index 00000000..d3335dcc --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3776afbde8c62173719cf2fbdbb4514fc5034bb57c3ec6b1eb24a27377120f24 +size 11231 diff --git a/Skins/- Seoul v11 Asta Edit/mode-taiko@2x.png b/Skins/- Seoul v11 Asta Edit/mode-taiko@2x.png new file mode 100644 index 00000000..670f4a95 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/mode-taiko@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dabb41f34f3c3c2e7b11804c129155d36149480e9ecf930eed70723b5959688 +size 21102 diff --git a/Skins/- Seoul v11 Asta Edit/multi-skipped.png b/Skins/- Seoul v11 Asta Edit/multi-skipped.png new file mode 100644 index 00000000..02ddc2d4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/multi-skipped.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:274fb4e31ddbcbaf65ef91dcb08837b74142ec42026b0056ec2f6d7aca10d5af +size 2480 diff --git a/Skins/- Seoul v11 Asta Edit/multi-skipped@2x.png b/Skins/- Seoul v11 Asta Edit/multi-skipped@2x.png new file mode 100644 index 00000000..098904d8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/multi-skipped@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258bce19733db4bb5ec9d54e63078ee2c5003ae06ab561d7decc4700bbe90341 +size 3491 diff --git a/Skins/- Seoul v11 Asta Edit/nightcore-clap.wav b/Skins/- Seoul v11 Asta Edit/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/nightcore-finish.wav b/Skins/- Seoul v11 Asta Edit/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/nightcore-hat.wav b/Skins/- Seoul v11 Asta Edit/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/nightcore-kick.wav b/Skins/- Seoul v11 Asta Edit/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/normal-hitclap.ogg b/Skins/- Seoul v11 Asta Edit/normal-hitclap.ogg new file mode 100644 index 00000000..7ea48397 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484019aa9a7658a17d3f20604fad0b74619d44f012517fb4997f8e683d40fc01 +size 6355 diff --git a/Skins/- Seoul v11 Asta Edit/normal-hitclap.wav b/Skins/- Seoul v11 Asta Edit/normal-hitclap.wav new file mode 100644 index 00000000..44db7324 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6f08efde686ab3613bdfacc31148253e77864e715ddf18cc6f7030d5d10c4f +size 18220 diff --git a/Skins/- Seoul v11 Asta Edit/normal-hitfinish.ogg b/Skins/- Seoul v11 Asta Edit/normal-hitfinish.ogg new file mode 100644 index 00000000..bdfacecd --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a23ac7661ed7a255878edbb7f69ffd9946386acd077c5a70fdf602eca2f08a +size 7362 diff --git a/Skins/- Seoul v11 Asta Edit/normal-hitfinish.wav b/Skins/- Seoul v11 Asta Edit/normal-hitfinish.wav new file mode 100644 index 00000000..a99486ac --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b295ebe9dd9402dc54c8c939a4327d3465a3c8fb3ecb68dd749cab9ca3cb05d +size 24784 diff --git a/Skins/- Seoul v11 Asta Edit/normal-hitnormal.ogg b/Skins/- Seoul v11 Asta Edit/normal-hitnormal.ogg new file mode 100644 index 00000000..be24f799 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e71ffc3876bcd0eab8a158a41fe227b3686f6f148121fbb6c4d73539c0579b0 +size 7561 diff --git a/Skins/- Seoul v11 Asta Edit/normal-hitnormal.wav b/Skins/- Seoul v11 Asta Edit/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- Seoul v11 Asta Edit/normal-hitwhistle.ogg b/Skins/- Seoul v11 Asta Edit/normal-hitwhistle.ogg new file mode 100644 index 00000000..ad704fd3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b363e74cdc94580f9112347071c25b07371ddaf3d8ad0108555125d6b036358d +size 6531 diff --git a/Skins/- Seoul v11 Asta Edit/normal-hitwhistle.wav b/Skins/- Seoul v11 Asta Edit/normal-hitwhistle.wav new file mode 100644 index 00000000..3b36d65f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7efc01b850681a10290be87c91c806635af7055e9390c9d900d363246d4ba2d5 +size 141068 diff --git a/Skins/- Seoul v11 Asta Edit/normal-sliderslide.wav b/Skins/- Seoul v11 Asta Edit/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/normal-slidertick.wav b/Skins/- Seoul v11 Asta Edit/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/- Seoul v11 Asta Edit/normal-sliderwhistle.wav b/Skins/- Seoul v11 Asta Edit/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/pause-back-click.wav b/Skins/- Seoul v11 Asta Edit/pause-back-click.wav new file mode 100644 index 00000000..e86ffda4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-back-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161d093f692794dfea6b1c01e53dea34c657f290739954519c9fca78fe20779b +size 178510 diff --git a/Skins/- Seoul v11 Asta Edit/pause-back.png b/Skins/- Seoul v11 Asta Edit/pause-back.png new file mode 100644 index 00000000..4749520e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52097cf2cdacf80c0dac39a75436c1f44710cd6cd6a8012884fe7426ff569918 +size 32283 diff --git a/Skins/- Seoul v11 Asta Edit/pause-back@2x.png b/Skins/- Seoul v11 Asta Edit/pause-back@2x.png new file mode 100644 index 00000000..d666a82d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b4bcf07aabde8ac3342b76d1c667ae8db7d177aa03f6449a2e2432a93c50e5 +size 127798 diff --git a/Skins/- Seoul v11 Asta Edit/pause-continue-click.wav b/Skins/- Seoul v11 Asta Edit/pause-continue-click.wav new file mode 100644 index 00000000..4ab891f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-continue-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58777283660650f950bdd6ea2e28dff829743782099cff6a2237527e820e3dd5 +size 91918 diff --git a/Skins/- Seoul v11 Asta Edit/pause-continue.png b/Skins/- Seoul v11 Asta Edit/pause-continue.png new file mode 100644 index 00000000..8dcc7453 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d4c74983e45d38fa2bb17d9ba520e2942a18b4209b9ec98696b24e16f932fd +size 33776 diff --git a/Skins/- Seoul v11 Asta Edit/pause-continue@2x.png b/Skins/- Seoul v11 Asta Edit/pause-continue@2x.png new file mode 100644 index 00000000..5863ae70 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85be692a874bbaa57bd24cecb10390041c34e0524c06314685532df751c798f7 +size 143235 diff --git a/Skins/- Seoul v11 Asta Edit/pause-hover.wav b/Skins/- Seoul v11 Asta Edit/pause-hover.wav new file mode 100644 index 00000000..39eba0bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b20ee3218ef95a0937f207663684bf05450810771d3d9893f284dae63521670 +size 5560 diff --git a/Skins/- Seoul v11 Asta Edit/pause-loop.ogg b/Skins/- Seoul v11 Asta Edit/pause-loop.ogg new file mode 100644 index 00000000..111d6ba5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-loop.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77ff95407f0116cd8cd47bc807fdb9e635b5d03b4e9273b997e25ceb407cb17 +size 5148428 diff --git a/Skins/- Seoul v11 Asta Edit/pause-overlay.png b/Skins/- Seoul v11 Asta Edit/pause-overlay.png new file mode 100644 index 00000000..1623256d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8dec909c0ca129bcc5417e63af64f80130fb405a0dc265707300b57d1dcd42 +size 1670115 diff --git a/Skins/- Seoul v11 Asta Edit/pause-overlay@2x.png b/Skins/- Seoul v11 Asta Edit/pause-overlay@2x.png new file mode 100644 index 00000000..9b205462 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9735d2d261aac8bacf57f568fff2baf3f33bdf9641463bad5f5de127fc1c6c14 +size 5851256 diff --git a/Skins/- Seoul v11 Asta Edit/pause-replay.png b/Skins/- Seoul v11 Asta Edit/pause-replay.png new file mode 100644 index 00000000..c2c75697 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b957de92f0c75c2f85c98db248f6893595980a131f08eba2883727f29adead2 +size 18824 diff --git a/Skins/- Seoul v11 Asta Edit/pause-replay@2x.png b/Skins/- Seoul v11 Asta Edit/pause-replay@2x.png new file mode 100644 index 00000000..aa6f6003 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b40b9a5f5b4e60c790604f656bedfae3b703433805a686aa1603ff382038f3 +size 52955 diff --git a/Skins/- Seoul v11 Asta Edit/pause-retry-click.wav b/Skins/- Seoul v11 Asta Edit/pause-retry-click.wav new file mode 100644 index 00000000..4ab891f2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-retry-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58777283660650f950bdd6ea2e28dff829743782099cff6a2237527e820e3dd5 +size 91918 diff --git a/Skins/- Seoul v11 Asta Edit/pause-retry.png b/Skins/- Seoul v11 Asta Edit/pause-retry.png new file mode 100644 index 00000000..f54c2f5b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75795ab5b6b20cb56ced6bedece4393284bafbf9d67671b7d0a1a72a1715712 +size 33192 diff --git a/Skins/- Seoul v11 Asta Edit/pause-retry@2x.png b/Skins/- Seoul v11 Asta Edit/pause-retry@2x.png new file mode 100644 index 00000000..4ff1c7f6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87db427b69d70d6ad16c847843f5719fd2a240d0a403c3d51e67fc0600fcf26f +size 146365 diff --git a/Skins/- Seoul v11 Asta Edit/pippidonclear0.png b/Skins/- Seoul v11 Asta Edit/pippidonclear0.png new file mode 100644 index 00000000..19575853 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pippidonclear0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a9755f93ec5ace7a9f95ab91ca3aa2b7b431b596fb79f97138b73d015ebb92 +size 15935 diff --git a/Skins/- Seoul v11 Asta Edit/pippidonfail0.png b/Skins/- Seoul v11 Asta Edit/pippidonfail0.png new file mode 100644 index 00000000..eb73ec8a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pippidonfail0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d46435c9e57a95b8e696cc5ce5b30e483b6e395eb35aea1cf39ba0f4844f9fad +size 33548 diff --git a/Skins/- Seoul v11 Asta Edit/pippidonidle0.png b/Skins/- Seoul v11 Asta Edit/pippidonidle0.png new file mode 100644 index 00000000..4360b973 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pippidonidle0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6bd3df48fcbd9068f8adad8c80157b9973a3fb11a59975be59ded8f60a47b7c +size 33388 diff --git a/Skins/- Seoul v11 Asta Edit/pippidonkiai0.png b/Skins/- Seoul v11 Asta Edit/pippidonkiai0.png new file mode 100644 index 00000000..4c1ac164 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/pippidonkiai0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c496165a750469274366c61669baa5d99d7db28b0428021f8a1f55b96c6e408 +size 16763 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-0.png b/Skins/- Seoul v11 Asta Edit/play-skip-0.png new file mode 100644 index 00000000..457baa85 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a77e62d4da691a21676d08cfc6b69c62f8ba3c720fee234f1355678e44f1973 +size 125856 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-0@2x.png b/Skins/- Seoul v11 Asta Edit/play-skip-0@2x.png new file mode 100644 index 00000000..8d374283 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff13aeeb75052baaedd3fda636ea68fcdf31756cdae92b186a3649235f0976d8 +size 465206 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-1.png b/Skins/- Seoul v11 Asta Edit/play-skip-1.png new file mode 100644 index 00000000..54a35488 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cad979ce751d52d08fdf508da5ac9c69ad36119f8081fc289c1d8f8c5b81883 +size 128253 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-1@2x.png b/Skins/- Seoul v11 Asta Edit/play-skip-1@2x.png new file mode 100644 index 00000000..55fdc219 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0e53edda5691736a3da31c800b034fac22c57a331d7146327601618fe489a23 +size 478545 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-2.png b/Skins/- Seoul v11 Asta Edit/play-skip-2.png new file mode 100644 index 00000000..db0da7ca --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87d0a19fdbdaf8a35872e4fc4667166928eb50e0e637b53a2d1d667a1ec7e43 +size 125594 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-2@2x.png b/Skins/- Seoul v11 Asta Edit/play-skip-2@2x.png new file mode 100644 index 00000000..549e93d9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4037165e53d64cf0a4c23b2dbbb38949d91f56b6509914f866a1f0043c8d78aa +size 471320 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-3.png b/Skins/- Seoul v11 Asta Edit/play-skip-3.png new file mode 100644 index 00000000..cd260a70 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73c45dd4ca356c0232ecb2cd4dd76372da0de1bad81835a89af2fd915da1da8 +size 125599 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-3@2x.png b/Skins/- Seoul v11 Asta Edit/play-skip-3@2x.png new file mode 100644 index 00000000..08ff127f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685fe3e7612c8f6f0761d92ec289ff1787da4aa2943c24c9243b499ded156baf +size 471534 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-4.png b/Skins/- Seoul v11 Asta Edit/play-skip-4.png new file mode 100644 index 00000000..f9557b50 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402b6fe338f16f9b68b374b9aab9063e7e37422bb980829764e79fff60c89c64 +size 128252 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-4@2x.png b/Skins/- Seoul v11 Asta Edit/play-skip-4@2x.png new file mode 100644 index 00000000..d5bf7e63 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12ea28b8f499b58d48ce4614971e2452096d85002feb58c9d151d0c6dbf1f33 +size 479422 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-5.png b/Skins/- Seoul v11 Asta Edit/play-skip-5.png new file mode 100644 index 00000000..7fa5cc1d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8331e5ce15c0ca59ac25572b67a1cbd318d5c668797d893829b62fb244ea45 +size 128696 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-5@2x.png b/Skins/- Seoul v11 Asta Edit/play-skip-5@2x.png new file mode 100644 index 00000000..186d00cb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65797bc24a9fa647f29e998ba4e3f609746ce70eab277b9b361728f073a1a246 +size 484523 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-6.png b/Skins/- Seoul v11 Asta Edit/play-skip-6.png new file mode 100644 index 00000000..ccc028d3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787a7986e8799076f61cbccfc1846a4e92f9b6a53575976fabd0db59d5048e61 +size 128974 diff --git a/Skins/- Seoul v11 Asta Edit/play-skip-6@2x.png b/Skins/- Seoul v11 Asta Edit/play-skip-6@2x.png new file mode 100644 index 00000000..9d55a400 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-skip-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b49e753997123780ca08c6391d78d922ffc00db0c7f4e78668b722ad748cab +size 484046 diff --git a/Skins/- Seoul v11 Asta Edit/play-unranked.png b/Skins/- Seoul v11 Asta Edit/play-unranked.png new file mode 100644 index 00000000..480b116c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277ec7345895445acd2b682b5fb5a9e9edde12f7e1b45de7a00252e6b125b46c +size 5058 diff --git a/Skins/- Seoul v11 Asta Edit/play-unranked@2x.png b/Skins/- Seoul v11 Asta Edit/play-unranked@2x.png new file mode 100644 index 00000000..94b15acb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35144408edb240d8242baad08bf4dd3f452bafe64f57e325bbb993643eaea84 +size 8200 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-A-small.png b/Skins/- Seoul v11 Asta Edit/ranking-A-small.png new file mode 100644 index 00000000..dc654780 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30a01be9f9eac9f4dec1b4d3011a112b6fa0e38fdddeebcc574971937611714 +size 2054 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-A-small@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-A-small@2x.png new file mode 100644 index 00000000..809dbaf9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a7da6fc3bb5da44805406d568c634b6261bb0307fc706d3b25438ce3302c9c +size 3228 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-A.png b/Skins/- Seoul v11 Asta Edit/ranking-A.png new file mode 100644 index 00000000..1ec90975 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c144bd15b950df03efaad5ee0497fb6e23c0c7912b1ec4b00954e2a3bdff8c +size 61267 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-A@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-A@2x.png new file mode 100644 index 00000000..60581f25 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4359907f0a588ed03550d3b0800804c5064e560ebd65cc2ad2e82859da801f73 +size 211944 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-B-small.png b/Skins/- Seoul v11 Asta Edit/ranking-B-small.png new file mode 100644 index 00000000..36f31374 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3234df4941afbf3e3962ad10a78e48015154eea69e9188048a3ae565d2ae53c4 +size 2071 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-B-small@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-B-small@2x.png new file mode 100644 index 00000000..d85f272c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb2374e56222b7518b9d515961660ed3db169d29768a0226108acdb8cd0e90d +size 3578 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-B.png b/Skins/- Seoul v11 Asta Edit/ranking-B.png new file mode 100644 index 00000000..45b52f4c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c45457ed2d2d0095e55b5ac183d2fe4e4405785c34c6dc639619c472daf1f00 +size 58028 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-B@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-B@2x.png new file mode 100644 index 00000000..3e5d4638 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1dfffcbe39c387578384aba75e19446cd3f16221e056e6cef1906d3b77a1518 +size 201511 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-C-small.png b/Skins/- Seoul v11 Asta Edit/ranking-C-small.png new file mode 100644 index 00000000..ee856dc6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08cb1bc82fd1f1e0fdcd0ed189ea5c7c2a9ef8953c345cc7904f25ba37a72d4 +size 1824 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-C-small@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-C-small@2x.png new file mode 100644 index 00000000..b37049c3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac5b32541cd62facdd62fe1aa091b93823e6ec5a44326a7f6f7896d098b814d +size 3314 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-C.png b/Skins/- Seoul v11 Asta Edit/ranking-C.png new file mode 100644 index 00000000..12feea8c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ccaf922cb997ac535650b02e8dd6b47dba4a160d4840d87caa0b240a605c89 +size 57270 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-C@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-C@2x.png new file mode 100644 index 00000000..f25fd7d9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea39afa880913756e3b13d7d89696329a6ddc150e6f0d077aada4b2c3571d95 +size 203178 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-D-small.png b/Skins/- Seoul v11 Asta Edit/ranking-D-small.png new file mode 100644 index 00000000..cd3e9938 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c2603e4a36e1e33acd833938242f2ae7b3f20cd8ae8a91ddf74e812c7bfd7e +size 2287 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-D-small@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-D-small@2x.png new file mode 100644 index 00000000..876f6331 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212550b1f6e879e3d086c3a981c7b4b98e27c05a7d8878cb2cc226311f3a89ff +size 3877 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-D.png b/Skins/- Seoul v11 Asta Edit/ranking-D.png new file mode 100644 index 00000000..4d3bc212 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59235057414e7c340112f7277640c6a35f9570f9fcba8ce539ee12877e147dd3 +size 53468 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-D@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-D@2x.png new file mode 100644 index 00000000..a4f2fe4f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a116d6325c35d5800831978996ee0cdd397d7c3f6bfe824e302ac4d9371414bf +size 182311 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-S-small.png b/Skins/- Seoul v11 Asta Edit/ranking-S-small.png new file mode 100644 index 00000000..c42aaaba --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4067921d060c3f8e12cda921c8ca2192140745c2eb5614ba1645da3e9472e5c +size 1914 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-S-small@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-S-small@2x.png new file mode 100644 index 00000000..50f3b739 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674a6956776c40febfa51d5356b6d22c56f132b539d1348d8ddc3121cfcd0da2 +size 3623 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-S.png b/Skins/- Seoul v11 Asta Edit/ranking-S.png new file mode 100644 index 00000000..096266e1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a803622301e0561d7a8a929a19ccb15588d440c8b56d47faccb3bc24c2a077 +size 62705 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-S@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-S@2x.png new file mode 100644 index 00000000..d73d5e14 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d6b0165019d07d61095cd65a6fecca17ccb4c7f2db41f94bc0dcdbeda9f3ff +size 214956 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-SH-small.png b/Skins/- Seoul v11 Asta Edit/ranking-SH-small.png new file mode 100644 index 00000000..533d781d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc1adb2251de626533717b90b6ee7080479beb2fdeabff798ab522941296d2e +size 2218 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-SH-small@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-SH-small@2x.png new file mode 100644 index 00000000..43751c6d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0cd53e9bba24f4c09c3bc9b30c22499ab2f9d82636f5ca9ba6952426a7bab8 +size 4162 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-SH.png b/Skins/- Seoul v11 Asta Edit/ranking-SH.png new file mode 100644 index 00000000..6729824c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84195976f751d1922e3ccb9e02800306fcfe2e35b252a63917cf606eb1688853 +size 64235 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-SH@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-SH@2x.png new file mode 100644 index 00000000..7a89a895 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3992c51b6f82af0690672e9742108ea7dadb3f51df635dd80c72a3fcdce69ae +size 219030 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-X-small.png b/Skins/- Seoul v11 Asta Edit/ranking-X-small.png new file mode 100644 index 00000000..19827597 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcb239151ed1dd05f401b75bbcafb47a108d3ec632f266d08a8e884599caa25 +size 2984 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-X-small@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-X-small@2x.png new file mode 100644 index 00000000..3d3ceb91 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5abab3cec316982186f82d24111d7bea0ee81ed561b093deac40f119bf9b20 +size 4846 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-X.png b/Skins/- Seoul v11 Asta Edit/ranking-X.png new file mode 100644 index 00000000..02548e64 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9fc68eae943555fdbfc3e20eeb2a68ce6ea406418472249459f5ed91806c4c +size 56242 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-X@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-X@2x.png new file mode 100644 index 00000000..d759e582 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ac74be4698819cb6c4b1daa16f42723b0d009b10c18cc2e26c1ea4f2658c1f +size 184076 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-XH-small.png b/Skins/- Seoul v11 Asta Edit/ranking-XH-small.png new file mode 100644 index 00000000..6fbf06e7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f00725ced95637e9d2b754463960db37136683ca753156920de08c083724e4 +size 3444 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-XH-small@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-XH-small@2x.png new file mode 100644 index 00000000..19672c73 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e43bc3fbb8bf20b5b2883e7d43c6785538dade5681c42bd157dc40fd569eb5 +size 5523 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-XH.png b/Skins/- Seoul v11 Asta Edit/ranking-XH.png new file mode 100644 index 00000000..6ecdf242 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc813db02a54e4464e61beac749ace3995137fb04975ba081712b093151201df +size 108767 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-XH@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-XH@2x.png new file mode 100644 index 00000000..b4faf8ff --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07feeb51038893b8eabd5a246fe32d7853b60a4247199759881bb5b891d4cbd5 +size 327483 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-accuracy.png b/Skins/- Seoul v11 Asta Edit/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-graph.png b/Skins/- Seoul v11 Asta Edit/ranking-graph.png new file mode 100644 index 00000000..6816b03b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5bd72749af2225e35855bd0604d39f4cc84a89e0029240728e429aab2f8ef8c +size 639 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-maxcombo.png b/Skins/- Seoul v11 Asta Edit/ranking-maxcombo.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-panel.png b/Skins/- Seoul v11 Asta Edit/ranking-panel.png new file mode 100644 index 00000000..97fa5c4e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32226ffaedc5a6a8f639f151a12dc13c83b5e6d21dbea06054859089eb83a6ab +size 2948876 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-panel@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-panel@2x.png new file mode 100644 index 00000000..ad4ae1c5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fcb66d13ff8970029fb4352409a62de021b1ee2e9dcab82171c9265ab368a9e +size 8771366 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-perfect.png b/Skins/- Seoul v11 Asta Edit/ranking-perfect.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-retry.png b/Skins/- Seoul v11 Asta Edit/ranking-retry.png new file mode 100644 index 00000000..fa75a1d2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188a9d980964cb4b164a32eac799838b0d4763af3c4f0e422dbf54158ec91026 +size 18207 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-retry@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-retry@2x.png new file mode 100644 index 00000000..5f49a63c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be78bee92b0420afc798e93c1f7fd1fbc05574647789d3efaba3eae53bd08c92 +size 52256 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-title.png b/Skins/- Seoul v11 Asta Edit/ranking-title.png new file mode 100644 index 00000000..f6b6be48 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5af2e60c3db61ff0edfa87b7151ce80ab6355124af24a4dad02817bf9fd6bc +size 89770 diff --git a/Skins/- Seoul v11 Asta Edit/ranking-title@2x.png b/Skins/- Seoul v11 Asta Edit/ranking-title@2x.png new file mode 100644 index 00000000..36b993ca --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ranking-title@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b4e4e3f9b6fe8b1bfd0cac1827cc134c775de67b38602f3e354041eca8d91f +size 429360 diff --git a/Skins/- Seoul v11 Asta Edit/ready.png b/Skins/- Seoul v11 Asta Edit/ready.png new file mode 100644 index 00000000..81da3589 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fe05e736f688831e0169b31ab09819f9ed3d08c33355a4e218d087392405d3 +size 31146 diff --git a/Skins/- Seoul v11 Asta Edit/ready.wav b/Skins/- Seoul v11 Asta Edit/ready.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/ready@2x.png b/Skins/- Seoul v11 Asta Edit/ready@2x.png new file mode 100644 index 00000000..063ce283 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/ready@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8684fe2604c67ee6db4f73c414a80485af9c246d99f95a91babe48f6835b50ac +size 119909 diff --git a/Skins/- Seoul v11 Asta Edit/reversearrow.png b/Skins/- Seoul v11 Asta Edit/reversearrow.png new file mode 100644 index 00000000..e6ea3310 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405cf5ae64ec82bdbbcd63e6806197ffff68376c33d91e7633e57a41233e03a3 +size 2454 diff --git a/Skins/- Seoul v11 Asta Edit/score-0.png b/Skins/- Seoul v11 Asta Edit/score-0.png new file mode 100644 index 00000000..072e580e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f18a9faa7131816beb019dcb89d05a22ef96f01c1fe58f2206fdedb55ee96f +size 1264 diff --git a/Skins/- Seoul v11 Asta Edit/score-0@2x.png b/Skins/- Seoul v11 Asta Edit/score-0@2x.png new file mode 100644 index 00000000..36c0054d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14c90bb84b7d81a5c327bbb67390b94889321ad30ea24f195aee9194be6b382 +size 2697 diff --git a/Skins/- Seoul v11 Asta Edit/score-1.png b/Skins/- Seoul v11 Asta Edit/score-1.png new file mode 100644 index 00000000..87e72417 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a23ecfb1b8c65981c95fb3c6d1540ee5981a0e5f5073ce0d88729b7a08beae4 +size 787 diff --git a/Skins/- Seoul v11 Asta Edit/score-1@2x.png b/Skins/- Seoul v11 Asta Edit/score-1@2x.png new file mode 100644 index 00000000..4cae69e8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba4a9c26e6dd1e15c775300000338d5949b36eeae6d5ec1fc998384f4e8a8a1 +size 1219 diff --git a/Skins/- Seoul v11 Asta Edit/score-2.png b/Skins/- Seoul v11 Asta Edit/score-2.png new file mode 100644 index 00000000..f8911db0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8ce96e5b97a2f215021d3b119601fbeceb895d9d746903116d1506fa0013362 +size 1196 diff --git a/Skins/- Seoul v11 Asta Edit/score-2@2x.png b/Skins/- Seoul v11 Asta Edit/score-2@2x.png new file mode 100644 index 00000000..07d7888a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c86c3d6aff2f0ba734de32bc42035b1596922f4e9d4542edd715f9ef78c9f1 +size 2521 diff --git a/Skins/- Seoul v11 Asta Edit/score-3.png b/Skins/- Seoul v11 Asta Edit/score-3.png new file mode 100644 index 00000000..cd9760e8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a408bfd1de509c30d95c60b70f2709b52588e98ee7ebf44c946578ac7e62029 +size 1140 diff --git a/Skins/- Seoul v11 Asta Edit/score-3@2x.png b/Skins/- Seoul v11 Asta Edit/score-3@2x.png new file mode 100644 index 00000000..1e1c2534 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02204ed60486c8228144c6621dc437438ee2970a76cf8ec50b39967a3970d85b +size 2479 diff --git a/Skins/- Seoul v11 Asta Edit/score-4.png b/Skins/- Seoul v11 Asta Edit/score-4.png new file mode 100644 index 00000000..f7c4d637 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f94130c3312b30122646b6bddef6e1b34e89c13d9b45102d8afbda0043533b +size 1024 diff --git a/Skins/- Seoul v11 Asta Edit/score-4@2x.png b/Skins/- Seoul v11 Asta Edit/score-4@2x.png new file mode 100644 index 00000000..a71ad605 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5452464d4cc59e986d3ff8743e28352477c0254433716d6b549dfacea5a467b9 +size 1968 diff --git a/Skins/- Seoul v11 Asta Edit/score-5.png b/Skins/- Seoul v11 Asta Edit/score-5.png new file mode 100644 index 00000000..8b6a6e58 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ef57c6c3ded33997c18d2b41374a67dbdc9682df2865b2281834e1b0263aa5 +size 1147 diff --git a/Skins/- Seoul v11 Asta Edit/score-5@2x.png b/Skins/- Seoul v11 Asta Edit/score-5@2x.png new file mode 100644 index 00000000..b79dda2d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae59699b55fc63621ed0f4b8a95fc2490d74da7c286cbf3d854f7ce88db97a77 +size 2368 diff --git a/Skins/- Seoul v11 Asta Edit/score-6.png b/Skins/- Seoul v11 Asta Edit/score-6.png new file mode 100644 index 00000000..5511ddea --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3113327689f452a5e4349fab69bdd2259cfe8c5f05e6cd91c2251b3b40a073c +size 1213 diff --git a/Skins/- Seoul v11 Asta Edit/score-6@2x.png b/Skins/- Seoul v11 Asta Edit/score-6@2x.png new file mode 100644 index 00000000..b910d6ec --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e9da9cf10ffafa37ac0fcd9281fa9cb38f982dffcc1eb84ea7d8b499538ca7 +size 2642 diff --git a/Skins/- Seoul v11 Asta Edit/score-7.png b/Skins/- Seoul v11 Asta Edit/score-7.png new file mode 100644 index 00000000..c6762939 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf00232e5d965d756acd8170574c5502327d9f88e319f7882893783b981e5e9 +size 910 diff --git a/Skins/- Seoul v11 Asta Edit/score-7@2x.png b/Skins/- Seoul v11 Asta Edit/score-7@2x.png new file mode 100644 index 00000000..a62b0294 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3f471b3edb3da60a080eb2ef6d52e44e526c419d3cc617b4f4cc9006a27554 +size 1390 diff --git a/Skins/- Seoul v11 Asta Edit/score-8.png b/Skins/- Seoul v11 Asta Edit/score-8.png new file mode 100644 index 00000000..0b75f772 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b6b8dccdc34af1b8a3dfda02100c530bf0e1f5f52f62031ffeaf0122f2dd5f7 +size 1267 diff --git a/Skins/- Seoul v11 Asta Edit/score-8@2x.png b/Skins/- Seoul v11 Asta Edit/score-8@2x.png new file mode 100644 index 00000000..1359944a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a65f8d615a0e7b3440fdca8e049c66fdb87de4ed0502b94dda96ab8a24adac4 +size 2772 diff --git a/Skins/- Seoul v11 Asta Edit/score-9.png b/Skins/- Seoul v11 Asta Edit/score-9.png new file mode 100644 index 00000000..7c422e7a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0519f130ef4128ca21b2a3083b52321f15761e1d6a09a216e59308d9bb5dc842 +size 1172 diff --git a/Skins/- Seoul v11 Asta Edit/score-9@2x.png b/Skins/- Seoul v11 Asta Edit/score-9@2x.png new file mode 100644 index 00000000..182acde0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a3b7145625cfcc58fab097d18fef6b9d208b0155a1664bf1f2798bbe6c1870 +size 2560 diff --git a/Skins/- Seoul v11 Asta Edit/score-comma.png b/Skins/- Seoul v11 Asta Edit/score-comma.png new file mode 100644 index 00000000..32839bb1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c557fab08508da0701bc4d27ed32abacd923428e8915a53e0b7d5bbeeb458a +size 573 diff --git a/Skins/- Seoul v11 Asta Edit/score-comma@2x.png b/Skins/- Seoul v11 Asta Edit/score-comma@2x.png new file mode 100644 index 00000000..cf8284ef --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdd7b4cee415a888e8433d4677ec788a8745c2959cb3c1e07f935b241d0259a +size 1033 diff --git a/Skins/- Seoul v11 Asta Edit/score-dot.png b/Skins/- Seoul v11 Asta Edit/score-dot.png new file mode 100644 index 00000000..32839bb1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c557fab08508da0701bc4d27ed32abacd923428e8915a53e0b7d5bbeeb458a +size 573 diff --git a/Skins/- Seoul v11 Asta Edit/score-dot@2x.png b/Skins/- Seoul v11 Asta Edit/score-dot@2x.png new file mode 100644 index 00000000..cf8284ef --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdd7b4cee415a888e8433d4677ec788a8745c2959cb3c1e07f935b241d0259a +size 1033 diff --git a/Skins/- Seoul v11 Asta Edit/score-percent.png b/Skins/- Seoul v11 Asta Edit/score-percent.png new file mode 100644 index 00000000..a0a41f18 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bee93698a858fef1b11b114415a566a7e61a4238fc9374b9d721f259a0460d +size 2370 diff --git a/Skins/- Seoul v11 Asta Edit/score-x.png b/Skins/- Seoul v11 Asta Edit/score-x.png new file mode 100644 index 00000000..7aa5a642 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5569904e81f32de059409c72b256180d2a2699c19bd87c7ac0b5641cccd6562f +size 1051 diff --git a/Skins/- Seoul v11 Asta Edit/score-x@2x.png b/Skins/- Seoul v11 Asta Edit/score-x@2x.png new file mode 100644 index 00000000..ba358341 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40b16434fc1c4664f6faf6007873bf055f5e49a918286c6757f6483baa4c861 +size 2873 diff --git a/Skins/- Seoul v11 Asta Edit/scorebar-bg.png b/Skins/- Seoul v11 Asta Edit/scorebar-bg.png new file mode 100644 index 00000000..733e6b81 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:845f30ccfc15b43dd401e244669c06e8ec7f193b6c31042a5cec5aaa994f1073 +size 4388 diff --git a/Skins/- Seoul v11 Asta Edit/scorebar-colour-0.png b/Skins/- Seoul v11 Asta Edit/scorebar-colour-0.png new file mode 100644 index 00000000..e65a50a3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scorebar-colour-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d006b06f9f5c2711aefb3ed241906d2e0793b5a6f3b879b4943aeaa3d6c87f84 +size 12524 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-0.png b/Skins/- Seoul v11 Asta Edit/scoreentry-0.png new file mode 100644 index 00000000..18775ea6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849fbe1e91257acbb6e8ed703fd333428bd171e360386e7c9d541e560cc05ce7 +size 753 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-0@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-0@2x.png new file mode 100644 index 00000000..4c498ce6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff80112d5a18f5aeb86b5bb43704cb2b9cd453f7411d418caa18cc0af7391153 +size 559 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-1.png b/Skins/- Seoul v11 Asta Edit/scoreentry-1.png new file mode 100644 index 00000000..7f922c50 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7669de132a70a6f78c9e51c606da55e3948c5a99bc23b175ce34b38c7ce8cca3 +size 505 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-1@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-1@2x.png new file mode 100644 index 00000000..b5bce844 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75137ef77625c2ec2ffa240f9509cb6e1ce6f2f6f0adf5e0a4552a1020331baf +size 218 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-2.png b/Skins/- Seoul v11 Asta Edit/scoreentry-2.png new file mode 100644 index 00000000..c19725be --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192ac761a355162355e271e363fa0c73f27217a96d7d342b38f1e4a8ea34c7ae +size 771 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-2@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-2@2x.png new file mode 100644 index 00000000..09996be7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a483b53475ab50e9407589686e4a4e3d9e1a2fb7844266ab74a1035f9e061e +size 565 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-3.png b/Skins/- Seoul v11 Asta Edit/scoreentry-3.png new file mode 100644 index 00000000..424a89f1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0308fa7b0f642f5488c7566c57d3721de3b5af8be00c28a2259c35f2752a06c1 +size 760 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-3@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-3@2x.png new file mode 100644 index 00000000..96b0c1b8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4a4a2d90be6fed6ab4388a9d96bc333bcd466d1b82cd12d26a1b6ecc6e6be6 +size 643 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-4.png b/Skins/- Seoul v11 Asta Edit/scoreentry-4.png new file mode 100644 index 00000000..16462796 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a5465f3f38b916234f85142b2b5c05bf547aafa9481c7ba87a7bc0c37bccb8 +size 684 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-4@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-4@2x.png new file mode 100644 index 00000000..51f38396 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9ca61d1435251857f467ae89952a4ddfabba7d34636630e0fb4895b22b6908 +size 444 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-5.png b/Skins/- Seoul v11 Asta Edit/scoreentry-5.png new file mode 100644 index 00000000..f757bcba --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a12d0acf5475154f1607b5ee840c24fbb992ed9d59873c2b9e7fd4b437fdc5f +size 756 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-5@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-5@2x.png new file mode 100644 index 00000000..26f51de7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9505ee0e15104b814072ac96f03d89824601df73b51f66cf47583b538d0a43 +size 595 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-6.png b/Skins/- Seoul v11 Asta Edit/scoreentry-6.png new file mode 100644 index 00000000..11497b11 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c7d784811bc1333edd8f3f5b881f4c479105ce20030594aecc1b7ce2133bc3c +size 764 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-6@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-6@2x.png new file mode 100644 index 00000000..819df54d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc378d11f37dbe1cb3e44b8f639d483ff12853d84f3683c4421e224b92701945 +size 688 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-7.png b/Skins/- Seoul v11 Asta Edit/scoreentry-7.png new file mode 100644 index 00000000..dc56cd88 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113619dba0455b1142501fa52a40b6dc07fb96c56191df7b8a915099f663bde9 +size 631 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-7@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-7@2x.png new file mode 100644 index 00000000..a3e89fd1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39d46c9492f4673b47c0bef5698e62ac00e8ad026bc4ddf87e6758b42187d03 +size 429 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-8.png b/Skins/- Seoul v11 Asta Edit/scoreentry-8.png new file mode 100644 index 00000000..2852a569 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185b52692d52d941c5c51b0403a844f21f3d7b8d5f003d8c39df46984e5ffebb +size 786 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-8@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-8@2x.png new file mode 100644 index 00000000..89604b78 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec72ffad5f12523eae0442415cd751d244358be09df14ffccd139aaf70d3f3b7 +size 736 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-9.png b/Skins/- Seoul v11 Asta Edit/scoreentry-9.png new file mode 100644 index 00000000..186bae0a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06d1638d9149dcab745a6d3bc372bec47e5d93ef23d97a3dee3c0e0c23b46fe +size 789 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-9@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-9@2x.png new file mode 100644 index 00000000..97a0c8b3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2eaf6b9a957812d3c3130f69129e3c8d6822bfb5041a25a1eba47d2c2319619 +size 672 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-comma.png b/Skins/- Seoul v11 Asta Edit/scoreentry-comma.png new file mode 100644 index 00000000..2238d6de --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b025063f080db606327f037f509a883bc83bbcf99bfd3c52412cf68741d8ae +size 405 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-comma@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-comma@2x.png new file mode 100644 index 00000000..630948cb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba5568f862822fba357fd5eca5f829cff1a30d5a6b64334d19979ddbb26a317 +size 171 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-dot.png b/Skins/- Seoul v11 Asta Edit/scoreentry-dot.png new file mode 100644 index 00000000..b85fe67a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70fb45cd83e6b2a2ced24fc0dbdc763ceffd858edb8bb18f1995512a7a6850cc +size 381 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-dot@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-dot@2x.png new file mode 100644 index 00000000..31ccd816 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19351a692f2821b86c87c9be22452668db9812bb8cc25b150278a4796b7c7955 +size 127 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-percent.png b/Skins/- Seoul v11 Asta Edit/scoreentry-percent.png new file mode 100644 index 00000000..6803a0d5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132a34f686ca317ce773e11a2a11cb53e679acc8b5b08d7e25b520b4c2c8a6ed +size 816 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-percent@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-percent@2x.png new file mode 100644 index 00000000..a2b65253 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d9d94b6037bbd6f4612cb6e4c532f6d3ba49b716689bd2d8a23b1535c5ec85 +size 788 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-x.png new file mode 100644 index 00000000..b511edb7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299b848490bd6f9b15a4eb7ef87a87f58e81dec8e03cfeacc88dad5fb7a862ca +size 564 diff --git a/Skins/- Seoul v11 Asta Edit/scoreentry-x@2x.png b/Skins/- Seoul v11 Asta Edit/scoreentry-x@2x.png new file mode 100644 index 00000000..053ed9bf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/scoreentry-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:880fa642c1baf37d6b2117e596b8b9c6833b0989a70df21c1adc42227653adf1 +size 419 diff --git a/Skins/- Seoul v11 Asta Edit/section-fail.png b/Skins/- Seoul v11 Asta Edit/section-fail.png new file mode 100644 index 00000000..b03203e4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e9df83831ebf0eccfde5e2258ba307c20eb07e28e241cdebf448cdcb1530a2 +size 116501 diff --git a/Skins/- Seoul v11 Asta Edit/section-fail@2x.png b/Skins/- Seoul v11 Asta Edit/section-fail@2x.png new file mode 100644 index 00000000..5abfc27c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0356c3ee44417c6ca3b53e117aa4ec1af8492cb08a84d3c88c8dd8ad4eb4b512 +size 415830 diff --git a/Skins/- Seoul v11 Asta Edit/section-pass.png b/Skins/- Seoul v11 Asta Edit/section-pass.png new file mode 100644 index 00000000..e23c91cd --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fcb10ea69d9472d701f8e7bf1f530595dcbeddada8da5f5d3739e2a84a3f086 +size 112561 diff --git a/Skins/- Seoul v11 Asta Edit/section-pass@2x.png b/Skins/- Seoul v11 Asta Edit/section-pass@2x.png new file mode 100644 index 00000000..ce3311da --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a5030b15fe3a5f9d9419f9d3b8a37de60165bcddb1b68c6c6b0277facd15bf +size 408208 diff --git a/Skins/- Seoul v11 Asta Edit/sectionfail.mp3 b/Skins/- Seoul v11 Asta Edit/sectionfail.mp3 new file mode 100644 index 00000000..d20ad8d9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c42ae0ef4f2b75b98eaa8628c293ec8cb60a4374caee1498d1e71969682d022 +size 13392 diff --git a/Skins/- Seoul v11 Asta Edit/sectionpass.mp3 b/Skins/- Seoul v11 Asta Edit/sectionpass.mp3 new file mode 100644 index 00000000..72deb39f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2025977f8a43419a240fbc3b0db1c504aafcfd79c902556c5a15ab6508c69f +size 8795 diff --git a/Skins/- Seoul v11 Asta Edit/seeya.wav b/Skins/- Seoul v11 Asta Edit/seeya.wav new file mode 100644 index 00000000..f7d88a0c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c55ea8fb51ddcef76e08650f66f26822af93d4390ad265052387e7f4088283 +size 165382 diff --git a/Skins/- Seoul v11 Asta Edit/select-difficulty.wav b/Skins/- Seoul v11 Asta Edit/select-difficulty.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/select-expand.wav b/Skins/- Seoul v11 Asta Edit/select-expand.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/select-expand.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-autoplay.png b/Skins/- Seoul v11 Asta Edit/selection-mod-autoplay.png new file mode 100644 index 00000000..a3e85ad6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a08edbcec365e87e66e3059ec405a1dd8f5f2a61671020ffff7d0740f49b9e71 +size 14267 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-autoplay@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..1445f71c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843411dc3ba29c85ccfbf19ae5744500bc751ef9683733cab4b2ec9d7946012b +size 48130 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-cinema.png b/Skins/- Seoul v11 Asta Edit/selection-mod-cinema.png new file mode 100644 index 00000000..054f7030 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:091d4be8af90a6bed990265db1ec909da28b20025162512670656b4956b6d24d +size 13714 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-cinema@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-cinema@2x.png new file mode 100644 index 00000000..b3c04458 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d448ed7ee29f1068c5328058b5df8fefc69da7ea436c47bf044115ad3692ed25 +size 47559 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-doubletime.png b/Skins/- Seoul v11 Asta Edit/selection-mod-doubletime.png new file mode 100644 index 00000000..ba3fc22d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e71da3dbd7c51d627f1536baa59eae7fce2f99cfda5ac3a9d5436475e744ce9 +size 14211 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-doubletime@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..bf0b07d2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202e7267af8f71e21f6df27ae8979a1992d8489d7210159cc9b276847081b849 +size 48584 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-easy.png b/Skins/- Seoul v11 Asta Edit/selection-mod-easy.png new file mode 100644 index 00000000..e18417cf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b926be0512739a4651f3546f73f4a532bafde126a17d286b69dc1f25ea9e60 +size 13815 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-easy@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-easy@2x.png new file mode 100644 index 00000000..5b1899d0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b3f3a10ac137f9f9a0587061962b1433f38036c5c936cab00959bc89005a26 +size 45434 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-flashlight.png b/Skins/- Seoul v11 Asta Edit/selection-mod-flashlight.png new file mode 100644 index 00000000..c1ee5923 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266a0cdf746f65379b4b6519c936af899035c1af798ac61f741060fc988c21a7 +size 13560 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-flashlight@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..341e87f1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae9010277a97179852bbf31d120f19d601998bd252d6bfd7a7a38d7d834f490 +size 43678 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-halftime.png b/Skins/- Seoul v11 Asta Edit/selection-mod-halftime.png new file mode 100644 index 00000000..c6566503 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:297a3d7747fc102bdc03022f42510ef1b697eeb6668414eb11e387c31df1f1dd +size 13963 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-halftime@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-halftime@2x.png new file mode 100644 index 00000000..62740a32 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9fc4709429384b69f37851d83a4e4c8ca491b71efe0210429c6f3bf63516d5 +size 48501 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-hardrock.png b/Skins/- Seoul v11 Asta Edit/selection-mod-hardrock.png new file mode 100644 index 00000000..1a10629b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0cb624799ea5d756884552c1a86cb0992b663a98598527e3a422c9fd515956 +size 14504 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-hardrock@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..c28334e0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d430124fa1368e63d2d5cba1a61a7006e329fb9c80b0b71752d80c0396374cf +size 48763 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-hidden.png b/Skins/- Seoul v11 Asta Edit/selection-mod-hidden.png new file mode 100644 index 00000000..5432b67a --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c971a7e491e05c29aab60bf9bf9b24e77f3d6d2031e75f8b9ca2cf1507d094 +size 14510 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-hidden@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-hidden@2x.png new file mode 100644 index 00000000..05ebf6cb --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9209bb678eb1ee40041474b3d688c0fce1690cd227d5e75ce79e3e3eb6d2975d +size 48291 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-nightcore.png b/Skins/- Seoul v11 Asta Edit/selection-mod-nightcore.png new file mode 100644 index 00000000..4e44bd33 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1746e9ba17a083b2ee07ca5fbe325c322fa209d949a8b8907e408c413e3b4336 +size 14664 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-nightcore@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..82bfdbd4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:160e667e786b86c43ab4e9358a5c07200ee84b42987097f20208bc148c2e2591 +size 49261 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-nofail.png b/Skins/- Seoul v11 Asta Edit/selection-mod-nofail.png new file mode 100644 index 00000000..3a9263e0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c50f3506135cb5d89690c687f6f8a221a6b670440f7efbf96e5b031e5716093 +size 13809 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-nofail@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-nofail@2x.png new file mode 100644 index 00000000..9e1cec09 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a8cc0ebe81354bb2c87764aadad04bcb622a7e0ff6cf0d7e7f859737f1ae68 +size 47743 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-perfect.png b/Skins/- Seoul v11 Asta Edit/selection-mod-perfect.png new file mode 100644 index 00000000..ccac246c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d3277c91a1823ffe6af130786ba00408102c2ba79a54134e04e6ac62563e2b +size 14186 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-perfect@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-perfect@2x.png new file mode 100644 index 00000000..d6aebb06 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8081163f29034e16f55fb292d8535752b56e98a567f3aed9d8008c1c67700a +size 47538 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-relax.png b/Skins/- Seoul v11 Asta Edit/selection-mod-relax.png new file mode 100644 index 00000000..dfa6b177 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b01ab755f2b71515e391c76e0fb61bbc3a2015184547950380e398a7e215fcb +size 14573 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-relax2.png b/Skins/- Seoul v11 Asta Edit/selection-mod-relax2.png new file mode 100644 index 00000000..07586518 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b25b11ef69510f87d1fde5ef6b9ee8c83689c527568733e57d5c40ae4f64cf1 +size 13337 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-relax2@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-relax2@2x.png new file mode 100644 index 00000000..be0f1b2d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d491f352e8cc3f6de394499d85872321a31a239fc745eb72a469cb4aecd371 +size 43680 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-relax@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-relax@2x.png new file mode 100644 index 00000000..f10e310e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a80864a71d517a796e9517a3d9bbfe586b00956ad8432e298c642509ba980ff +size 48801 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-scorev2.png b/Skins/- Seoul v11 Asta Edit/selection-mod-scorev2.png new file mode 100644 index 00000000..66978403 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d825cb4f195cee68924177f19c15cb3796976f07462a4f3c6599c1ffca8d6f4 +size 14299 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-scorev2@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..0f42327f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e61c39237dd6e3fc522383ff320379990b0c29291af84203834981d9752743 +size 49471 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-spunout.png b/Skins/- Seoul v11 Asta Edit/selection-mod-spunout.png new file mode 100644 index 00000000..acf89a94 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbdf6ebbbdf68c5f6c84e7052f3dd86d539cc7929930d70a5a7411ef0fcb15fa +size 13415 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-spunout@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-spunout@2x.png new file mode 100644 index 00000000..db1d3d52 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a73b1822b86e94d2572f85deaf09a546f7ba8d25ccb5a60306588c1d713e2719 +size 42125 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-suddendeath.png b/Skins/- Seoul v11 Asta Edit/selection-mod-suddendeath.png new file mode 100644 index 00000000..23957c37 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa277115ea8a29d36812dae9013cb98b1fe42c037e0e7cb6747eb3daecc4061b +size 14576 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-suddendeath@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..f8803e6d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb497cb9ca56c8189fa4796afc9066df44b771b484eb46c781203d67d34c46d1 +size 50380 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-target.png b/Skins/- Seoul v11 Asta Edit/selection-mod-target.png new file mode 100644 index 00000000..1c8d4492 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10f902fb3b9f7966885cb94ba3b01d01c6d4633e5b25b8eb11587018d158627 +size 13490 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mod-target@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mod-target@2x.png new file mode 100644 index 00000000..fa1789e0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a290a02deddd27db90ef3ac7e70e4965ee7cc8ba2c0fee96bc8df8fdd4cfc673 +size 45718 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mode-over.png b/Skins/- Seoul v11 Asta Edit/selection-mode-over.png new file mode 100644 index 00000000..8eea5409 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083e84809256967aeca308acf185522f2e1c21588a25f54c839e0797a1208679 +size 3181 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mode-over2.png b/Skins/- Seoul v11 Asta Edit/selection-mode-over2.png new file mode 100644 index 00000000..6981e9d1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mode-over2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a9b2f573ed898397f1a3e5ca3151b54b22776e1f97bd77d82a860fb38b81b7 +size 3299 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mode-over@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mode-over@2x.png new file mode 100644 index 00000000..e893244f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9b775fc7a16ecd471ce90041b731a2af06f8246ccc2dc827a9db086d291eb51 +size 6131 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mode-over@2x2.png b/Skins/- Seoul v11 Asta Edit/selection-mode-over@2x2.png new file mode 100644 index 00000000..06334ee0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mode-over@2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ac2fee22ec6f1da6992dd3c7d4b5831c20e820dadfbe0c07909e7d72423137 +size 7815 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mode.png b/Skins/- Seoul v11 Asta Edit/selection-mode.png new file mode 100644 index 00000000..e0def2d1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13494f786eb675dcf147b1617d3c3a51f35354cda065135ac6d849fdef5bca28 +size 210911 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mode@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mode@2x.png new file mode 100644 index 00000000..0e70a6e5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f6491573b060d4815faccd687e14cc0ac8f9b6d9f3bb5fb0b614f8a3f484ed8 +size 657209 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mods-over.png b/Skins/- Seoul v11 Asta Edit/selection-mods-over.png new file mode 100644 index 00000000..0e344500 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92346ed198cc82bf7a02dd666ea9eab5adcb2bf22617c11622f8844552da5cfb +size 4366 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mods-over@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mods-over@2x.png new file mode 100644 index 00000000..4e6fe572 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61626d4efd65fb80f318c70c4ee32fbcdc009bb57c03d16f0bb0daaaab85ef0 +size 9086 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mods.png b/Skins/- Seoul v11 Asta Edit/selection-mods.png new file mode 100644 index 00000000..28d189e3 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91a9f39c88f63bc6853b986e0ce60aa0ece0b8f6bbedc8b93a31a2e9e978ba5 +size 2886 diff --git a/Skins/- Seoul v11 Asta Edit/selection-mods@2x.png b/Skins/- Seoul v11 Asta Edit/selection-mods@2x.png new file mode 100644 index 00000000..9d133d31 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a0b06b17c139f4048af05a94510c44c11a2f94d6ec45706e4df74902df96ef +size 5270 diff --git a/Skins/- Seoul v11 Asta Edit/selection-options-over.png b/Skins/- Seoul v11 Asta Edit/selection-options-over.png new file mode 100644 index 00000000..d7f9f091 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d209a329a8f798cd1983aaf0003172df083f82863535aab42b3d0bac917d477 +size 5084 diff --git a/Skins/- Seoul v11 Asta Edit/selection-options-over@2x.png b/Skins/- Seoul v11 Asta Edit/selection-options-over@2x.png new file mode 100644 index 00000000..27a543f6 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02cb813e6ec8b02f21d07e6c3d9c6f5cedbd29906e7ee150292a95fa7fe6f53e +size 9992 diff --git a/Skins/- Seoul v11 Asta Edit/selection-options.png b/Skins/- Seoul v11 Asta Edit/selection-options.png new file mode 100644 index 00000000..273d9bb1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9819b62f782d25b9a81505e81e51c848f1be1c84cb17c1024bb26f9eb27a7d81 +size 6731 diff --git a/Skins/- Seoul v11 Asta Edit/selection-options@2x.png b/Skins/- Seoul v11 Asta Edit/selection-options@2x.png new file mode 100644 index 00000000..7b0a1c05 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a58d24c536f82361b1812b5d5a4d1c3095cc43aa63d93ab7eeb19c1fdcf40e1 +size 16868 diff --git a/Skins/- Seoul v11 Asta Edit/selection-random-over.png b/Skins/- Seoul v11 Asta Edit/selection-random-over.png new file mode 100644 index 00000000..27f83957 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7bb803148a5ad12463480e8baff16a2da3fc9028325be314d01b755d6f98c38 +size 4289 diff --git a/Skins/- Seoul v11 Asta Edit/selection-random-over@2x.png b/Skins/- Seoul v11 Asta Edit/selection-random-over@2x.png new file mode 100644 index 00000000..7044943c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e175457933697fdd2d2cf2ece67af8eaa88e33f4f589c75074b7e1de138d295 +size 8295 diff --git a/Skins/- Seoul v11 Asta Edit/selection-random.png b/Skins/- Seoul v11 Asta Edit/selection-random.png new file mode 100644 index 00000000..ae136e67 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:206911bc7702b7e9c800b4777582bc5057b3ed36bda8b65b5c1601c1b181be2f +size 4896 diff --git a/Skins/- Seoul v11 Asta Edit/selection-random@2x.png b/Skins/- Seoul v11 Asta Edit/selection-random@2x.png new file mode 100644 index 00000000..a7cf7814 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafa2f37e63abf9e02c473d8223929710796f1c6f77225c853e2061cf32404d2 +size 11563 diff --git a/Skins/- Seoul v11 Asta Edit/selection-tab2.png b/Skins/- Seoul v11 Asta Edit/selection-tab2.png new file mode 100644 index 00000000..9d933994 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-tab2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3195006768b22c7b568170a9f2e2462c5ce29e2700bd7329bfd8a01edc6620fd +size 864 diff --git a/Skins/- Seoul v11 Asta Edit/selection-tab2@2x.png b/Skins/- Seoul v11 Asta Edit/selection-tab2@2x.png new file mode 100644 index 00000000..c9e2a532 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/selection-tab2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cc80734e92f5a638394ba4bc18e3bd3fe5a8a8f67ef7d189cfa2bced0f585d +size 870 diff --git a/Skins/- Seoul v11 Asta Edit/skin.ini b/Skins/- Seoul v11 Asta Edit/skin.ini new file mode 100644 index 00000000..78f24d5f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/skin.ini @@ -0,0 +1,45 @@ +[General] +Name: - Seoul v11 Asta Edit +Author: Seouless +Version: latest + +// stuff // +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 1 +SliderStyle: 2 +SliderBallFlip: 0 +AllowSliderBallTint: 0 + +HitCircleOverlayAboveNumer: 0 +SpinnerFadePlayfield: 1 + +[Colours] +Combo1: 145, 255, 168 +Combo2: 202, 170, 245 +Combo3: 95, 220, 255 +Combo4: 255, 240, 82 + +//Older colors from stream +//Combo1: 75, 168, 234 +//Combo2: 185, 155, 246 +//Combo3: 85, 131, 216 +//Combo4: 255, 172, 229 + +MenuGlow: 250, 140, 166 +SliderBorder: 191, 190, 209 +SliderTrackOverride: 16, 16, 16 + +SpinnerApproachCircle: 255,255,255 + +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 178,178,178 +InputOverlayText: 255,255,255 + +[Fonts] +HitCircleOverlap: 19 +ScorePrefix: score +ComboPrefix: combo +ScoreOverlap: 9 +ComboOverlap: 5 diff --git a/Skins/- Seoul v11 Asta Edit/sliderb.png b/Skins/- Seoul v11 Asta Edit/sliderb.png new file mode 100644 index 00000000..ad342ef8 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d5d3f4ecd4d3b86b3461bf05d4764ea937734bc8d62d10da6e8eecaa58efbc3 +size 21501 diff --git a/Skins/- Seoul v11 Asta Edit/sliderb@2x.png b/Skins/- Seoul v11 Asta Edit/sliderb@2x.png new file mode 100644 index 00000000..09235383 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a8c839c5d499d0121ceff70e917cdf0efce063404daa0c02ce96ea7a043172 +size 63357 diff --git a/Skins/- Seoul v11 Asta Edit/sliderendcircle.png b/Skins/- Seoul v11 Asta Edit/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/sliderfollowcircle.png b/Skins/- Seoul v11 Asta Edit/sliderfollowcircle.png new file mode 100644 index 00000000..7c276ead --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc854db067e261686b0631bb5fbece2f8395fe7696706bb98bd95175165c271 +size 10961 diff --git a/Skins/- Seoul v11 Asta Edit/sliderfollowcircle@2x.png b/Skins/- Seoul v11 Asta Edit/sliderfollowcircle@2x.png new file mode 100644 index 00000000..66394c7e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:625dd62db12dd135c62d29d65b3f6a88f17221f76335bf7f59f942d2a510701e +size 26996 diff --git a/Skins/- Seoul v11 Asta Edit/sliderpoint10.png b/Skins/- Seoul v11 Asta Edit/sliderpoint10.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/sliderpoint30.png b/Skins/- Seoul v11 Asta Edit/sliderpoint30.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/sliderscorepoint.png b/Skins/- Seoul v11 Asta Edit/sliderscorepoint.png new file mode 100644 index 00000000..7d411ae4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c67674fea5fbc0a588a31dd7e911e1c2b488081712087f9428bee7884ebb058 +size 3462 diff --git a/Skins/- Seoul v11 Asta Edit/sliderstartcircle.png b/Skins/- Seoul v11 Asta Edit/sliderstartcircle.png new file mode 100644 index 00000000..3b085b8e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderstartcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5d6b51bd4e26844e571bef6ed3160d1eab99942fb24f515a73ff455771267e +size 12980 diff --git a/Skins/- Seoul v11 Asta Edit/sliderstartcircle@2x.png b/Skins/- Seoul v11 Asta Edit/sliderstartcircle@2x.png new file mode 100644 index 00000000..4b18e2e5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderstartcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a9aa03e68d559faeea3ce4933782accd18ea6c919ab431e747bb0ec70741b3 +size 20250 diff --git a/Skins/- Seoul v11 Asta Edit/sliderstartcircleoverlay.png b/Skins/- Seoul v11 Asta Edit/sliderstartcircleoverlay.png new file mode 100644 index 00000000..57ce6522 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderstartcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf70d03f2d5940876629ee21adfaf66683a3091405d53f1639be3066c513f5f4 +size 19887 diff --git a/Skins/- Seoul v11 Asta Edit/sliderstartcircleoverlay@2x.png b/Skins/- Seoul v11 Asta Edit/sliderstartcircleoverlay@2x.png new file mode 100644 index 00000000..10898e7f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/sliderstartcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74de14284002a242bc5bc14f7d244f5f5c0af193a650604b8eba878bd072233c +size 40726 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitclap.wav b/Skins/- Seoul v11 Asta Edit/soft-hitclap.wav new file mode 100644 index 00000000..0419d2c7 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1ed9f6afefa7a8de9930f84b6d50dbf04826f7394eb1ba4a14cf4580d6d3a9 +size 42450 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitclap2.wav b/Skins/- Seoul v11 Asta Edit/soft-hitclap2.wav new file mode 100644 index 00000000..3d8aaa60 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c6bc82e55b02266241dcc1d2095e33205c0e899a72bf22e5f3c00c7d05797b +size 42468 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitfinish.ogg b/Skins/- Seoul v11 Asta Edit/soft-hitfinish.ogg new file mode 100644 index 00000000..4c524c6d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c03c169e03677550db361f9f026239ac35f95f5c5f26431f55b77b8bfcea309 +size 7320 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitfinish.wav b/Skins/- Seoul v11 Asta Edit/soft-hitfinish.wav new file mode 100644 index 00000000..138c614d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ddd85be838217c26525d61be66bb41df700a5a14dcab000a59c4b47b262efa +size 145508 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitnormal.ogg b/Skins/- Seoul v11 Asta Edit/soft-hitnormal.ogg new file mode 100644 index 00000000..fde45a49 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0689d74e41495e4beec3d09879c3b8327d83205cc54bb662a1c73253834adbc +size 7320 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitnormal.wav b/Skins/- Seoul v11 Asta Edit/soft-hitnormal.wav new file mode 100644 index 00000000..5895b4af --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6b68c0cd5dd76481f02b14535f2aedfdbdec92d6bf665aaf4649b0bfef4624 +size 25580 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitnormalh.wav b/Skins/- Seoul v11 Asta Edit/soft-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitsoft.wav b/Skins/- Seoul v11 Asta Edit/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitwhistle.ogg b/Skins/- Seoul v11 Asta Edit/soft-hitwhistle.ogg new file mode 100644 index 00000000..f6ae4062 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bdf76a73d6624ce2746cabe10b3299d4381b829f46d591310d7d6aa20aeae25 +size 7272 diff --git a/Skins/- Seoul v11 Asta Edit/soft-hitwhistle.wav b/Skins/- Seoul v11 Asta Edit/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- Seoul v11 Asta Edit/soft-sliderslide.wav b/Skins/- Seoul v11 Asta Edit/soft-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/- Seoul v11 Asta Edit/soft-slidertick.wav b/Skins/- Seoul v11 Asta Edit/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/src/default-skin/normal-sliderwhistle.wav b/Skins/- Seoul v11 Asta Edit/soft-sliderwhistle.wav similarity index 100% rename from src/default-skin/normal-sliderwhistle.wav rename to Skins/- Seoul v11 Asta Edit/soft-sliderwhistle.wav diff --git a/Skins/- Seoul v11 Asta Edit/softl-hitfinish.wav b/Skins/- Seoul v11 Asta Edit/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/- Seoul v11 Asta Edit/softl-hitwhistle.wav b/Skins/- Seoul v11 Asta Edit/softl-hitwhistle.wav new file mode 100644 index 00000000..b2ead5b1 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/softl-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0bf4803858de71662a0d497d789a4d24d5c3cee7d0976377abf47156578018 +size 20428 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-approachcircle.png b/Skins/- Seoul v11 Asta Edit/spinner-approachcircle.png new file mode 100644 index 00000000..aaa29575 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ff67b939b178bc7ee6eb5c1132f5ed6c9ae737db748900bdfb84b50cdcea72 +size 280 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-approachcircle@2x.png b/Skins/- Seoul v11 Asta Edit/spinner-approachcircle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-background.png b/Skins/- Seoul v11 Asta Edit/spinner-background.png new file mode 100644 index 00000000..963a8713 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67fb392d3abcd3a0e561ff1ae77e431b740c73704bc5ebe9c51dd1c06a30e104 +size 110203 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-background@2x.png b/Skins/- Seoul v11 Asta Edit/spinner-background@2x.png new file mode 100644 index 00000000..10b83fd0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2473be30ad64982656dd7b61bdf9e5784370f273b2b6b0491cadea39b68d416 +size 360666 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-bottom.png b/Skins/- Seoul v11 Asta Edit/spinner-bottom.png new file mode 100644 index 00000000..60a73b7b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6962f12ac3b9f1a0ff453011b973984d3804ba95a5f206eb578805ddaf8d880 +size 3496 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-circle.png b/Skins/- Seoul v11 Asta Edit/spinner-circle.png new file mode 100644 index 00000000..e9998ce4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610c1eb11807a6fb1f3299f295a0507bc38421e521c87e88cb83e29b1db5a116 +size 24152 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-circle@2x.png b/Skins/- Seoul v11 Asta Edit/spinner-circle@2x.png new file mode 100644 index 00000000..c38a6554 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f433ff3fc30bf91e7f63ef11805b92bce1532d11ff7c2c2dd1bddfefbb5cd1 +size 52211 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-circle@2xyoushould.png b/Skins/- Seoul v11 Asta Edit/spinner-circle@2xyoushould.png new file mode 100644 index 00000000..c38a6554 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-circle@2xyoushould.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f433ff3fc30bf91e7f63ef11805b92bce1532d11ff7c2c2dd1bddfefbb5cd1 +size 52211 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-clear.png b/Skins/- Seoul v11 Asta Edit/spinner-clear.png new file mode 100644 index 00000000..9fef69fa --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37264f10f213e2ae4424831d0ee86ed81f18b7d6577e640b5116164e5268c8d6 +size 7489 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-clear@2x.png b/Skins/- Seoul v11 Asta Edit/spinner-clear@2x.png new file mode 100644 index 00000000..75e2aad5 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d15e482c6302f6f343d5e5f142205120f5aca96b5f4660e35407370da02a33c +size 13246 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-glow.png b/Skins/- Seoul v11 Asta Edit/spinner-glow.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-metre.png b/Skins/- Seoul v11 Asta Edit/spinner-metre.png new file mode 100644 index 00000000..e017d7ab --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c3d2d16df81b0be3e78e6c7d1093f8e6a654af893209f1b95aa332043ab1263 +size 269196 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-metre@2x.png b/Skins/- Seoul v11 Asta Edit/spinner-metre@2x.png new file mode 100644 index 00000000..51556570 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d93903436b30628e429b196361e7c378efcac28d4e7f88ba2f0c7b5b9bb16d +size 754918 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-middle.png b/Skins/- Seoul v11 Asta Edit/spinner-middle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-osu.png b/Skins/- Seoul v11 Asta Edit/spinner-osu.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-osu.wav b/Skins/- Seoul v11 Asta Edit/spinner-osu.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/spinner-rpm.png b/Skins/- Seoul v11 Asta Edit/spinner-rpm.png new file mode 100644 index 00000000..4630477d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b12cfd7945d04d934802522ff454d768905451b7a702700775811977d7e67e71 +size 4932 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-spin.png b/Skins/- Seoul v11 Asta Edit/spinner-spin.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/- Seoul v11 Asta Edit/spinner-top.png b/Skins/- Seoul v11 Asta Edit/spinner-top.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/- Seoul v11 Asta Edit/spinnerbonus.wav b/Skins/- Seoul v11 Asta Edit/spinnerbonus.wav new file mode 100644 index 00000000..86c5dc8d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1f21e07c487f611b20dac1593cfaca26143f37a7bc9dabb8f0adb3d69d3195 +size 112158 diff --git a/Skins/- Seoul v11 Asta Edit/spinnerspin.mp3 b/Skins/- Seoul v11 Asta Edit/spinnerspin.mp3 new file mode 100644 index 00000000..fdaf9a24 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/spinnerspin.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678990e0480ea95ff81eebe0e89ed4d1ed6171c275021f26059fcfc13c0dfe58 +size 13672 diff --git a/Skins/- Seoul v11 Asta Edit/spinnerspin.wav b/Skins/- Seoul v11 Asta Edit/spinnerspin.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- Seoul v11 Asta Edit/star.png b/Skins/- Seoul v11 Asta Edit/star.png new file mode 100644 index 00000000..2f3a830e --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c883c8a8d76e9a6e6e947194bd2bf36af71cc832db649dce68320bfeccacafa2 +size 1987 diff --git a/Skins/- Seoul v11 Asta Edit/star2.png b/Skins/- Seoul v11 Asta Edit/star2.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/- Seoul v11 Asta Edit/volume-bg-effect.png b/Skins/- Seoul v11 Asta Edit/volume-bg-effect.png new file mode 100644 index 00000000..ccde3628 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/volume-bg-effect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bbb029d51e120c7f912284ca6d77a53f5727baf13fab56060ae610b64eb7dc +size 6130 diff --git a/Skins/- Seoul v11 Asta Edit/volume-bg.png b/Skins/- Seoul v11 Asta Edit/volume-bg.png new file mode 100644 index 00000000..2fb265a2 --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/volume-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e42a9691bf9e687227eb7ca43c1200b7059a4630736e832187a2e1b221842f7 +size 5280 diff --git a/Skins/- Seoul v11 Asta Edit/welcome.wav b/Skins/- Seoul v11 Asta Edit/welcome.wav new file mode 100644 index 00000000..bc989aaf --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c1f19400ea599071163501d4417980d067ca75cf72c3306f45da428918196d9 +size 284284 diff --git a/Skins/- Seoul v11 Asta Edit/welcome_text.png b/Skins/- Seoul v11 Asta Edit/welcome_text.png new file mode 100644 index 00000000..a53a365b --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/welcome_text.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210838fbd267dcc95fa903a18c39f7fbbf785e4c9dca9ae8b59a77295bfad5ea +size 20088 diff --git a/Skins/- Seoul v11 Asta Edit/welcome_text@2x.png b/Skins/- Seoul v11 Asta Edit/welcome_text@2x.png new file mode 100644 index 00000000..9f851c7f --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/welcome_text@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc17dc1be6cee0618a6d488af6c339379aace460d391260c2d1476bd4c3847d +size 48939 diff --git a/Skins/- Seoul v11 Asta Edit/whoosh.wav b/Skins/- Seoul v11 Asta Edit/whoosh.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- Seoul v11 Asta Edit/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- TekkitoTopoi/applause.mp3 b/Skins/- TekkitoTopoi/applause.mp3 new file mode 100644 index 00000000..0d7058ba --- /dev/null +++ b/Skins/- TekkitoTopoi/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5610b1f44cfbc1f9eb046e49f9309126f63c195f43fa8518fd4b8efc614acead +size 885779 diff --git a/Skins/- TekkitoTopoi/arrow-pause.png b/Skins/- TekkitoTopoi/arrow-pause.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/arrow-pause.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/button-left.png b/Skins/- TekkitoTopoi/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/button-middle.png b/Skins/- TekkitoTopoi/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/button-right.png b/Skins/- TekkitoTopoi/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/combobreak.mp3 b/Skins/- TekkitoTopoi/combobreak.mp3 new file mode 100644 index 00000000..24cec9f5 --- /dev/null +++ b/Skins/- TekkitoTopoi/combobreak.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e34d46136af17154b2df929fa3a7a2fed8f2a5432ea331c8fd2ca3be38b370d +size 31972 diff --git a/Skins/- TekkitoTopoi/count.ogg b/Skins/- TekkitoTopoi/count.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- TekkitoTopoi/count1.png b/Skins/- TekkitoTopoi/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/count2.png b/Skins/- TekkitoTopoi/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/count3.png b/Skins/- TekkitoTopoi/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/cursor.png b/Skins/- TekkitoTopoi/cursor.png new file mode 100644 index 00000000..c0ebbe2b --- /dev/null +++ b/Skins/- TekkitoTopoi/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2af67490d28a7aca5b5cc7a70689716eb504fd1d5b6ff2fe70917d35ca5f64d +size 8430 diff --git a/Skins/- TekkitoTopoi/cursor2.png b/Skins/- TekkitoTopoi/cursor2.png new file mode 100644 index 00000000..ed94c85d --- /dev/null +++ b/Skins/- TekkitoTopoi/cursor2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafbd0b660c9f63f711c206aacac6610d5db98198a0011896936ef9bc74481ff +size 8089 diff --git a/Skins/- TekkitoTopoi/cursortrail.png b/Skins/- TekkitoTopoi/cursortrail.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/default-0.png b/Skins/- TekkitoTopoi/default-0.png new file mode 100644 index 00000000..07cd3e04 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86be102a34684a19554a61d75a5110759eccc96d126044714b8b6e86534d9cb6 +size 3248 diff --git a/Skins/- TekkitoTopoi/default-0@2x.png b/Skins/- TekkitoTopoi/default-0@2x.png new file mode 100644 index 00000000..a1fd7dbc --- /dev/null +++ b/Skins/- TekkitoTopoi/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aba7119255ddd56b42d55eb8e0f0d9d242f577d67d04ea0c656ebc800350e88 +size 4346 diff --git a/Skins/- TekkitoTopoi/default-1.png b/Skins/- TekkitoTopoi/default-1.png new file mode 100644 index 00000000..32b05e5e --- /dev/null +++ b/Skins/- TekkitoTopoi/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dec093f619817ccff8e7726ea6d9de0dd83018af879219dde4293308f01a864 +size 2889 diff --git a/Skins/- TekkitoTopoi/default-1@2x.png b/Skins/- TekkitoTopoi/default-1@2x.png new file mode 100644 index 00000000..1b156d08 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad904a190399f3a74f0da1a456876b8bcac439ac3d1e09c68a38250587460e0a +size 3032 diff --git a/Skins/- TekkitoTopoi/default-2.png b/Skins/- TekkitoTopoi/default-2.png new file mode 100644 index 00000000..053c8d37 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4df5f75229123c71fc01ebc94e242d16066d3d62ba58fe60397f6e6a3913759 +size 3317 diff --git a/Skins/- TekkitoTopoi/default-2@2x.png b/Skins/- TekkitoTopoi/default-2@2x.png new file mode 100644 index 00000000..cdb407be --- /dev/null +++ b/Skins/- TekkitoTopoi/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ab2cf1484782ae21c5cfab50a8fe682af5657281bb253504d3e64a3bf7d4fc +size 4509 diff --git a/Skins/- TekkitoTopoi/default-3.png b/Skins/- TekkitoTopoi/default-3.png new file mode 100644 index 00000000..ab026584 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed537f97537e80af55b1679d4dc62a96d4849632e721da2e8c80886ac8f5cd5 +size 3319 diff --git a/Skins/- TekkitoTopoi/default-3@2x.png b/Skins/- TekkitoTopoi/default-3@2x.png new file mode 100644 index 00000000..75d9a0c7 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99414e9b7c8a5c5fa32b7d7d51d5e494eac6006c8b64f52d14ea61f507cd32b5 +size 4545 diff --git a/Skins/- TekkitoTopoi/default-4.png b/Skins/- TekkitoTopoi/default-4.png new file mode 100644 index 00000000..59d08703 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b21a890504ca499fe48f6ba2dee801ccc7cc5619e2def66bb5cdd3d660661cb6 +size 3103 diff --git a/Skins/- TekkitoTopoi/default-4@2x.png b/Skins/- TekkitoTopoi/default-4@2x.png new file mode 100644 index 00000000..38f67301 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e136087752f58147758da5967141edc43575808041ec7624e216202b67a29d7d +size 3652 diff --git a/Skins/- TekkitoTopoi/default-5.png b/Skins/- TekkitoTopoi/default-5.png new file mode 100644 index 00000000..9f324e26 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ceb8e4dfa4c454886279fd38dfe211b96d3fca959b60a1ec071d56abd594fa +size 3282 diff --git a/Skins/- TekkitoTopoi/default-5@2x.png b/Skins/- TekkitoTopoi/default-5@2x.png new file mode 100644 index 00000000..52593237 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238fc1e6b9076b162fc38d1b361524965ab83e562f10504a2160ed28657d58e8 +size 4355 diff --git a/Skins/- TekkitoTopoi/default-6.png b/Skins/- TekkitoTopoi/default-6.png new file mode 100644 index 00000000..00b92c99 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57767eb992cbb56e6bc433876b3d7194af5dfd6df3b5598813683d5a6baf06cb +size 3304 diff --git a/Skins/- TekkitoTopoi/default-6@2x.png b/Skins/- TekkitoTopoi/default-6@2x.png new file mode 100644 index 00000000..3f9fb2fe --- /dev/null +++ b/Skins/- TekkitoTopoi/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e54f2012f39007dae5bf5275d24d1f2b716c4139ccf7a56bb7bce2dbc2198c +size 4774 diff --git a/Skins/- TekkitoTopoi/default-7.png b/Skins/- TekkitoTopoi/default-7.png new file mode 100644 index 00000000..e19a6abc --- /dev/null +++ b/Skins/- TekkitoTopoi/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f938ec45ecdf2761d54e325b1b071c3b1a6d360e3e0ab21ba86f20cd3aa1d2 +size 3166 diff --git a/Skins/- TekkitoTopoi/default-7@2x.png b/Skins/- TekkitoTopoi/default-7@2x.png new file mode 100644 index 00000000..0ea2d309 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21817ff11ebad455950a87b3fa1b6acf83bfcf58632895cd051542e2c25f0272 +size 4000 diff --git a/Skins/- TekkitoTopoi/default-8.png b/Skins/- TekkitoTopoi/default-8.png new file mode 100644 index 00000000..affbcee8 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b035d04a89c35333aec8dc8a9fee3d971ceef6fbe27354bf0fa41c7537201d87 +size 3387 diff --git a/Skins/- TekkitoTopoi/default-8@2x.png b/Skins/- TekkitoTopoi/default-8@2x.png new file mode 100644 index 00000000..9f7f132e --- /dev/null +++ b/Skins/- TekkitoTopoi/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f205f106a031e2cbb3585c63df31e149f0fd75848ada1dbd5ab93858ffe68ea0 +size 4847 diff --git a/Skins/- TekkitoTopoi/default-9.png b/Skins/- TekkitoTopoi/default-9.png new file mode 100644 index 00000000..05c25637 --- /dev/null +++ b/Skins/- TekkitoTopoi/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e480bb6e6aa7a7f9308bf519221e60f96613de6fa70db9d255d45054efd0756c +size 3352 diff --git a/Skins/- TekkitoTopoi/default-9@2x.png b/Skins/- TekkitoTopoi/default-9@2x.png new file mode 100644 index 00000000..0c05ee5e --- /dev/null +++ b/Skins/- TekkitoTopoi/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87798a287fe2f1c80d329aeaaa6666a9a16363d5f477d26d757150090fab3fbf +size 4839 diff --git a/Skins/- TekkitoTopoi/drum-hitclap.ogg b/Skins/- TekkitoTopoi/drum-hitclap.ogg new file mode 100644 index 00000000..b0540174 --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0090d97ee26d03be66ab0965153fa3460d7c10d4787760f18e2f6a8b801f6c +size 4909 diff --git a/Skins/- TekkitoTopoi/drum-hitclap.wav b/Skins/- TekkitoTopoi/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- TekkitoTopoi/drum-hitclap2.wav b/Skins/- TekkitoTopoi/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- TekkitoTopoi/drum-hitfinish.ogg b/Skins/- TekkitoTopoi/drum-hitfinish.ogg new file mode 100644 index 00000000..e708f36d --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd673a02d88be045ea44115c2b6f6769ec488b2d1937b7b1d14dad06ca48c262 +size 6846 diff --git a/Skins/- TekkitoTopoi/drum-hitfinish.wav b/Skins/- TekkitoTopoi/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- TekkitoTopoi/drum-hitnormal.ogg b/Skins/- TekkitoTopoi/drum-hitnormal.ogg new file mode 100644 index 00000000..83778fda --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941c895c2b3d81cfe5c4b53c95457e1ce0684160602ee78fe9e0356aec557050 +size 7527 diff --git a/Skins/- TekkitoTopoi/drum-hitnormal.wav b/Skins/- TekkitoTopoi/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- TekkitoTopoi/drum-hitwhistle.ogg b/Skins/- TekkitoTopoi/drum-hitwhistle.ogg new file mode 100644 index 00000000..0b853991 --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bae33fb90f5f4ebe449c02add71d2aba704d261b374aa0dc4823fb9cec6f87 +size 4426 diff --git a/Skins/- TekkitoTopoi/drum-hitwhistle.wav b/Skins/- TekkitoTopoi/drum-hitwhistle.wav new file mode 100644 index 00000000..9afea026 --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1beaeb5455a57857b821e77da2e582084e87c65b1a56ef89be398ce8ce9a9c68 +size 145548 diff --git a/Skins/- TekkitoTopoi/drum-sliderslide.ogg b/Skins/- TekkitoTopoi/drum-sliderslide.ogg new file mode 100644 index 00000000..ca1afbde --- /dev/null +++ b/Skins/- TekkitoTopoi/drum-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0e12d4a6358e8ba8f4ef6f8c15c095495bf177683e4d8afc6caa37ecfb55f6 +size 4426 diff --git a/Skins/- TekkitoTopoi/drum-sliderslide.wav b/Skins/- TekkitoTopoi/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- TekkitoTopoi/drum-slidertick.wav b/Skins/- TekkitoTopoi/drum-slidertick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- TekkitoTopoi/drum-sliderwhistle.wav b/Skins/- TekkitoTopoi/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- TekkitoTopoi/followpoint-0.png b/Skins/- TekkitoTopoi/followpoint-0.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- TekkitoTopoi/followpoint-1.png b/Skins/- TekkitoTopoi/followpoint-1.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- TekkitoTopoi/followpoint-2.png b/Skins/- TekkitoTopoi/followpoint-2.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- TekkitoTopoi/followpoint-3.png b/Skins/- TekkitoTopoi/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- TekkitoTopoi/followpoint-4.png b/Skins/- TekkitoTopoi/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- TekkitoTopoi/followpoint-5.png b/Skins/- TekkitoTopoi/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- TekkitoTopoi/followpoint-6.png b/Skins/- TekkitoTopoi/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- TekkitoTopoi/followpoint-7.png b/Skins/- TekkitoTopoi/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- TekkitoTopoi/followpoint-8.png b/Skins/- TekkitoTopoi/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- TekkitoTopoi/followpoint-9.png b/Skins/- TekkitoTopoi/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- TekkitoTopoi/followpoint.png b/Skins/- TekkitoTopoi/followpoint.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- TekkitoTopoi/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- TekkitoTopoi/go.png b/Skins/- TekkitoTopoi/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/gos - Copy.mp3 b/Skins/- TekkitoTopoi/gos - Copy.mp3 new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- TekkitoTopoi/gos.ogg b/Skins/- TekkitoTopoi/gos.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- TekkitoTopoi/hit0-0.png b/Skins/- TekkitoTopoi/hit0-0.png new file mode 100644 index 00000000..37370c7e --- /dev/null +++ b/Skins/- TekkitoTopoi/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcc98ce442024382f729db48f54a8aaf5ca68a8ad38db09bd797d860a7a09335 +size 3002 diff --git a/Skins/- TekkitoTopoi/hit0.png b/Skins/- TekkitoTopoi/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/hit100-0.png b/Skins/- TekkitoTopoi/hit100-0.png new file mode 100644 index 00000000..57eecfc3 --- /dev/null +++ b/Skins/- TekkitoTopoi/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7863c7d95d2f8a8fd546b1d892ff3f4f0b23deae2269a0a9531e5d9bfc42f295 +size 2317 diff --git a/Skins/- TekkitoTopoi/hit100.png b/Skins/- TekkitoTopoi/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/hit100k-0.png b/Skins/- TekkitoTopoi/hit100k-0.png new file mode 100644 index 00000000..57eecfc3 --- /dev/null +++ b/Skins/- TekkitoTopoi/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7863c7d95d2f8a8fd546b1d892ff3f4f0b23deae2269a0a9531e5d9bfc42f295 +size 2317 diff --git a/Skins/- TekkitoTopoi/hit100k.png b/Skins/- TekkitoTopoi/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/hit300.png b/Skins/- TekkitoTopoi/hit300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/hit300g.png b/Skins/- TekkitoTopoi/hit300g.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/hit300k.png b/Skins/- TekkitoTopoi/hit300k.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/hit50-0.png b/Skins/- TekkitoTopoi/hit50-0.png new file mode 100644 index 00000000..ecabc134 --- /dev/null +++ b/Skins/- TekkitoTopoi/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ef20b4894ac66dbbff1a0892571dc9332477af5282cadd14c80933b8f0727e5 +size 2231 diff --git a/Skins/- TekkitoTopoi/hit50.png b/Skins/- TekkitoTopoi/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/hitcircle.png b/Skins/- TekkitoTopoi/hitcircle.png new file mode 100644 index 00000000..ff143877 --- /dev/null +++ b/Skins/- TekkitoTopoi/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac69c49f47f23cb950737860b3e446cb23b6fc7d0bce622d7556ef5aef659e7a +size 3525 diff --git a/Skins/- TekkitoTopoi/hitcircleoverlay.png b/Skins/- TekkitoTopoi/hitcircleoverlay.png new file mode 100644 index 00000000..27093a5e --- /dev/null +++ b/Skins/- TekkitoTopoi/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e94c08069c79e055ae429efad72c30124222fbb059128587dd59b0b8850d670 +size 14720 diff --git a/Skins/- TekkitoTopoi/hitcircleoverlay@2x.png b/Skins/- TekkitoTopoi/hitcircleoverlay@2x.png new file mode 100644 index 00000000..6b7e93db --- /dev/null +++ b/Skins/- TekkitoTopoi/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee1b4b2ab4c9b563289f82b2f67223da3abb4fc507b9b26a10c32889f4f65f6 +size 39318 diff --git a/Skins/- TekkitoTopoi/inputoverlay-background.png b/Skins/- TekkitoTopoi/inputoverlay-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- TekkitoTopoi/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- TekkitoTopoi/inputoverlay-key.png b/Skins/- TekkitoTopoi/inputoverlay-key.png new file mode 100644 index 00000000..33caff76 --- /dev/null +++ b/Skins/- TekkitoTopoi/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5978743c56996fec2d55895798ede368aaafdee00ca5b8d194e0c023f364d9 +size 1948 diff --git a/Skins/- TekkitoTopoi/key-delete.wav b/Skins/- TekkitoTopoi/key-delete.wav new file mode 100644 index 00000000..6d51a6db --- /dev/null +++ b/Skins/- TekkitoTopoi/key-delete.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baad79380f7d1e8f68264bae88ee866214481d133de6c6d403691562fb61023d +size 14508 diff --git a/Skins/- TekkitoTopoi/key-press-1.mp3 b/Skins/- TekkitoTopoi/key-press-1.mp3 new file mode 100644 index 00000000..aa8d6808 --- /dev/null +++ b/Skins/- TekkitoTopoi/key-press-1.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f85f350232cb8397fc3351b0c9a33f0707a5f28a7d39e34ab1ff69a237a05b7 +size 4219 diff --git a/Skins/- TekkitoTopoi/key-press-2.mp3 b/Skins/- TekkitoTopoi/key-press-2.mp3 new file mode 100644 index 00000000..bca4fe49 --- /dev/null +++ b/Skins/- TekkitoTopoi/key-press-2.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7744360d5cfce6f9ba58302d965b61137def752083d216398072fb9f23c8cb6f +size 4123 diff --git a/Skins/- TekkitoTopoi/key-press-3.mp3 b/Skins/- TekkitoTopoi/key-press-3.mp3 new file mode 100644 index 00000000..6153c748 --- /dev/null +++ b/Skins/- TekkitoTopoi/key-press-3.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3197455453adc28e2975f98ebaf9e93c2bf1f99de490289e7de5cbbc8ec786 +size 4363 diff --git a/Skins/- TekkitoTopoi/key-press-4.mp3 b/Skins/- TekkitoTopoi/key-press-4.mp3 new file mode 100644 index 00000000..014a1fde --- /dev/null +++ b/Skins/- TekkitoTopoi/key-press-4.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366e6420e58fb9b14c351c8a6f798f5d3b6a3db6ab78f092904ca9581eff8f3d +size 4075 diff --git a/Skins/- TekkitoTopoi/menu-back-0.png b/Skins/- TekkitoTopoi/menu-back-0.png new file mode 100644 index 00000000..3012b0d8 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f97d464f70eee818d04ca007e248e53f35f23f55515974cc293523c66a95530 +size 58028 diff --git a/Skins/- TekkitoTopoi/menu-back-1.png b/Skins/- TekkitoTopoi/menu-back-1.png new file mode 100644 index 00000000..e4d1a273 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f773e9f7c9086e19c61bc09b677c53901a37e0d93cb22ee908fdb46a5cb521c8 +size 61066 diff --git a/Skins/- TekkitoTopoi/menu-back-2.png b/Skins/- TekkitoTopoi/menu-back-2.png new file mode 100644 index 00000000..14bd66b8 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9785ed99c5d4d3a7e80652b2ee022c942680fad157b18dc38a3a5f6fcd5da440 +size 56725 diff --git a/Skins/- TekkitoTopoi/menu-back-3.png b/Skins/- TekkitoTopoi/menu-back-3.png new file mode 100644 index 00000000..d1913b20 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7b8aed2f1c83d33d6156c4ddda71756f653f23f253849e8721ed729239b3cf +size 52136 diff --git a/Skins/- TekkitoTopoi/menu-back-4.png b/Skins/- TekkitoTopoi/menu-back-4.png new file mode 100644 index 00000000..a5d9fbc3 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd7497419af069b313d944b4c818058b3ce73264b3d920dc9a8b781d44e67a4 +size 50848 diff --git a/Skins/- TekkitoTopoi/menu-back-5.png b/Skins/- TekkitoTopoi/menu-back-5.png new file mode 100644 index 00000000..6da16ed2 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4533cc51cf3ffc621d1c402301356e91fd1f56f29f0468b51300403307483acf +size 56456 diff --git a/Skins/- TekkitoTopoi/menu-back-6.png b/Skins/- TekkitoTopoi/menu-back-6.png new file mode 100644 index 00000000..67a54388 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60dcca345e00bfd20f346dca823e8600ac4a079c2227e5b9a5bc8629e5c3d61 +size 58944 diff --git a/Skins/- TekkitoTopoi/menu-back-7.png b/Skins/- TekkitoTopoi/menu-back-7.png new file mode 100644 index 00000000..f7a13c47 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f3eb9fa5157201cb7b9ac45912670e400cbb6b00237ee069d84c705f85718b +size 55556 diff --git a/Skins/- TekkitoTopoi/menu-back-8.png b/Skins/- TekkitoTopoi/menu-back-8.png new file mode 100644 index 00000000..c3388350 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e29ceb6337e44e80dcfa7526a3853ee358a7f6f83eb55ba9d18c862799345a +size 50145 diff --git a/Skins/- TekkitoTopoi/menu-back-9.png b/Skins/- TekkitoTopoi/menu-back-9.png new file mode 100644 index 00000000..8a9a8058 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f65a8e2630d68606a7741edb1536e9cae4ae1933fe701c3fac2f200adb8dd49 +size 50794 diff --git a/Skins/- TekkitoTopoi/menu-back.png b/Skins/- TekkitoTopoi/menu-back.png new file mode 100644 index 00000000..300f7590 --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1598a9715f4d7d15c5ceb714468e1e6992f9f559f44de14b423d9b3b451a626 +size 110 diff --git a/Skins/- TekkitoTopoi/menu-background.jpg b/Skins/- TekkitoTopoi/menu-background.jpg new file mode 100644 index 00000000..d194201a --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15523f24ed453d1abd699ed2ef26ed49befb9a3e505f1f47e42640b4305a73d0 +size 435652 diff --git a/Skins/- TekkitoTopoi/menu-button-background.png b/Skins/- TekkitoTopoi/menu-button-background.png new file mode 100644 index 00000000..3221697b --- /dev/null +++ b/Skins/- TekkitoTopoi/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a12068e501ea4ed8abebf4ab0736ff1a87d64a6c9cd32827a54cf78b4c6bd8 +size 114 diff --git a/Skins/- TekkitoTopoi/menuback.wav b/Skins/- TekkitoTopoi/menuback.wav new file mode 100644 index 00000000..4501f2c0 --- /dev/null +++ b/Skins/- TekkitoTopoi/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da19d7a7e360a9c869bbd7d87ec361cb62067776b332ec129f4fd7e05b36414a +size 44650 diff --git a/Skins/- TekkitoTopoi/mode-osu-small.png b/Skins/- TekkitoTopoi/mode-osu-small.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/mode-osu.png b/Skins/- TekkitoTopoi/mode-osu.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/multi-skipped.png b/Skins/- TekkitoTopoi/multi-skipped.png new file mode 100644 index 00000000..b7e9891e --- /dev/null +++ b/Skins/- TekkitoTopoi/multi-skipped.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d0bf02f27fafb7b1f7d1c895ea80c7d5de8fa0aa37051175531a11a5120d31 +size 1327 diff --git a/Skins/- TekkitoTopoi/normal-hitclap.ogg b/Skins/- TekkitoTopoi/normal-hitclap.ogg new file mode 100644 index 00000000..ec0e3b04 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1049b6d14e749927b1507f3d12c1af3545f4b30a1313b385d1e72c4b8d98b204 +size 4426 diff --git a/Skins/- TekkitoTopoi/normal-hitclap.wav b/Skins/- TekkitoTopoi/normal-hitclap.wav new file mode 100644 index 00000000..3aaab75f --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b39651498aa9b2ded95b79e022fa61f69a2666b405dedd1ac53b532b75e081 +size 9312 diff --git a/Skins/- TekkitoTopoi/normal-hitclap2.wav b/Skins/- TekkitoTopoi/normal-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- TekkitoTopoi/normal-hitfinish.ogg b/Skins/- TekkitoTopoi/normal-hitfinish.ogg new file mode 100644 index 00000000..8a3b29a6 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2779da6e866b9f7807f974fd02ed5a13f46f097be629284d079207378624f42f +size 7205 diff --git a/Skins/- TekkitoTopoi/normal-hitfinish.wav b/Skins/- TekkitoTopoi/normal-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/- TekkitoTopoi/normal-hitfinish2.wav b/Skins/- TekkitoTopoi/normal-hitfinish2.wav new file mode 100644 index 00000000..ce87097b --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f08f44fb21bf8b838f4a5e4d030464470c30ab8c5e8acab18e79f47f0263ea4 +size 291392 diff --git a/Skins/- TekkitoTopoi/normal-hitnormal.ogg b/Skins/- TekkitoTopoi/normal-hitnormal.ogg new file mode 100644 index 00000000..caadf4b5 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736d1629d8fac0c4ba97bb0cb432a837c870f52bfb4f69d2fc99c09ce2bed246 +size 8106 diff --git a/Skins/- TekkitoTopoi/normal-hitnormal.wav b/Skins/- TekkitoTopoi/normal-hitnormal.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/- TekkitoTopoi/normal-hitnormal2.wav b/Skins/- TekkitoTopoi/normal-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/- TekkitoTopoi/normal-hitwhistle.ogg b/Skins/- TekkitoTopoi/normal-hitwhistle.ogg new file mode 100644 index 00000000..e57fa9c7 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656c4781427d993099d1cc092c2765cc61970cba3c1a4c8492d48d32bcf200fc +size 20498 diff --git a/Skins/- TekkitoTopoi/normal-hitwhistle.wav b/Skins/- TekkitoTopoi/normal-hitwhistle.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/- TekkitoTopoi/normal-hitwhistle2.wav b/Skins/- TekkitoTopoi/normal-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/- TekkitoTopoi/normal-sliderslide.wav b/Skins/- TekkitoTopoi/normal-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- TekkitoTopoi/normal-sliderslide2.wav b/Skins/- TekkitoTopoi/normal-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- TekkitoTopoi/normal-slidertick.ogg b/Skins/- TekkitoTopoi/normal-slidertick.ogg new file mode 100644 index 00000000..45fe02cc --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9387191b2235dcfecfda8c8b0aecf648fda1cfe5a366eca69a43df141f4ee63 +size 6882 diff --git a/Skins/- TekkitoTopoi/normal-slidertick.wav b/Skins/- TekkitoTopoi/normal-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- TekkitoTopoi/normal-slidertick2.wav b/Skins/- TekkitoTopoi/normal-slidertick2.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/- TekkitoTopoi/normal-sliderwhistle.wav b/Skins/- TekkitoTopoi/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- TekkitoTopoi/normal-sliderwhistle2.ogg b/Skins/- TekkitoTopoi/normal-sliderwhistle2.ogg new file mode 100644 index 00000000..0353f513 --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-sliderwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4238dbfda3a88dbe9516b82e0831ce2516f6c2cec1712b08762e672d4ca2dff9 +size 4426 diff --git a/Skins/- TekkitoTopoi/normal-sliderwhistle2.wav b/Skins/- TekkitoTopoi/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- TekkitoTopoi/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- TekkitoTopoi/pause-back.png b/Skins/- TekkitoTopoi/pause-back.png new file mode 100644 index 00000000..42cc6e6c --- /dev/null +++ b/Skins/- TekkitoTopoi/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e438cd37aa71b3cd9d7262e4886ee5d74a628351d456a406f944b834b3e4b2ad +size 2551 diff --git a/Skins/- TekkitoTopoi/pause-continue.png b/Skins/- TekkitoTopoi/pause-continue.png new file mode 100644 index 00000000..172d1e51 --- /dev/null +++ b/Skins/- TekkitoTopoi/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb94e543160747161e2985f49d49513ce5c33a9702afaee5fb6140b13fe74d8 +size 2755 diff --git a/Skins/- TekkitoTopoi/pause-replay.png b/Skins/- TekkitoTopoi/pause-replay.png new file mode 100644 index 00000000..2e53055f --- /dev/null +++ b/Skins/- TekkitoTopoi/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6eb6859e7d5190ce20ff1bf8ac58d345a52858327ea53b9c66865dfaa48af7 +size 2820 diff --git a/Skins/- TekkitoTopoi/pause-retry.png b/Skins/- TekkitoTopoi/pause-retry.png new file mode 100644 index 00000000..ac047fbb --- /dev/null +++ b/Skins/- TekkitoTopoi/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9d1cbf6f94b51108502f17d463b19c98621c2618b82859c94cbba1d8dfa8d4 +size 2558 diff --git a/Skins/- TekkitoTopoi/play-skip-0.png b/Skins/- TekkitoTopoi/play-skip-0.png new file mode 100644 index 00000000..7f4fea01 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53c8b4cf7bb8d02b0cad60b7dc0104b746c5b011670ac5e96207d642689dda7 +size 65605 diff --git a/Skins/- TekkitoTopoi/play-skip-1.png b/Skins/- TekkitoTopoi/play-skip-1.png new file mode 100644 index 00000000..f4d21afe --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b422366a6e409a41d44008975af48a2947f4dde5e4565e6bb4cd550b88d0b2d5 +size 62461 diff --git a/Skins/- TekkitoTopoi/play-skip-2.png b/Skins/- TekkitoTopoi/play-skip-2.png new file mode 100644 index 00000000..fbc2e134 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbc2dbc391d78ef602a80804eaf2bb73572d85bc59a57f40e3d9a2e723fdbe8 +size 62315 diff --git a/Skins/- TekkitoTopoi/play-skip-3.png b/Skins/- TekkitoTopoi/play-skip-3.png new file mode 100644 index 00000000..bc1ad885 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27bd41ec87298c7df3fef372c948646dd9fc72382594229a3fdd3e42dc5503cc +size 61312 diff --git a/Skins/- TekkitoTopoi/play-skip-4.png b/Skins/- TekkitoTopoi/play-skip-4.png new file mode 100644 index 00000000..8e31e638 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c922807142d30d3a2aa1e2b9056d3555dfada9125a08e5fd05b06eb0e243e91 +size 62401 diff --git a/Skins/- TekkitoTopoi/play-skip-5.png b/Skins/- TekkitoTopoi/play-skip-5.png new file mode 100644 index 00000000..e6fc5ed0 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22897e433bef5a393d426294464e6577375517f0bd698b77ecc59dc30853051 +size 62670 diff --git a/Skins/- TekkitoTopoi/play-skip-6.png b/Skins/- TekkitoTopoi/play-skip-6.png new file mode 100644 index 00000000..83ca030e --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f46e3a3142aaa085ba1e309fc35e7e8744a81b1086ec2aa76e07f2770ca761 +size 62634 diff --git a/Skins/- TekkitoTopoi/play-skip-7.png b/Skins/- TekkitoTopoi/play-skip-7.png new file mode 100644 index 00000000..c00f8af4 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fbcb47d9e20aeb3aba8d9addbc4d3ceaadb001885a67fbeb9be0df18204e3f4 +size 64347 diff --git a/Skins/- TekkitoTopoi/play-skip-8.png b/Skins/- TekkitoTopoi/play-skip-8.png new file mode 100644 index 00000000..a3ac2804 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1ceab26b5ce64efcc14fcdceee2da082d65dde638d37bd6e47772c6afe3fe9 +size 63637 diff --git a/Skins/- TekkitoTopoi/play-skip-9.png b/Skins/- TekkitoTopoi/play-skip-9.png new file mode 100644 index 00000000..4fb65586 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e914fc906231b546a5f6caa8b3161372f9d039e9ee740a6fe8d296499faebc +size 63259 diff --git a/Skins/- TekkitoTopoi/play-skip.png b/Skins/- TekkitoTopoi/play-skip.png new file mode 100644 index 00000000..b280b151 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617e3ab8cd8c6d2ceb604a2025de11be986e993f1e914d15329e5f0b8302487c +size 18711 diff --git a/Skins/- TekkitoTopoi/play-unranked.png b/Skins/- TekkitoTopoi/play-unranked.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- TekkitoTopoi/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- TekkitoTopoi/play-warningarrow.png b/Skins/- TekkitoTopoi/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/- TekkitoTopoi/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/- TekkitoTopoi/ranking-A.png b/Skins/- TekkitoTopoi/ranking-A.png new file mode 100644 index 00000000..393836df --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478a68dde7e61114c3f9c1629dc86b2539129aecdcc24ab4ccd3294d4be08f85 +size 3074 diff --git a/Skins/- TekkitoTopoi/ranking-B.png b/Skins/- TekkitoTopoi/ranking-B.png new file mode 100644 index 00000000..8e281c78 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e9abeac11db88cad3edf87e08831dbe101173f436f80b4b88b42beeffa4c95 +size 2492 diff --git a/Skins/- TekkitoTopoi/ranking-C.png b/Skins/- TekkitoTopoi/ranking-C.png new file mode 100644 index 00000000..13b8d602 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b476ddbe05492af887ed326b84a6f1d1c26f54e7114b1991a9ce601d48075dca +size 3532 diff --git a/Skins/- TekkitoTopoi/ranking-D.png b/Skins/- TekkitoTopoi/ranking-D.png new file mode 100644 index 00000000..3dec68b9 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cae61380ce97a24f7b89dbfe0b7780afe5d3aaebb3135747d7d90e53482791 +size 2530 diff --git a/Skins/- TekkitoTopoi/ranking-S.png b/Skins/- TekkitoTopoi/ranking-S.png new file mode 100644 index 00000000..46cce7d1 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176b4c8e1e3c4a0cd22b811efb0cc8b34bc991332fbb68e488e4a8ac64280669 +size 3401 diff --git a/Skins/- TekkitoTopoi/ranking-SH.png b/Skins/- TekkitoTopoi/ranking-SH.png new file mode 100644 index 00000000..04593acb --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e145c88c81556f7d5ff3ad5a363265d8699a8dfc1482524c32516aa3f9dde60a +size 3401 diff --git a/Skins/- TekkitoTopoi/ranking-X.png b/Skins/- TekkitoTopoi/ranking-X.png new file mode 100644 index 00000000..43c8b765 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b0d1e8c788dff20f4340dbc58b01d32055c66b9d3441ba8e924a453997ff11 +size 2864 diff --git a/Skins/- TekkitoTopoi/ranking-XH.png b/Skins/- TekkitoTopoi/ranking-XH.png new file mode 100644 index 00000000..f7c7e7ea --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95651000313a174438bc4f09184c34143d9245ce8ed7a4f0813164260c17aad +size 2864 diff --git a/Skins/- TekkitoTopoi/ranking-a-small.png b/Skins/- TekkitoTopoi/ranking-a-small.png new file mode 100644 index 00000000..1abceff4 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5edf1aebbef7a8f8a9a919cc524aa89451a63606b27b341e7b9354319408a0 +size 1204 diff --git a/Skins/- TekkitoTopoi/ranking-accuracy.png b/Skins/- TekkitoTopoi/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/ranking-b-small.png b/Skins/- TekkitoTopoi/ranking-b-small.png new file mode 100644 index 00000000..621ca5ea --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dabd351de7c3b472cd59e4011399cec86e4392b9ae8a5436ace32367e61378d +size 1151 diff --git a/Skins/- TekkitoTopoi/ranking-c-small.png b/Skins/- TekkitoTopoi/ranking-c-small.png new file mode 100644 index 00000000..5bbd6542 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81031c0b34b43a74bbedeaa2af97dc3037177f9d755116217eae8c82d31bccd6 +size 1240 diff --git a/Skins/- TekkitoTopoi/ranking-d-small.png b/Skins/- TekkitoTopoi/ranking-d-small.png new file mode 100644 index 00000000..e4c87d31 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384a428b2f3426a1f2fbfeca46a4c76d436182cd96d53f124582fe12f7947a1b +size 1179 diff --git a/Skins/- TekkitoTopoi/ranking-graph.png b/Skins/- TekkitoTopoi/ranking-graph.png new file mode 100644 index 00000000..293292e7 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c15fa125909518913318713288a105cda88d4c11d3496ca4f4aa8abfb8c9b174 +size 1513 diff --git a/Skins/- TekkitoTopoi/ranking-maxcombo.png b/Skins/- TekkitoTopoi/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/ranking-panel.png b/Skins/- TekkitoTopoi/ranking-panel.png new file mode 100644 index 00000000..9b262696 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea2c0003b18bc99c1551dd39418ccfae6849dcf9e93c1efc0f1aa0c7731df85 +size 6635 diff --git a/Skins/- TekkitoTopoi/ranking-perfect.png b/Skins/- TekkitoTopoi/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/ranking-s-small.png b/Skins/- TekkitoTopoi/ranking-s-small.png new file mode 100644 index 00000000..14770353 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-s-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d94bb0957794e607b6dcbc81064801c7c90e3a4c62db0cc7b22d000115c61ae +size 1262 diff --git a/Skins/- TekkitoTopoi/ranking-sh-small.png b/Skins/- TekkitoTopoi/ranking-sh-small.png new file mode 100644 index 00000000..7ab0217f --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-sh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5badb979f6852f020387b7dffc6abb3a68af842c15f35022e077e2ae472c4b19 +size 1262 diff --git a/Skins/- TekkitoTopoi/ranking-title.png b/Skins/- TekkitoTopoi/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/ranking-winner.png b/Skins/- TekkitoTopoi/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- TekkitoTopoi/ranking-x-small.png b/Skins/- TekkitoTopoi/ranking-x-small.png new file mode 100644 index 00000000..fa3cc7d3 --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-x-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258b404bbf040770dc30e0124bed33bd865cfb5b57cb317d491c90b10171640d +size 1199 diff --git a/Skins/- TekkitoTopoi/ranking-xh-small.png b/Skins/- TekkitoTopoi/ranking-xh-small.png new file mode 100644 index 00000000..3039873b --- /dev/null +++ b/Skins/- TekkitoTopoi/ranking-xh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98646b05fdeeeabb7b98c19c4d957bd81e4bd91317061136a1b052cc920e655 +size 1199 diff --git a/Skins/- TekkitoTopoi/rankm.png b/Skins/- TekkitoTopoi/rankm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/rankm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/ready.png b/Skins/- TekkitoTopoi/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/readys.ogg b/Skins/- TekkitoTopoi/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- TekkitoTopoi/reversearrow.png b/Skins/- TekkitoTopoi/reversearrow.png new file mode 100644 index 00000000..250877e0 --- /dev/null +++ b/Skins/- TekkitoTopoi/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa769b0de4c2bae0713427dff5f94efda9825d09b096df0b49c217502913a13 +size 4853 diff --git a/Skins/- TekkitoTopoi/reversearrow1.png b/Skins/- TekkitoTopoi/reversearrow1.png new file mode 100644 index 00000000..b81d8068 --- /dev/null +++ b/Skins/- TekkitoTopoi/reversearrow1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c477f12383c20f0eadb356c792a62103f3b906dda37358fe1128f968e6ea863 +size 6343 diff --git a/Skins/- TekkitoTopoi/score-0.png b/Skins/- TekkitoTopoi/score-0.png new file mode 100644 index 00000000..8bd54724 --- /dev/null +++ b/Skins/- TekkitoTopoi/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49010a02054eda89dfe00d9e536243f9cf85462f6a5acb0fa1d361b47d848fc +size 4370 diff --git a/Skins/- TekkitoTopoi/score-1.png b/Skins/- TekkitoTopoi/score-1.png new file mode 100644 index 00000000..20d8c3f4 --- /dev/null +++ b/Skins/- TekkitoTopoi/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058a3378bc1450d9f9a7eca7e795293615cf8b1674746ed2dd635dfacf6d6029 +size 3437 diff --git a/Skins/- TekkitoTopoi/score-2.png b/Skins/- TekkitoTopoi/score-2.png new file mode 100644 index 00000000..46698ecd --- /dev/null +++ b/Skins/- TekkitoTopoi/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e787f61b14c6eeba743374147e45058892fc54e0e3c73423ef4e591489b5a7 +size 4006 diff --git a/Skins/- TekkitoTopoi/score-3.png b/Skins/- TekkitoTopoi/score-3.png new file mode 100644 index 00000000..0a57da44 --- /dev/null +++ b/Skins/- TekkitoTopoi/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a775d0462dc3dbc52175c45c2369eaab054e040168b115da68ec07708c26f6ee +size 4139 diff --git a/Skins/- TekkitoTopoi/score-4.png b/Skins/- TekkitoTopoi/score-4.png new file mode 100644 index 00000000..35ec7cc3 --- /dev/null +++ b/Skins/- TekkitoTopoi/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d908cb8797ee05ee050dca3c74190d186e574861117652829e2f7b2a8192813 +size 4019 diff --git a/Skins/- TekkitoTopoi/score-5.png b/Skins/- TekkitoTopoi/score-5.png new file mode 100644 index 00000000..35791022 --- /dev/null +++ b/Skins/- TekkitoTopoi/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784664ff70d0ce821cda5267b55b8103bc523c7585a86104b93e7711d8660878 +size 3995 diff --git a/Skins/- TekkitoTopoi/score-6.png b/Skins/- TekkitoTopoi/score-6.png new file mode 100644 index 00000000..b264557f --- /dev/null +++ b/Skins/- TekkitoTopoi/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4833a5808e3d68902f2f0d3b4ada18ca1b17d5a0f90cb2c6178e35e7d39d74a2 +size 4527 diff --git a/Skins/- TekkitoTopoi/score-7.png b/Skins/- TekkitoTopoi/score-7.png new file mode 100644 index 00000000..2a24a62b --- /dev/null +++ b/Skins/- TekkitoTopoi/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ec4ac6955ece25d9e3722a13f37c06bbdfbe39b02b903a664a53e216346b19 +size 3820 diff --git a/Skins/- TekkitoTopoi/score-8.png b/Skins/- TekkitoTopoi/score-8.png new file mode 100644 index 00000000..74d5f29c --- /dev/null +++ b/Skins/- TekkitoTopoi/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aae9488caddb3e6669db3025fd03cf252ff653e37d35d5ac5a22705c9632c1c +size 4652 diff --git a/Skins/- TekkitoTopoi/score-9.png b/Skins/- TekkitoTopoi/score-9.png new file mode 100644 index 00000000..994ec634 --- /dev/null +++ b/Skins/- TekkitoTopoi/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1750492b06b2d7906de17d2efdde35316922796436a262737337c6a350b420d8 +size 4559 diff --git a/Skins/- TekkitoTopoi/score-comma.png b/Skins/- TekkitoTopoi/score-comma.png new file mode 100644 index 00000000..17b20f05 --- /dev/null +++ b/Skins/- TekkitoTopoi/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b51f909a9917ecf55cc0d75e8e38bc0856df5f835c260c802fc67e509c88650 +size 3146 diff --git a/Skins/- TekkitoTopoi/score-dot.png b/Skins/- TekkitoTopoi/score-dot.png new file mode 100644 index 00000000..ae074ae5 --- /dev/null +++ b/Skins/- TekkitoTopoi/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:080d639e7aaee4937bafd916269aa6c159891514d1243410b083a9c73511b7b3 +size 3028 diff --git a/Skins/- TekkitoTopoi/score-percent.png b/Skins/- TekkitoTopoi/score-percent.png new file mode 100644 index 00000000..d00f764c --- /dev/null +++ b/Skins/- TekkitoTopoi/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86283da1e0e9afb3d1671a29bc9d7a7600b88e4a1d531084ec3ddecb9dd6d24c +size 5041 diff --git a/Skins/- TekkitoTopoi/score-x.png b/Skins/- TekkitoTopoi/score-x.png new file mode 100644 index 00000000..42cec5e2 --- /dev/null +++ b/Skins/- TekkitoTopoi/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68cad64d99c4a3838d6df52d0565c93e9cf6be6c2fdb3ab8a689cfb72a1abdd +size 3601 diff --git a/Skins/- TekkitoTopoi/scorebar-bg.png b/Skins/- TekkitoTopoi/scorebar-bg.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- TekkitoTopoi/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- TekkitoTopoi/scorebar-colour.png b/Skins/- TekkitoTopoi/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/scoreentry-comma.png b/Skins/- TekkitoTopoi/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/- TekkitoTopoi/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/- TekkitoTopoi/scoreentry-dot.png b/Skins/- TekkitoTopoi/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/- TekkitoTopoi/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/- TekkitoTopoi/scoreentry-percent.png b/Skins/- TekkitoTopoi/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/scoreentry-x.png b/Skins/- TekkitoTopoi/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/selection-mod-autoplay.png b/Skins/- TekkitoTopoi/selection-mod-autoplay.png new file mode 100644 index 00000000..d038b109 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91323b06f800618e6ec4f03e15b8446853c3910663e7e358e3e91554a9092fbb +size 1434 diff --git a/Skins/- TekkitoTopoi/selection-mod-cinema.png b/Skins/- TekkitoTopoi/selection-mod-cinema.png new file mode 100644 index 00000000..a07e288a --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f93d840e63b2f389041d1205146cd6b4ac14046b67318abbf3f7fe13c359388 +size 1516 diff --git a/Skins/- TekkitoTopoi/selection-mod-doubletime.png b/Skins/- TekkitoTopoi/selection-mod-doubletime.png new file mode 100644 index 00000000..dc096498 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbcc499d6675e2c7869c339418148606b4215f4da6a10be03d84c0cdfbe4ff0 +size 1406 diff --git a/Skins/- TekkitoTopoi/selection-mod-easy.png b/Skins/- TekkitoTopoi/selection-mod-easy.png new file mode 100644 index 00000000..5582ec7d --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef93fba675b676f4fb378287175067d6e0d2b1bca10a57ae15778fa57c3c463 +size 1496 diff --git a/Skins/- TekkitoTopoi/selection-mod-flashlight.png b/Skins/- TekkitoTopoi/selection-mod-flashlight.png new file mode 100644 index 00000000..9af77228 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee4b3d556784214720d3a63f38b1e0f995eaa10805ec87ae7d86c40e852ca36 +size 1201 diff --git a/Skins/- TekkitoTopoi/selection-mod-halftime.png b/Skins/- TekkitoTopoi/selection-mod-halftime.png new file mode 100644 index 00000000..8cdca48f --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95975b94940934c336ecb449b473a6d14b61c40be2763c589344078b7c8601f9 +size 1331 diff --git a/Skins/- TekkitoTopoi/selection-mod-hardrock.png b/Skins/- TekkitoTopoi/selection-mod-hardrock.png new file mode 100644 index 00000000..f51b8da7 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb51fabe6571d18deb33bed0686aab54a34fd78bdf6255b4e62fe290d803110a +size 1313 diff --git a/Skins/- TekkitoTopoi/selection-mod-hidden.png b/Skins/- TekkitoTopoi/selection-mod-hidden.png new file mode 100644 index 00000000..c7102859 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a902784c8869bb928c703ab8fe24eaa8fa7019fc4f3b979060d430fc378d0f52 +size 1489 diff --git a/Skins/- TekkitoTopoi/selection-mod-nightcore.png b/Skins/- TekkitoTopoi/selection-mod-nightcore.png new file mode 100644 index 00000000..7ace5501 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b0494682ae955c4d824f00bea65974cc3547a2005ceed343d3a3cb63fc5a5b +size 1471 diff --git a/Skins/- TekkitoTopoi/selection-mod-nofail.png b/Skins/- TekkitoTopoi/selection-mod-nofail.png new file mode 100644 index 00000000..4e9d1a69 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3445da66df2285326ba74b9d2f79706b66a449016b48bd659406f705c10af9f5 +size 1321 diff --git a/Skins/- TekkitoTopoi/selection-mod-perfect.png b/Skins/- TekkitoTopoi/selection-mod-perfect.png new file mode 100644 index 00000000..3635467e --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00550bf913681dec3733deaef5dad846eae7910574dfe3c47a9f813c588a2db1 +size 1455 diff --git a/Skins/- TekkitoTopoi/selection-mod-relax.png b/Skins/- TekkitoTopoi/selection-mod-relax.png new file mode 100644 index 00000000..9bee0c0d --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6de3d4522d6e4376a9af4e44fba549d46a55b6d73f3e4a8c0254f513aa2aaef +size 1179 diff --git a/Skins/- TekkitoTopoi/selection-mod-relax2.png b/Skins/- TekkitoTopoi/selection-mod-relax2.png new file mode 100644 index 00000000..a748970c --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa07cb1d208df5197d020fd82781e6d6a2ee43d59ab8ff8d54bfe4c31f15973 +size 1527 diff --git a/Skins/- TekkitoTopoi/selection-mod-scorev2.png b/Skins/- TekkitoTopoi/selection-mod-scorev2.png new file mode 100644 index 00000000..2a742f72 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ba7578bda14a99bf40bd3f05e7be442064603ebd68209f8dac91acbc457529 +size 1557 diff --git a/Skins/- TekkitoTopoi/selection-mod-spunout.png b/Skins/- TekkitoTopoi/selection-mod-spunout.png new file mode 100644 index 00000000..85e2f1f4 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17d429cb8c259d6f529c80a29747d899e34cb102b306c80615cacf11334b6af +size 1662 diff --git a/Skins/- TekkitoTopoi/selection-mod-suddendeath.png b/Skins/- TekkitoTopoi/selection-mod-suddendeath.png new file mode 100644 index 00000000..24ba5617 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a5abd369689d03ff574851aafca1e99ecb5649a190e710fa08908529acd6af +size 1657 diff --git a/Skins/- TekkitoTopoi/selection-mod-target.png b/Skins/- TekkitoTopoi/selection-mod-target.png new file mode 100644 index 00000000..7f8bedf3 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3a06a1d3571991a949a8a5941ec26f5fa7e2e09d0ab4ca478326ffe56e1745 +size 1426 diff --git a/Skins/- TekkitoTopoi/selection-mode-over.png b/Skins/- TekkitoTopoi/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/selection-mode.png b/Skins/- TekkitoTopoi/selection-mode.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/selection-mods-over.png b/Skins/- TekkitoTopoi/selection-mods-over.png new file mode 100644 index 00000000..19bf3e9a --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9e45bd521e1f952c1d19c8eacfcd8ced9795f5b06497c1bd6926b2a1c5e146 +size 111 diff --git a/Skins/- TekkitoTopoi/selection-mods.png b/Skins/- TekkitoTopoi/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/selection-options-over.png b/Skins/- TekkitoTopoi/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/selection-options.png b/Skins/- TekkitoTopoi/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/selection-random-over.png b/Skins/- TekkitoTopoi/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/selection-random.png b/Skins/- TekkitoTopoi/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/selection-tab.png b/Skins/- TekkitoTopoi/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/- TekkitoTopoi/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/- TekkitoTopoi/skin.ini b/Skins/- TekkitoTopoi/skin.ini new file mode 100644 index 00000000..15d160d4 --- /dev/null +++ b/Skins/- TekkitoTopoi/skin.ini @@ -0,0 +1,29 @@ +https://discord.gg/GnU45qMrj8 + +[General] +Name: - TekkitoTopoi +Version: 2.7 + +AllowSliderBallTint: 1 +CursorExpand: 0 +CursorRotate: 0 +CursorTrailRotate: 0 + +[Colours] +Combo1: 145,229,103 +Combo2: 255,213,128 +Combo3: 242,121,97 +Combo4: 255,140,179 +Combo5: 187,103,229 +Combo6: 140,236,255 +SongSelectActiveText: 255,255,255 + +SliderBorder: 80,80,80 +SliderTrackOverride: 0,0,0 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 5 +ScorePrefix: score +ScoreOverlap: 2 +ComboPrefix: none \ No newline at end of file diff --git a/Skins/- TekkitoTopoi/sliderb.png b/Skins/- TekkitoTopoi/sliderb.png new file mode 100644 index 00000000..f12daca4 --- /dev/null +++ b/Skins/- TekkitoTopoi/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98620ed2194d038ae91820426ab616245baaa4b2e4db5ec0eed3d3ce58c2a668 +size 10899 diff --git a/Skins/- TekkitoTopoi/sliderendcircle.png b/Skins/- TekkitoTopoi/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- TekkitoTopoi/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- TekkitoTopoi/sliderfollowcircle.png b/Skins/- TekkitoTopoi/sliderfollowcircle.png new file mode 100644 index 00000000..bcce2d99 --- /dev/null +++ b/Skins/- TekkitoTopoi/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e7989b0fa6a60f7a10a068b0ec98b5c5dc0e5285dd99f8fc33ae06472c711d +size 2779 diff --git a/Skins/- TekkitoTopoi/sliderfollowpoint.png b/Skins/- TekkitoTopoi/sliderfollowpoint.png new file mode 100644 index 00000000..bcce2d99 --- /dev/null +++ b/Skins/- TekkitoTopoi/sliderfollowpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e7989b0fa6a60f7a10a068b0ec98b5c5dc0e5285dd99f8fc33ae06472c711d +size 2779 diff --git a/Skins/- TekkitoTopoi/sliderscorepoint.png b/Skins/- TekkitoTopoi/sliderscorepoint.png new file mode 100644 index 00000000..a6d75024 --- /dev/null +++ b/Skins/- TekkitoTopoi/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c97f160d0c1065b8c769f6cb03b073ede594cecbfa4504963671850e51a7ec +size 5295 diff --git a/Skins/- TekkitoTopoi/soft-hitclap.ogg b/Skins/- TekkitoTopoi/soft-hitclap.ogg new file mode 100644 index 00000000..d6d2b5bf --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa0a2f09a1ad9aec04bc6708ea34d3297e9bf76e15769bdca939f0de077032b +size 5349 diff --git a/Skins/- TekkitoTopoi/soft-hitclap.wav b/Skins/- TekkitoTopoi/soft-hitclap.wav new file mode 100644 index 00000000..ba0577bd --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d41d2409a443714d2afda3e6745288e4a699422d8248a70ffd8a9d4ebc71d1 +size 4548 diff --git a/Skins/- TekkitoTopoi/soft-hitclap2.wav b/Skins/- TekkitoTopoi/soft-hitclap2.wav new file mode 100644 index 00000000..3d8aaa60 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c6bc82e55b02266241dcc1d2095e33205c0e899a72bf22e5f3c00c7d05797b +size 42468 diff --git a/Skins/- TekkitoTopoi/soft-hitfinish.ogg b/Skins/- TekkitoTopoi/soft-hitfinish.ogg new file mode 100644 index 00000000..514b7ea0 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469ffc3dcc6a5016f4ce54dd9d79e9c4cc2782ff12164f6e0fc263a959a70257 +size 15904 diff --git a/Skins/- TekkitoTopoi/soft-hitfinish.wav b/Skins/- TekkitoTopoi/soft-hitfinish.wav new file mode 100644 index 00000000..1ddf64f1 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c1bfbbda81efa42b5b936562fa0f17c05fdd53af4e56bba649a8aebab59a7d +size 52780 diff --git a/Skins/- TekkitoTopoi/soft-hitfinish2.wav b/Skins/- TekkitoTopoi/soft-hitfinish2.wav new file mode 100644 index 00000000..1ddf64f1 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c1bfbbda81efa42b5b936562fa0f17c05fdd53af4e56bba649a8aebab59a7d +size 52780 diff --git a/Skins/- TekkitoTopoi/soft-hitnormal.ogg b/Skins/- TekkitoTopoi/soft-hitnormal.ogg new file mode 100644 index 00000000..8e96baff --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf91ddb05ee476fdd62eb99b71aa099fd41ca5613f56092cb738a4bfd5166677 +size 8106 diff --git a/Skins/- TekkitoTopoi/soft-hitnormal.wav b/Skins/- TekkitoTopoi/soft-hitnormal.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/- TekkitoTopoi/soft-hitnormal1.wav b/Skins/- TekkitoTopoi/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/- TekkitoTopoi/soft-hitnormal2.wav b/Skins/- TekkitoTopoi/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/- TekkitoTopoi/soft-hitsoft.wav b/Skins/- TekkitoTopoi/soft-hitsoft.wav new file mode 100644 index 00000000..5143a8c5 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96a68309966122365c86d83e44d01817e1f4b004a02b55468ece29a27b701ab +size 51344 diff --git a/Skins/- TekkitoTopoi/soft-hitwhistle.ogg b/Skins/- TekkitoTopoi/soft-hitwhistle.ogg new file mode 100644 index 00000000..7adaed3d --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10135c5ce2ff2eb41717fd021cca7dd76279f6d590e6d535a50678c05368eb51 +size 20498 diff --git a/Skins/- TekkitoTopoi/soft-hitwhistle.wav b/Skins/- TekkitoTopoi/soft-hitwhistle.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/- TekkitoTopoi/soft-hitwhistle2.wav b/Skins/- TekkitoTopoi/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/- TekkitoTopoi/soft-sliderslide.wav b/Skins/- TekkitoTopoi/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- TekkitoTopoi/soft-sliderslide2.wav b/Skins/- TekkitoTopoi/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- TekkitoTopoi/soft-slidertick.ogg b/Skins/- TekkitoTopoi/soft-slidertick.ogg new file mode 100644 index 00000000..8cabb67e --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1966c83abd3331e008c92ad24054507a86e77eefa490390a62da0edf9d01b260 +size 3999 diff --git a/Skins/- TekkitoTopoi/soft-slidertick.wav b/Skins/- TekkitoTopoi/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/- TekkitoTopoi/soft-slidertick2.wav b/Skins/- TekkitoTopoi/soft-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- TekkitoTopoi/soft-sliderwhistle.ogg b/Skins/- TekkitoTopoi/soft-sliderwhistle.ogg new file mode 100644 index 00000000..bc495ed7 --- /dev/null +++ b/Skins/- TekkitoTopoi/soft-sliderwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161b28df063ef0f478339ebfd1d5e68eddf70f502575989a8afa049d302b4188 +size 3999 diff --git a/src/default-skin/soft-sliderwhistle.wav b/Skins/- TekkitoTopoi/soft-sliderwhistle.wav similarity index 100% rename from src/default-skin/soft-sliderwhistle.wav rename to Skins/- TekkitoTopoi/soft-sliderwhistle.wav diff --git a/Skins/- TekkitoTopoi/softl-hitclap2.wav b/Skins/- TekkitoTopoi/softl-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- TekkitoTopoi/softl-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- TekkitoTopoi/softl-hitfinish.wav b/Skins/- TekkitoTopoi/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/- TekkitoTopoi/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/- TekkitoTopoi/spinner-approachcircle.png b/Skins/- TekkitoTopoi/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/spinner-background.png b/Skins/- TekkitoTopoi/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/spinner-circle.png b/Skins/- TekkitoTopoi/spinner-circle.png new file mode 100644 index 00000000..b313729e --- /dev/null +++ b/Skins/- TekkitoTopoi/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ea51d5598e295b8fedfaef75463641fa1cabc3bc0b6b4528bfd996cf3ed6b5 +size 474510 diff --git a/Skins/- TekkitoTopoi/spinner-clear.png b/Skins/- TekkitoTopoi/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/spinner-metre.png b/Skins/- TekkitoTopoi/spinner-metre.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/spinner-osu.png b/Skins/- TekkitoTopoi/spinner-osu.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/spinner-rpm.png b/Skins/- TekkitoTopoi/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/spinner-spin.png b/Skins/- TekkitoTopoi/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/spinnerbonus.wav b/Skins/- TekkitoTopoi/spinnerbonus.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- TekkitoTopoi/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- TekkitoTopoi/star.png b/Skins/- TekkitoTopoi/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- TekkitoTopoi/star2.png b/Skins/- TekkitoTopoi/star2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- TekkitoTopoi/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- rafis pinkity edit by henry/4K.ini b/Skins/- rafis pinkity edit by henry/4K.ini new file mode 100644 index 00000000..7e996620 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/4K.ini @@ -0,0 +1,18 @@ +//Mania skin config +ColumnLineWidth: 0.7 +ColumnStart: 136 +BarlineWidth: 1.2 +HitPosition: 402 +SpecialStyle: 0 +SpecialPositionLeft: 1 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +FontCombo: score +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +ColumnLine: 1,1,1,1,1 +//Colours +//images +//Keys diff --git a/Skins/- rafis pinkity edit by henry/applause.mp3 b/Skins/- rafis pinkity edit by henry/applause.mp3 new file mode 100644 index 00000000..d4368ce7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037d7a824298287d3be534fc88d42e48c1404a3bfeca063f7f55661b79c0f737 +size 214125 diff --git a/Skins/- rafis pinkity edit by henry/applause.sfk b/Skins/- rafis pinkity edit by henry/applause.sfk new file mode 100644 index 00000000..ef1da230 Binary files /dev/null and b/Skins/- rafis pinkity edit by henry/applause.sfk differ diff --git a/Skins/- rafis pinkity edit by henry/approachcircle.png b/Skins/- rafis pinkity edit by henry/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/- rafis pinkity edit by henry/button-left.png b/Skins/- rafis pinkity edit by henry/button-left.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/- rafis pinkity edit by henry/button-middle.png b/Skins/- rafis pinkity edit by henry/button-middle.png new file mode 100644 index 00000000..ff6450e6 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26d1b2213d058c494c0e45c54638a1d05345e9317eaefee2e964e0cd45ae2be +size 2811 diff --git a/Skins/- rafis pinkity edit by henry/button-right.png b/Skins/- rafis pinkity edit by henry/button-right.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/- rafis pinkity edit by henry/coin.png b/Skins/- rafis pinkity edit by henry/coin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/coin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/coins-bg.png b/Skins/- rafis pinkity edit by henry/coins-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/coins-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/coins-buy.png b/Skins/- rafis pinkity edit by henry/coins-buy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/coins-buy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/coins-earn.ogg b/Skins/- rafis pinkity edit by henry/coins-earn.ogg new file mode 100644 index 00000000..c003fffc --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/coins-earn.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bb73cd5332977dc570d6c9a272f8237f0dd17242da9e57ba96ea0a782abc87 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/coins-recharge.ogg b/Skins/- rafis pinkity edit by henry/coins-recharge.ogg new file mode 100644 index 00000000..a997049e --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/coins-recharge.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb398a9eabb4e0cad7fc47335b0699c9198039f6e8dd3efb54927b7df57cc36c +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/coins-use.ogg b/Skins/- rafis pinkity edit by henry/coins-use.ogg new file mode 100644 index 00000000..bbb5539b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/coins-use.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b935490a33baff880be00a7b2e6f08b353b4869ad43a060bda2866c9dcd71b8d +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/coins.png b/Skins/- rafis pinkity edit by henry/coins.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/coins.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/comboburst.png b/Skins/- rafis pinkity edit by henry/comboburst.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/- rafis pinkity edit by henry/count1.png b/Skins/- rafis pinkity edit by henry/count1.png new file mode 100644 index 00000000..c26ec9e8 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d00000e327042e5a22f066d622acb87a6900f1a83e58aecd2c66f8a8e4c10ea +size 17232 diff --git a/Skins/- rafis pinkity edit by henry/count1s.ogg b/Skins/- rafis pinkity edit by henry/count1s.ogg new file mode 100644 index 00000000..ad79a312 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/count1s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b218483ecd7e1b99f908cf68482e485a7830bdaf27d17325a2064d6b333e5384 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/count2.png b/Skins/- rafis pinkity edit by henry/count2.png new file mode 100644 index 00000000..6409b082 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593cd74803be2c97fe9f5eac38fc70fe397b3df4a99206f0f85c70d071e151ee +size 17232 diff --git a/Skins/- rafis pinkity edit by henry/count2s.ogg b/Skins/- rafis pinkity edit by henry/count2s.ogg new file mode 100644 index 00000000..b1d2c239 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/count2s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b4326a552e47a5fbb8cebbf6d0f4c443caf043f020adae0b8d37e441911ff8 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/count3.png b/Skins/- rafis pinkity edit by henry/count3.png new file mode 100644 index 00000000..7bd2b02b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf7ada11b48390117bc6f16c043e9939051dedcd7485f99d3a30f12582f2998 +size 17232 diff --git a/Skins/- rafis pinkity edit by henry/count3s.ogg b/Skins/- rafis pinkity edit by henry/count3s.ogg new file mode 100644 index 00000000..c537f8b3 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/count3s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074c9e1f49202d170640348931591ecaa8a2de026bc017275c53aa1b6ceab485 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/cursor.png b/Skins/- rafis pinkity edit by henry/cursor.png new file mode 100644 index 00000000..77724e20 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e24f74dfff41e2dd9849dfb804325d0d997365560729e0e0adde777d128bb9a +size 3964 diff --git a/Skins/- rafis pinkity edit by henry/cursortail.png b/Skins/- rafis pinkity edit by henry/cursortail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/cursortail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/cursortrail.png b/Skins/- rafis pinkity edit by henry/cursortrail.png new file mode 100644 index 00000000..5f7d7ab5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64599e58eed29c3d82e378661d24973b0ee216268244ea080f4b50d6bd70722f +size 3995 diff --git a/Skins/- rafis pinkity edit by henry/default-0.png b/Skins/- rafis pinkity edit by henry/default-0.png new file mode 100644 index 00000000..aa28ab0b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2a1371655d38d5d6556324587ce7e641331cc0a939c5592080cadbeeba35cc +size 2296 diff --git a/Skins/- rafis pinkity edit by henry/default-1.png b/Skins/- rafis pinkity edit by henry/default-1.png new file mode 100644 index 00000000..8bd9bc87 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e85e780e626d21ed6a67a83e9487d4aa457b8eadfd2850cbaea9690ade08a1 +size 870 diff --git a/Skins/- rafis pinkity edit by henry/default-2.png b/Skins/- rafis pinkity edit by henry/default-2.png new file mode 100644 index 00000000..83ebddf5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa1ba658fdb9450043a0fdfb4959bb49791141a9970c8339f88770e25e94bbd +size 2259 diff --git a/Skins/- rafis pinkity edit by henry/default-3.png b/Skins/- rafis pinkity edit by henry/default-3.png new file mode 100644 index 00000000..87091954 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806637db7e584d0ca13abccc95b89ac40b66629945a4f0c12e32dfb0ae14bd2b +size 2600 diff --git a/Skins/- rafis pinkity edit by henry/default-4.png b/Skins/- rafis pinkity edit by henry/default-4.png new file mode 100644 index 00000000..3525ebfe --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ae038137fb0e0dd7c9ce6f2eedebf5f54b03eb20128a1ae75d2a16961baf3f +size 1668 diff --git a/Skins/- rafis pinkity edit by henry/default-5.png b/Skins/- rafis pinkity edit by henry/default-5.png new file mode 100644 index 00000000..8069fa50 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581eec904b3bf33091b17f4f23fc68b5652484fb9194020b3bfc658a14d0ab6e +size 2172 diff --git a/Skins/- rafis pinkity edit by henry/default-6.png b/Skins/- rafis pinkity edit by henry/default-6.png new file mode 100644 index 00000000..1e4bb9ac --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a88aecdde29c07e847c5a20647f4dde0e9a5c404c7435794d2f4be97d915b7 +size 2152 diff --git a/Skins/- rafis pinkity edit by henry/default-7.png b/Skins/- rafis pinkity edit by henry/default-7.png new file mode 100644 index 00000000..9ba04da9 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2eba1ceeebe31921d47d272490fc24659dc7d4ce4941d39dfe571643e3a64ba +size 1711 diff --git a/Skins/- rafis pinkity edit by henry/default-8.png b/Skins/- rafis pinkity edit by henry/default-8.png new file mode 100644 index 00000000..c092861b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dc6d5187cedd1701bf84c11871ac885951c2712edf3ce0876d6498f2770d7a +size 2555 diff --git a/Skins/- rafis pinkity edit by henry/default-9.png b/Skins/- rafis pinkity edit by henry/default-9.png new file mode 100644 index 00000000..ad0038a9 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445243872032ef35afd20b507e5e4ae3d3412a1dfd0d6cce96d8a68b3f004939 +size 2271 diff --git a/Skins/- rafis pinkity edit by henry/drum--hitwhistle.ogg b/Skins/- rafis pinkity edit by henry/drum--hitwhistle.ogg new file mode 100644 index 00000000..6616f5ab --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/drum--hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e25b951022cc21468e6391381b05a9b98e6e5745e97d1b8fa5a8c76f42ccd8b +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/drum-hitclap.ogg b/Skins/- rafis pinkity edit by henry/drum-hitclap.ogg new file mode 100644 index 00000000..b0540174 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0090d97ee26d03be66ab0965153fa3460d7c10d4787760f18e2f6a8b801f6c +size 4909 diff --git a/Skins/- rafis pinkity edit by henry/drum-hitclap2.ogg b/Skins/- rafis pinkity edit by henry/drum-hitclap2.ogg new file mode 100644 index 00000000..8ca3742f --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/drum-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad3745a5ced85a257671befabe399c3ee5beb34dbdb21d85df5f7adb95dfdf3 +size 18985 diff --git a/Skins/- rafis pinkity edit by henry/drum-hitfinish.ogg b/Skins/- rafis pinkity edit by henry/drum-hitfinish.ogg new file mode 100644 index 00000000..e708f36d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd673a02d88be045ea44115c2b6f6769ec488b2d1937b7b1d14dad06ca48c262 +size 6846 diff --git a/Skins/- rafis pinkity edit by henry/drum-hitnormal.ogg b/Skins/- rafis pinkity edit by henry/drum-hitnormal.ogg new file mode 100644 index 00000000..83778fda --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941c895c2b3d81cfe5c4b53c95457e1ce0684160602ee78fe9e0356aec557050 +size 7527 diff --git a/Skins/- rafis pinkity edit by henry/drum-hitwhistle.ogg b/Skins/- rafis pinkity edit by henry/drum-hitwhistle.ogg new file mode 100644 index 00000000..0b853991 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bae33fb90f5f4ebe449c02add71d2aba704d261b374aa0dc4823fb9cec6f87 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/drum-sliderslide.ogg b/Skins/- rafis pinkity edit by henry/drum-sliderslide.ogg new file mode 100644 index 00000000..ca1afbde --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/drum-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0e12d4a6358e8ba8f4ef6f8c15c095495bf177683e4d8afc6caa37ecfb55f6 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/fail-background.png b/Skins/- rafis pinkity edit by henry/fail-background.png new file mode 100644 index 00000000..0c7fda16 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a11c564fc8fe284bd3686c44155f81d00552761a430765039095ebd1d91ae1b +size 2341816 diff --git a/Skins/- rafis pinkity edit by henry/failsound.wav b/Skins/- rafis pinkity edit by henry/failsound.wav new file mode 100644 index 00000000..3da43c21 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/failsound.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35f383f47a00ef3e1d50c903fa850a811fefd1b148d26978232373bae1c28f5 +size 3948896 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-0.png b/Skins/- rafis pinkity edit by henry/followpoint-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-1.png b/Skins/- rafis pinkity edit by henry/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-2.png b/Skins/- rafis pinkity edit by henry/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-3.png b/Skins/- rafis pinkity edit by henry/followpoint-3.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-4.png b/Skins/- rafis pinkity edit by henry/followpoint-4.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-5.png b/Skins/- rafis pinkity edit by henry/followpoint-5.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-6.png b/Skins/- rafis pinkity edit by henry/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-7.png b/Skins/- rafis pinkity edit by henry/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-8.png b/Skins/- rafis pinkity edit by henry/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/followpoint-9.png b/Skins/- rafis pinkity edit by henry/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/followpoint.png b/Skins/- rafis pinkity edit by henry/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- rafis pinkity edit by henry/go.png b/Skins/- rafis pinkity edit by henry/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- rafis pinkity edit by henry/gos.ogg b/Skins/- rafis pinkity edit by henry/gos.ogg new file mode 100644 index 00000000..4d4118d0 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/gos.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984bb54cb198ef4bb12b81b2861643990f1cfbc3053ecbf84276c1d577c41421 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/hit0.png b/Skins/- rafis pinkity edit by henry/hit0.png new file mode 100644 index 00000000..5234ccdc --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4cd4105f144f84a339d748422a71a5d69ff9ae122e1b284e804f2387a7892b +size 68458 diff --git a/Skins/- rafis pinkity edit by henry/hit100-0.png b/Skins/- rafis pinkity edit by henry/hit100-0.png new file mode 100644 index 00000000..eda5d98a --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9ab2c0af54c94e53b3e828ebbb24340833bb38daea49ddc2ef89866fa660f5 +size 7031 diff --git a/Skins/- rafis pinkity edit by henry/hit100-0@2x.png b/Skins/- rafis pinkity edit by henry/hit100-0@2x.png new file mode 100644 index 00000000..7086fc9d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1926c7306214d4dc4a866e9a4c0c1c79e2725b135de3f9a3045566b9be9a5191 +size 6643 diff --git a/Skins/- rafis pinkity edit by henry/hit100.png b/Skins/- rafis pinkity edit by henry/hit100.png new file mode 100644 index 00000000..34d04279 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9cc41ce28e07e020920b7924731cfafbca1921004e9640e5002493238bd2f1a +size 10869 diff --git a/Skins/- rafis pinkity edit by henry/hit100@2x.png b/Skins/- rafis pinkity edit by henry/hit100@2x.png new file mode 100644 index 00000000..165e1352 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bb8815e994d9919a5a94ef0ba18a5a4952814464bcb555cecf19af9c8ff49d +size 9905 diff --git a/Skins/- rafis pinkity edit by henry/hit100k-0.png b/Skins/- rafis pinkity edit by henry/hit100k-0.png new file mode 100644 index 00000000..2465b0f0 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b21caa32c0e422170e9d9c8d1203780536db12f23c724b5f82912397bb15ede +size 8624 diff --git a/Skins/- rafis pinkity edit by henry/hit100k-0@2x.png b/Skins/- rafis pinkity edit by henry/hit100k-0@2x.png new file mode 100644 index 00000000..6fe97234 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d2d65d765d7af47a87cd93106ef56033e146960ed490a738fd5a962e0bb837 +size 13252 diff --git a/Skins/- rafis pinkity edit by henry/hit100k.png b/Skins/- rafis pinkity edit by henry/hit100k.png new file mode 100644 index 00000000..51939af7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42c317d7e74c60ecd0d5ef8c1b493b94b6749e82d5466d6840073801f117ea9 +size 14781 diff --git a/Skins/- rafis pinkity edit by henry/hit100k@2x.png b/Skins/- rafis pinkity edit by henry/hit100k@2x.png new file mode 100644 index 00000000..2f07b86a --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0554d1f5f80c40db813f2e885d389c8451f5c042ea36b7a2d2aa33432e8ed3f7 +size 19758 diff --git a/Skins/- rafis pinkity edit by henry/hit300-0.png b/Skins/- rafis pinkity edit by henry/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- rafis pinkity edit by henry/hit300.png b/Skins/- rafis pinkity edit by henry/hit300.png new file mode 100644 index 00000000..bebee13d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92a0efa1f778b60e87c45472aefff9eca355205f548c97922982369f4ca67f9 +size 15303 diff --git a/Skins/- rafis pinkity edit by henry/hit300g-0.png b/Skins/- rafis pinkity edit by henry/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- rafis pinkity edit by henry/hit300g.png b/Skins/- rafis pinkity edit by henry/hit300g.png new file mode 100644 index 00000000..06898bd1 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9dce9a7b07b046e0339f3d42f6533d4c192a82152a35c8604a6ca2acce8139 +size 15303 diff --git a/Skins/- rafis pinkity edit by henry/hit300k-0.png b/Skins/- rafis pinkity edit by henry/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- rafis pinkity edit by henry/hit300k.png b/Skins/- rafis pinkity edit by henry/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/- rafis pinkity edit by henry/hit50-0.png b/Skins/- rafis pinkity edit by henry/hit50-0.png new file mode 100644 index 00000000..f5de3be1 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe50dfacb4417c86b90d55eab2defd2d639f2100a01f69478c674e9bbf5bb956 +size 6034 diff --git a/Skins/- rafis pinkity edit by henry/hit50-0@2x.png b/Skins/- rafis pinkity edit by henry/hit50-0@2x.png new file mode 100644 index 00000000..b088dfe1 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dd52aac33996a5e10a5363e998e9c618c799e2f56b1ac3a061322a8116d9a1 +size 7141 diff --git a/Skins/- rafis pinkity edit by henry/hit50.png b/Skins/- rafis pinkity edit by henry/hit50.png new file mode 100644 index 00000000..6b37b8a6 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca60c16158ac3d0236c313732b758acd99b0bd3f1e0d66a6dfdfb7fdaf677253 +size 8973 diff --git a/Skins/- rafis pinkity edit by henry/hit50@2x.png b/Skins/- rafis pinkity edit by henry/hit50@2x.png new file mode 100644 index 00000000..63298ee7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86411bd11e3ae0108701e2d3eaa4d208c894315e568b41329788c4d8ffcf6e3 +size 11102 diff --git a/Skins/- rafis pinkity edit by henry/hitcircle.png b/Skins/- rafis pinkity edit by henry/hitcircle.png new file mode 100644 index 00000000..58edacff --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e081bcb246d426acaac852fa4a6cd05e5c6804989d0187301144679128d77ec +size 9659 diff --git a/Skins/- rafis pinkity edit by henry/hitcircleoverlay.png b/Skins/- rafis pinkity edit by henry/hitcircleoverlay.png new file mode 100644 index 00000000..e84ae01b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2242085fcfd0a3680fe53191a999547fe99a3703fbbae2925c799df6ef287b +size 8362 diff --git a/Skins/- rafis pinkity edit by henry/hitcircleselect.png b/Skins/- rafis pinkity edit by henry/hitcircleselect.png new file mode 100644 index 00000000..016ce9fc --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d2d6ea62c23d370b06640e82c190d995ebdcd97a11d4daad2813630442d2d4 +size 6957 diff --git a/Skins/- rafis pinkity edit by henry/hitcircleselect@2x.png b/Skins/- rafis pinkity edit by henry/hitcircleselect@2x.png new file mode 100644 index 00000000..796fa239 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/hitcircleselect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948dc3875aea0743ff0c5e79cc4dea2d38e73909620296371c52e341af91e05 +size 10181 diff --git a/Skins/- rafis pinkity edit by henry/inputoverlay-background.png b/Skins/- rafis pinkity edit by henry/inputoverlay-background.png new file mode 100644 index 00000000..eb361ae9 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a687cdf7e5449c960a9ff8656f118a617c0f085437679a6a65e1a039b982069f +size 108003 diff --git a/Skins/- rafis pinkity edit by henry/inputoverlay-background@2x.png b/Skins/- rafis pinkity edit by henry/inputoverlay-background@2x.png new file mode 100644 index 00000000..937eccbe --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd9110eb93680c845722a8bafffe3059862f3e508ced3e94e32b019b267e042 +size 39365 diff --git a/Skins/- rafis pinkity edit by henry/inputoverlay-key.png b/Skins/- rafis pinkity edit by henry/inputoverlay-key.png new file mode 100644 index 00000000..754c39a5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e769222153abdffd96d8f9bec87a185d67fb4bc54778a4ad84924d50fd00d8 +size 137 diff --git a/Skins/- rafis pinkity edit by henry/inputoverlay-key@2x.png b/Skins/- rafis pinkity edit by henry/inputoverlay-key@2x.png new file mode 100644 index 00000000..f32a70d9 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e97dc8f9ab74d4a8906b18105e543a7c0cbfea90488316a9330a707f4b54ad31 +size 2813 diff --git a/Skins/- rafis pinkity edit by henry/menu-back-0.png b/Skins/- rafis pinkity edit by henry/menu-back-0.png new file mode 100644 index 00000000..e064b4b7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a76cc3f1fa9d20e4c88319f76cec76f1706effded0cf6da8553430d691728280 +size 653 diff --git a/Skins/- rafis pinkity edit by henry/menu-back-0@2x.png b/Skins/- rafis pinkity edit by henry/menu-back-0@2x.png new file mode 100644 index 00000000..6abae7fc --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60580b0a7c3bfc26d4fb980c65fab37e8b1303277adbc5fed1d9fecd17ffd32b +size 9559 diff --git a/Skins/- rafis pinkity edit by henry/menu-background.jpg b/Skins/- rafis pinkity edit by henry/menu-background.jpg new file mode 100644 index 00000000..f8964523 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fff00311cbcc565a420fefd3650cd2e19805dcc7c2ad334a7b1a23a0fbb30a3e +size 23894 diff --git a/Skins/- rafis pinkity edit by henry/menu-button-background.png b/Skins/- rafis pinkity edit by henry/menu-button-background.png new file mode 100644 index 00000000..1ea6975e --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5153e4c598d4a29e9c42a7eb7210696c1759b010b27b4f03da60e840f8546c61 +size 18633 diff --git a/Skins/- rafis pinkity edit by henry/menu-snow.png b/Skins/- rafis pinkity edit by henry/menu-snow.png new file mode 100644 index 00000000..1a99fc1c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d074942bd55ab12d342ede71123d4face48997afb14c895e8c0aa9331817a830 +size 6570 diff --git a/Skins/- rafis pinkity edit by henry/menu-snow@2x.png b/Skins/- rafis pinkity edit by henry/menu-snow@2x.png new file mode 100644 index 00000000..7486006b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/menu-snow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4f68274d893821a0de6a604c4759eca03270efcb9cbdfa244d0dae4cec023 +size 8157 diff --git a/Skins/- rafis pinkity edit by henry/menuback.ogg b/Skins/- rafis pinkity edit by henry/menuback.ogg new file mode 100644 index 00000000..63636a12 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89457cfba16f8e37edf826a00b03024b0e15da6432dce485d60863c99f0f473 +size 5118 diff --git a/Skins/- rafis pinkity edit by henry/menuclick.ogg b/Skins/- rafis pinkity edit by henry/menuclick.ogg new file mode 100644 index 00000000..e0e0d08d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a1e7c1dc48306a57367bacd0940c01a89c32ed08d825f7673021793fee20a3 +size 3967 diff --git a/Skins/- rafis pinkity edit by henry/menuhit.ogg b/Skins/- rafis pinkity edit by henry/menuhit.ogg new file mode 100644 index 00000000..b6270d1c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da40ab88658dafbcd63f4e30aaf7e883be40c042de374a2e3e2747eb828dc5c0 +size 4784 diff --git a/Skins/- rafis pinkity edit by henry/mode-fruits.png b/Skins/- rafis pinkity edit by henry/mode-fruits.png new file mode 100644 index 00000000..320ed64b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/mode-fruits.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f6f7e2fab33bfa1b7754b3428e3ee1c392d64ac6b1f6e381a4d63190ebf6d3b +size 160254 diff --git a/Skins/- rafis pinkity edit by henry/mode-mania.png b/Skins/- rafis pinkity edit by henry/mode-mania.png new file mode 100644 index 00000000..d4a74cea --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/mode-mania.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9fcb206b299b4d8701f58c716e452f9e21e430031a12a7adc5097a79b3e735 +size 107930 diff --git a/Skins/- rafis pinkity edit by henry/mode-osu.png b/Skins/- rafis pinkity edit by henry/mode-osu.png new file mode 100644 index 00000000..1cadad5e --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c6e844c226e43ac9af0c2dc21faad9addd44e17f0f57ac18f6fa8798bc3d05 +size 250630 diff --git a/Skins/- rafis pinkity edit by henry/mode-taiko.png b/Skins/- rafis pinkity edit by henry/mode-taiko.png new file mode 100644 index 00000000..aa7796d8 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba0373530e9470d032d2624160487bf9b8157409fc1ed5e662018ec745d9c91 +size 177551 diff --git a/Skins/- rafis pinkity edit by henry/nightcore-clap.wav b/Skins/- rafis pinkity edit by henry/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- rafis pinkity edit by henry/nightcore-finish.wav b/Skins/- rafis pinkity edit by henry/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- rafis pinkity edit by henry/nightcore-hat.wav b/Skins/- rafis pinkity edit by henry/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- rafis pinkity edit by henry/nightcore-kick.wav b/Skins/- rafis pinkity edit by henry/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- rafis pinkity edit by henry/normal-hitclap.ogg b/Skins/- rafis pinkity edit by henry/normal-hitclap.ogg new file mode 100644 index 00000000..ec0e3b04 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1049b6d14e749927b1507f3d12c1af3545f4b30a1313b385d1e72c4b8d98b204 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/normal-hitclap2.ogg b/Skins/- rafis pinkity edit by henry/normal-hitclap2.ogg new file mode 100644 index 00000000..a5ac38e6 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ef388f18b6ae70d7240c86a15b2d521fcc09805c1101617704a360efdc6448 +size 18985 diff --git a/Skins/- rafis pinkity edit by henry/normal-hitfinish.ogg b/Skins/- rafis pinkity edit by henry/normal-hitfinish.ogg new file mode 100644 index 00000000..8a3b29a6 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2779da6e866b9f7807f974fd02ed5a13f46f097be629284d079207378624f42f +size 7205 diff --git a/Skins/- rafis pinkity edit by henry/normal-hitfinish2.ogg b/Skins/- rafis pinkity edit by henry/normal-hitfinish2.ogg new file mode 100644 index 00000000..15a5e48d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-hitfinish2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a6a663a012e60ac1be757038ce93724326f164ef68935ed0d0682ce789496f +size 38310 diff --git a/Skins/- rafis pinkity edit by henry/normal-hitnormal.ogg b/Skins/- rafis pinkity edit by henry/normal-hitnormal.ogg new file mode 100644 index 00000000..caadf4b5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736d1629d8fac0c4ba97bb0cb432a837c870f52bfb4f69d2fc99c09ce2bed246 +size 8106 diff --git a/Skins/- rafis pinkity edit by henry/normal-hitnormal2.ogg b/Skins/- rafis pinkity edit by henry/normal-hitnormal2.ogg new file mode 100644 index 00000000..837a7ff8 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-hitnormal2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d176aa259b133472378b8a6aa4a57ed56f83b15fc851ea72f44572a7d04c9a2d +size 10576 diff --git a/Skins/- rafis pinkity edit by henry/normal-hitwhistle.ogg b/Skins/- rafis pinkity edit by henry/normal-hitwhistle.ogg new file mode 100644 index 00000000..e57fa9c7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656c4781427d993099d1cc092c2765cc61970cba3c1a4c8492d48d32bcf200fc +size 20498 diff --git a/Skins/- rafis pinkity edit by henry/normal-hitwhistle2.ogg b/Skins/- rafis pinkity edit by henry/normal-hitwhistle2.ogg new file mode 100644 index 00000000..99842891 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-hitwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a41f988eeea6ea9b67d596fd6ebc0feb606d2952e467ea5c1c166cabaefb76f +size 20837 diff --git a/Skins/- rafis pinkity edit by henry/normal-hitwistle.ogg b/Skins/- rafis pinkity edit by henry/normal-hitwistle.ogg new file mode 100644 index 00000000..7433d679 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-hitwistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56301dc35dd095ff25d8b519eabcc4a681f324aaa342a83d0d21a01f03ae24bf +size 7572 diff --git a/Skins/- rafis pinkity edit by henry/normal-sliderslide2.ogg b/Skins/- rafis pinkity edit by henry/normal-sliderslide2.ogg new file mode 100644 index 00000000..f91d830e --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-sliderslide2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2035e7687e21e5171454b54e500f1cd0a905ec8f372b738b300c3b99e233f857 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/normal-slidertick.ogg b/Skins/- rafis pinkity edit by henry/normal-slidertick.ogg new file mode 100644 index 00000000..45fe02cc --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9387191b2235dcfecfda8c8b0aecf648fda1cfe5a366eca69a43df141f4ee63 +size 6882 diff --git a/Skins/- rafis pinkity edit by henry/normal-slidertick2.ogg b/Skins/- rafis pinkity edit by henry/normal-slidertick2.ogg new file mode 100644 index 00000000..32d8e68c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-slidertick2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ed08b6d97964430ac1684ac146eb29e345e0d5c15ff654579fbe596c6f487f +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/normal-sliderwhistle2.ogg b/Skins/- rafis pinkity edit by henry/normal-sliderwhistle2.ogg new file mode 100644 index 00000000..0353f513 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/normal-sliderwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4238dbfda3a88dbe9516b82e0831ce2516f6c2cec1712b08762e672d4ca2dff9 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/pause-back.png b/Skins/- rafis pinkity edit by henry/pause-back.png new file mode 100644 index 00000000..bcf99642 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f6416cc999b8dd392f9299ba91ff1b60df4165474942dd4424187b769b9a989 +size 8755 diff --git a/Skins/- rafis pinkity edit by henry/pause-back@2x.png b/Skins/- rafis pinkity edit by henry/pause-back@2x.png new file mode 100644 index 00000000..3434393a --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e424ef03bca94988408c495219cb59313c4fdea3ad63c20ec7c68b2c45618c +size 402609 diff --git a/Skins/- rafis pinkity edit by henry/pause-continue.png b/Skins/- rafis pinkity edit by henry/pause-continue.png new file mode 100644 index 00000000..86086bb7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c34721ec7f3c6bc1e07325bbb93a510ee0d3fe6717761d76ea7e841068dd85 +size 12710 diff --git a/Skins/- rafis pinkity edit by henry/pause-continue@2x.png b/Skins/- rafis pinkity edit by henry/pause-continue@2x.png new file mode 100644 index 00000000..054f51c8 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:601951e7e85c069c8e352b3e087270b7a2c9b9fc304520071d0d9be7b09bfc8e +size 402609 diff --git a/Skins/- rafis pinkity edit by henry/pause-overlay.png b/Skins/- rafis pinkity edit by henry/pause-overlay.png new file mode 100644 index 00000000..0608c53b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc91ef2f292ee92803be3e9642827ed8095f60ad7362dce8d1ddb986abaf4fd9 +size 1855962 diff --git a/Skins/- rafis pinkity edit by henry/pause-replay.png b/Skins/- rafis pinkity edit by henry/pause-replay.png new file mode 100644 index 00000000..2caa047f --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e339c252aba4349258092a1e06f47bf011198c4c9509740285745877869c4e +size 12869 diff --git a/Skins/- rafis pinkity edit by henry/pause-replay@2x.png b/Skins/- rafis pinkity edit by henry/pause-replay@2x.png new file mode 100644 index 00000000..1ffdd8a0 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e894b13345e4b39ad0b77a7d54edf3dbbef7535a449550edfde3234fd3d1c7e +size 402609 diff --git a/Skins/- rafis pinkity edit by henry/pause-retry.png b/Skins/- rafis pinkity edit by henry/pause-retry.png new file mode 100644 index 00000000..2caa047f --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e339c252aba4349258092a1e06f47bf011198c4c9509740285745877869c4e +size 12869 diff --git a/Skins/- rafis pinkity edit by henry/pause-retry@2x.png b/Skins/- rafis pinkity edit by henry/pause-retry@2x.png new file mode 100644 index 00000000..1ffdd8a0 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e894b13345e4b39ad0b77a7d54edf3dbbef7535a449550edfde3234fd3d1c7e +size 402609 diff --git a/Skins/- rafis pinkity edit by henry/play-skip.png b/Skins/- rafis pinkity edit by henry/play-skip.png new file mode 100644 index 00000000..876114ff --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c05f0cc012ea56de34a153b92098463bb3a9f5670c52c3e06f55c3d3bf7ebb +size 2724 diff --git a/Skins/- rafis pinkity edit by henry/play-unranked.png b/Skins/- rafis pinkity edit by henry/play-unranked.png new file mode 100644 index 00000000..16bd9eb9 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7354fb979b7e07973ed224085e1b6053fc334c2180ac3f59a77c60faad5b88 +size 9534 diff --git a/Skins/- rafis pinkity edit by henry/play-unranked@2x.png b/Skins/- rafis pinkity edit by henry/play-unranked@2x.png new file mode 100644 index 00000000..467eb22f --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b6b6b29b3d8258b9d8a8ee7d254a7002bb895aede2a3a7a3e178944cc7e793 +size 9859 diff --git a/Skins/- rafis pinkity edit by henry/play-warningarrow.png b/Skins/- rafis pinkity edit by henry/play-warningarrow.png new file mode 100644 index 00000000..1a2c72fe --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406c0c260958fa3a1e2a637605be042fe7d957c935f39532c7115738eedacd95 +size 3328 diff --git a/Skins/- rafis pinkity edit by henry/play-warningarrow@2x.png b/Skins/- rafis pinkity edit by henry/play-warningarrow@2x.png new file mode 100644 index 00000000..a852aa4b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/play-warningarrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e264b76bb14ea8d07baf834d3620d8ca0eb7ecce28d8c1cf55f52578c0350c +size 3899 diff --git a/Skins/- rafis pinkity edit by henry/playfield.png b/Skins/- rafis pinkity edit by henry/playfield.png new file mode 100644 index 00000000..e7536edc --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc63421684b6d76baa4fcac4504204292b9ee1b052fa09ac45e174b9223a5ba8 +size 1112190 diff --git a/Skins/- rafis pinkity edit by henry/playfield@2x.png b/Skins/- rafis pinkity edit by henry/playfield@2x.png new file mode 100644 index 00000000..1721f0cf --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/playfield@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a40dcab4d8d66c62dd65f57a51070bf3965cdabf0bddbce6decd6a5750d123fb +size 2580036 diff --git a/Skins/- rafis pinkity edit by henry/ranking-A-small.png b/Skins/- rafis pinkity edit by henry/ranking-A-small.png new file mode 100644 index 00000000..4c84ce62 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f18dfac929985d55e3f50b1c4c7d52fcecd21f4d32640c9adc467c2c8f2b9498 +size 2037 diff --git a/Skins/- rafis pinkity edit by henry/ranking-A-small@2x.png b/Skins/- rafis pinkity edit by henry/ranking-A-small@2x.png new file mode 100644 index 00000000..b6141b3b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49ee7e6985eb843740814c990ab2a1e422a28b0193b46cea9b6654aa6d6797f +size 28644 diff --git a/Skins/- rafis pinkity edit by henry/ranking-A.png b/Skins/- rafis pinkity edit by henry/ranking-A.png new file mode 100644 index 00000000..e3153813 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d813ccccb69adac6179c3c94f1e3cce7bc19b394d7acc3da735ffb45fc8ffaa +size 32249 diff --git a/Skins/- rafis pinkity edit by henry/ranking-A@2x.png b/Skins/- rafis pinkity edit by henry/ranking-A@2x.png new file mode 100644 index 00000000..c07a22c7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70c7f0714da1e9724a659e0dc00b09a24756cc62b488f75d459accbf38b2fb5 +size 29424 diff --git a/Skins/- rafis pinkity edit by henry/ranking-B-small.png b/Skins/- rafis pinkity edit by henry/ranking-B-small.png new file mode 100644 index 00000000..394828c2 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c66e6bcf4f165039a0dbf4c57769ba75a521fcf8f383c1c76734b6955415d2 +size 2066 diff --git a/Skins/- rafis pinkity edit by henry/ranking-B-small@2x.png b/Skins/- rafis pinkity edit by henry/ranking-B-small@2x.png new file mode 100644 index 00000000..f51a915c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4b23f9fba30f5bde8283384ee50c1904c17c0425385739938bd618618bd062 +size 28936 diff --git a/Skins/- rafis pinkity edit by henry/ranking-B.png b/Skins/- rafis pinkity edit by henry/ranking-B.png new file mode 100644 index 00000000..21841229 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cfa6ad1a229938992d5ef76f597bcae6232ed33713b661889171239d70e071d +size 34819 diff --git a/Skins/- rafis pinkity edit by henry/ranking-B@2x.png b/Skins/- rafis pinkity edit by henry/ranking-B@2x.png new file mode 100644 index 00000000..394c76a3 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f343de9aa42b5dd01894b17af1d364da6cc9123478757ba30b49aac417cc4f2 +size 35789 diff --git a/Skins/- rafis pinkity edit by henry/ranking-C-small.png b/Skins/- rafis pinkity edit by henry/ranking-C-small.png new file mode 100644 index 00000000..6e25fc40 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146697ce94485addae27085ac33b0970e879506d95fb209a04cbd127d96524c7 +size 1736 diff --git a/Skins/- rafis pinkity edit by henry/ranking-C-small@2x.png b/Skins/- rafis pinkity edit by henry/ranking-C-small@2x.png new file mode 100644 index 00000000..8438fdba --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a66710694d63a28ea6a8f45ed153773b5d80f53a9d90cecbe1de4443f7a3d6 +size 29139 diff --git a/Skins/- rafis pinkity edit by henry/ranking-C.png b/Skins/- rafis pinkity edit by henry/ranking-C.png new file mode 100644 index 00000000..66d1baae --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033238a9a177e5afd1b2b9bda5098c4fb3a6ffb1221b7ae0ddb42f474b8077bb +size 26350 diff --git a/Skins/- rafis pinkity edit by henry/ranking-C@2x.png b/Skins/- rafis pinkity edit by henry/ranking-C@2x.png new file mode 100644 index 00000000..2a97d6cb --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89565f3b2b84ceaaa28b812943997b1398ad60d0b2dd1407565ba35efeffca9 +size 29103 diff --git a/Skins/- rafis pinkity edit by henry/ranking-D-small.png b/Skins/- rafis pinkity edit by henry/ranking-D-small.png new file mode 100644 index 00000000..d0e2dd7a --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86a7200a56a3c5ea3a15d45353af48d01c0274f7810a086a0b169e428950a4e +size 2116 diff --git a/Skins/- rafis pinkity edit by henry/ranking-D-small@2x.png b/Skins/- rafis pinkity edit by henry/ranking-D-small@2x.png new file mode 100644 index 00000000..d2357bf9 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b687f3e9cd5f39b85a410f1555c63a3998356a3980b31902bec7a10bd0862b50 +size 29353 diff --git a/Skins/- rafis pinkity edit by henry/ranking-D.png b/Skins/- rafis pinkity edit by henry/ranking-D.png new file mode 100644 index 00000000..99984e18 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b13c1fa4ee2886f4136f38f05735b025a22f1fb13f54a401742077581e56c4 +size 28303 diff --git a/Skins/- rafis pinkity edit by henry/ranking-D@2x.png b/Skins/- rafis pinkity edit by henry/ranking-D@2x.png new file mode 100644 index 00000000..562487e8 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9aafa65fcd93b8d3461a53ce7e6984a09122c6cad6a8e807a25fd5ff9f6091 +size 25199 diff --git a/Skins/- rafis pinkity edit by henry/ranking-S-small.png b/Skins/- rafis pinkity edit by henry/ranking-S-small.png new file mode 100644 index 00000000..8d295930 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d8cc283bfd47fd7614dafd65f0be13be13682e0242388cbde4c4517ba97e05 +size 1791 diff --git a/Skins/- rafis pinkity edit by henry/ranking-S-small@2x.png b/Skins/- rafis pinkity edit by henry/ranking-S-small@2x.png new file mode 100644 index 00000000..afaaf42b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec712148a0452073279eae3ed5cf04f053361c5e39468e1ca8eb0bbd2449331 +size 28870 diff --git a/Skins/- rafis pinkity edit by henry/ranking-S.png b/Skins/- rafis pinkity edit by henry/ranking-S.png new file mode 100644 index 00000000..e49f223a --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b139a7641b8315fe558608f12b4094dbc4bb4d9514e8e9b125e387e53556929f +size 27058 diff --git a/Skins/- rafis pinkity edit by henry/ranking-S@2x.png b/Skins/- rafis pinkity edit by henry/ranking-S@2x.png new file mode 100644 index 00000000..5ca466ce --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ef38d29b147734ff59d4f0364f40d9a3ce88880de57ff49f8baa24386fbdec +size 32768 diff --git a/Skins/- rafis pinkity edit by henry/ranking-SH-small.png b/Skins/- rafis pinkity edit by henry/ranking-SH-small.png new file mode 100644 index 00000000..9425a669 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea48642afb8ef6e8b99f6d878b1e7fb604eeab969729fbc77c22d8f2cc39e91 +size 1112 diff --git a/Skins/- rafis pinkity edit by henry/ranking-SH-small@2x.png b/Skins/- rafis pinkity edit by henry/ranking-SH-small@2x.png new file mode 100644 index 00000000..f6b7ec67 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f95660f5bec80c271a077fd2160181a44a875b54d39671cad1044b489c03cf2 +size 28466 diff --git a/Skins/- rafis pinkity edit by henry/ranking-SH.png b/Skins/- rafis pinkity edit by henry/ranking-SH.png new file mode 100644 index 00000000..21246676 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bdd3bba987ce7138b03ba89a9c6a23fdae1d1ce7164448c164eb9cea07e352 +size 15214 diff --git a/Skins/- rafis pinkity edit by henry/ranking-SH@2x.png b/Skins/- rafis pinkity edit by henry/ranking-SH@2x.png new file mode 100644 index 00000000..a25cfc7d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7f25b2e09f39db7962514719cda8e0dd65d0585883bbec9257d7c4790eb838 +size 21193 diff --git a/Skins/- rafis pinkity edit by henry/ranking-X-small.png b/Skins/- rafis pinkity edit by henry/ranking-X-small.png new file mode 100644 index 00000000..b23aeb49 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62633019c4cb476df98a5a5f1fd7b948eb3368d1f933eec9da056674505d877 +size 2180 diff --git a/Skins/- rafis pinkity edit by henry/ranking-X-small@2x.png b/Skins/- rafis pinkity edit by henry/ranking-X-small@2x.png new file mode 100644 index 00000000..a385cf84 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4c1d7996f0b0ba32684fdfd06681f16b0c060b1eb95a2a1940c7e481bacb01 +size 29315 diff --git a/Skins/- rafis pinkity edit by henry/ranking-X.png b/Skins/- rafis pinkity edit by henry/ranking-X.png new file mode 100644 index 00000000..5be2c1c1 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e93f0066ebe7b372771fec584ca2f179bb0c7032b563027d0ee4a720a8be58 +size 52314 diff --git a/Skins/- rafis pinkity edit by henry/ranking-X@2x.png b/Skins/- rafis pinkity edit by henry/ranking-X@2x.png new file mode 100644 index 00000000..6b0640e8 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fc57c0d9ce25a2e406cb97da1a0e34d6c3a95cba393a16292ae3764899f326 +size 62076 diff --git a/Skins/- rafis pinkity edit by henry/ranking-XH-small.png b/Skins/- rafis pinkity edit by henry/ranking-XH-small.png new file mode 100644 index 00000000..0220fd64 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd4591775127ca0cb3509e1b01f9a4467373bd8487884cbdbaef20d3ed7e157 +size 1551 diff --git a/Skins/- rafis pinkity edit by henry/ranking-XH-small@2x.png b/Skins/- rafis pinkity edit by henry/ranking-XH-small@2x.png new file mode 100644 index 00000000..4b3f9f30 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8b406c571f4de236b82a80142809aecb38914d423d2b49d57342fb75a900da +size 29209 diff --git a/Skins/- rafis pinkity edit by henry/ranking-XH.png b/Skins/- rafis pinkity edit by henry/ranking-XH.png new file mode 100644 index 00000000..c80e468e --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c36e80b7c832e17379f8a471de579a3a7963434cc6a211e6a564a12f882cdf +size 36125 diff --git a/Skins/- rafis pinkity edit by henry/ranking-XH@2x.png b/Skins/- rafis pinkity edit by henry/ranking-XH@2x.png new file mode 100644 index 00000000..b44245f7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa5b4a97016a19a57625ae47490aa45014a1645bcc6f6a048e4fa6b8231cd08 +size 43661 diff --git a/Skins/- rafis pinkity edit by henry/ranking-accuracy.png b/Skins/- rafis pinkity edit by henry/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- rafis pinkity edit by henry/ranking-background-overlay.png b/Skins/- rafis pinkity edit by henry/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/ranking-graph.png b/Skins/- rafis pinkity edit by henry/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/- rafis pinkity edit by henry/ranking-graph@2x.png b/Skins/- rafis pinkity edit by henry/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/- rafis pinkity edit by henry/ranking-maxcombo.png b/Skins/- rafis pinkity edit by henry/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- rafis pinkity edit by henry/ranking-panel.png b/Skins/- rafis pinkity edit by henry/ranking-panel.png new file mode 100644 index 00000000..24c02b09 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec0aa346a5eb87809ee995aeec90a45634cafab266e338e94836fb4956a1058 +size 9533 diff --git a/Skins/- rafis pinkity edit by henry/ranking-panel@2x.png b/Skins/- rafis pinkity edit by henry/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/- rafis pinkity edit by henry/ranking-perfect.png b/Skins/- rafis pinkity edit by henry/ranking-perfect.png new file mode 100644 index 00000000..31c56e88 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61a1bf548dc3120a80ed66e81fea31ff1402493f2efa4d349f2978c5679bb22 +size 18197 diff --git a/Skins/- rafis pinkity edit by henry/ranking-perfect@2x.png b/Skins/- rafis pinkity edit by henry/ranking-perfect@2x.png new file mode 100644 index 00000000..2bc2735c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57147624197a1f7227031cd600a1a6bb598c1838280b2c10f1f641a2543c8f6 +size 22727 diff --git a/Skins/- rafis pinkity edit by henry/ranking-title.png b/Skins/- rafis pinkity edit by henry/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- rafis pinkity edit by henry/ready.png b/Skins/- rafis pinkity edit by henry/ready.png new file mode 100644 index 00000000..d4077227 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8762e9e54d5d3f51350402e2fd7ff47545adca14e1927688cb42bbf24ad12ca3 +size 14510 diff --git a/Skins/- rafis pinkity edit by henry/readys.ogg b/Skins/- rafis pinkity edit by henry/readys.ogg new file mode 100644 index 00000000..6b2f09a9 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/readys.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd8b55e73cf7f38920ae3290ad02792b47d171283086d4aeafe6d513bda31a5 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/reversearrow.png b/Skins/- rafis pinkity edit by henry/reversearrow.png new file mode 100644 index 00000000..1a073c17 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:928d056892fecb1e7baa38e592460ee08cebb6b9cff3beedf9a828b6dcef585c +size 4036 diff --git a/Skins/- rafis pinkity edit by henry/score-0.png b/Skins/- rafis pinkity edit by henry/score-0.png new file mode 100644 index 00000000..b0d97ed3 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394197cdee2bf3ec3a87019a6a29d10a085e56021f54099c8fcce50e3ddacebc +size 3433 diff --git a/Skins/- rafis pinkity edit by henry/score-1.png b/Skins/- rafis pinkity edit by henry/score-1.png new file mode 100644 index 00000000..0d1ebe0d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d113cfde1f6f8cc8a2bbfa52bb0ad35a5d85e259ee0bc3a15e03f4c7b74c6e90 +size 2926 diff --git a/Skins/- rafis pinkity edit by henry/score-2.png b/Skins/- rafis pinkity edit by henry/score-2.png new file mode 100644 index 00000000..408e1cdb --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2782ad0951a15087a845367afa8f2cba7473c284a68f2ff85aeb6c517e9f6c6 +size 3414 diff --git a/Skins/- rafis pinkity edit by henry/score-3.png b/Skins/- rafis pinkity edit by henry/score-3.png new file mode 100644 index 00000000..86177a14 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf66868678715dbb35d4fa05bdec44967a86a79c6182e8b4b1080fe6c5bb817 +size 3439 diff --git a/Skins/- rafis pinkity edit by henry/score-4.png b/Skins/- rafis pinkity edit by henry/score-4.png new file mode 100644 index 00000000..245c95ee --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90311b953c402d7351eb6fff11c42e71f47e0113fc5533e19845570a251b6e53 +size 3334 diff --git a/Skins/- rafis pinkity edit by henry/score-5.png b/Skins/- rafis pinkity edit by henry/score-5.png new file mode 100644 index 00000000..725ce736 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ad9cb986cf1c8e7ec73f11052c7f80cb44f6155a267c177ca874183651e63a +size 3323 diff --git a/Skins/- rafis pinkity edit by henry/score-6.png b/Skins/- rafis pinkity edit by henry/score-6.png new file mode 100644 index 00000000..9213868c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cfc4cd71cd6f602d4765cd7a4f77739c20499b5803ff685e95636bb5f56fa3 +size 3541 diff --git a/Skins/- rafis pinkity edit by henry/score-7.png b/Skins/- rafis pinkity edit by henry/score-7.png new file mode 100644 index 00000000..b3895d5b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbec68017836b68bae612827f74a8a0356c2c4f877e99e274cd7d619c3d66117 +size 3287 diff --git a/Skins/- rafis pinkity edit by henry/score-8.png b/Skins/- rafis pinkity edit by henry/score-8.png new file mode 100644 index 00000000..c31c805b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33dfd72a1c67a7ea68dfe103227dd6962371a91882d62735f4132f04e64dc57b +size 3667 diff --git a/Skins/- rafis pinkity edit by henry/score-9.png b/Skins/- rafis pinkity edit by henry/score-9.png new file mode 100644 index 00000000..aeaaf0c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d1a5ebc31a64edff85c84a28b9a7da2297acd516e4047649df9fdf1b5a20d4 +size 3534 diff --git a/Skins/- rafis pinkity edit by henry/score-comma.png b/Skins/- rafis pinkity edit by henry/score-comma.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/- rafis pinkity edit by henry/score-dot.png b/Skins/- rafis pinkity edit by henry/score-dot.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/- rafis pinkity edit by henry/score-percent.png b/Skins/- rafis pinkity edit by henry/score-percent.png new file mode 100644 index 00000000..69be85f4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463688b71d33f4c476deddd20df83dfcffbb450f7a5277704442f494fbc49570 +size 3038 diff --git a/Skins/- rafis pinkity edit by henry/score-x.png b/Skins/- rafis pinkity edit by henry/score-x.png new file mode 100644 index 00000000..711f10f5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5f4ae0aae66a3d9ad8166933132bf2fad25da6220d8f02127f69546b5a4795 +size 96 diff --git a/Skins/- rafis pinkity edit by henry/score-x@2x.png b/Skins/- rafis pinkity edit by henry/score-x@2x.png new file mode 100644 index 00000000..82398d7d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b9db9d9619927a2a911e6dd156d68d6d86487a02b7b9317621dd1b862b0d15 +size 2844 diff --git a/Skins/- rafis pinkity edit by henry/scorebar-bg.png b/Skins/- rafis pinkity edit by henry/scorebar-bg.png new file mode 100644 index 00000000..750c65b6 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ba8e57e5fbf0c9893065b4c80bb987328a5d65b86fbc968832d06323f76e16 +size 602 diff --git a/Skins/- rafis pinkity edit by henry/scorebar-colour.png b/Skins/- rafis pinkity edit by henry/scorebar-colour.png new file mode 100644 index 00000000..5dd1e299 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a6fcb20310ff8c614e11b75c866ab05bc2a4adfa97bb04d315e04001f83014 +size 3472 diff --git a/Skins/- rafis pinkity edit by henry/scorebar-colour@2x.png b/Skins/- rafis pinkity edit by henry/scorebar-colour@2x.png new file mode 100644 index 00000000..2aa48a72 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ec6b26085a14c5bb778be9fed9168670cae9683f6aaa8a89f008a069f0dce9 +size 6570 diff --git a/Skins/- rafis pinkity edit by henry/scorebar-ki.png b/Skins/- rafis pinkity edit by henry/scorebar-ki.png new file mode 100644 index 00000000..fac29168 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620234b2f7442c73273afc2f3d90769c6d7ac8813f8d2c14849ba316d7281af7 +size 2803 diff --git a/Skins/- rafis pinkity edit by henry/scorebar-kidanger.png b/Skins/- rafis pinkity edit by henry/scorebar-kidanger.png new file mode 100644 index 00000000..ddab0bf6 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4595cab4b46b51c203c2c6e22629fac69343bed05ec2fe778f509acfd24e0298 +size 2803 diff --git a/Skins/- rafis pinkity edit by henry/scorebar-kidanger2.png b/Skins/- rafis pinkity edit by henry/scorebar-kidanger2.png new file mode 100644 index 00000000..5ed877c3 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0d08de15725e6c4e84824e5cb71b04dbb8d8f9fcfdc8b498163993114cae8f +size 2803 diff --git a/Skins/- rafis pinkity edit by henry/section-fail.png b/Skins/- rafis pinkity edit by henry/section-fail.png new file mode 100644 index 00000000..2d866807 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403b392c04dcd7cf2391cb4d607d91c14606d170b71ac1046980574c8c6fbcb8 +size 28763 diff --git a/Skins/- rafis pinkity edit by henry/section-pass.png b/Skins/- rafis pinkity edit by henry/section-pass.png new file mode 100644 index 00000000..a14fa84c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f2ac59baccb61aeabf94a2ea4ef31cfe6f7193adecae18a441ebbd33830482 +size 20967 diff --git a/Skins/- rafis pinkity edit by henry/sectionfail.ogg b/Skins/- rafis pinkity edit by henry/sectionfail.ogg new file mode 100644 index 00000000..194b58a4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f420a1f095236b7fd7a94b72dbfc9774479bafb16ecb73f0e5d94a33e366e9ee +size 47184 diff --git a/Skins/- rafis pinkity edit by henry/sectionpass.ogg b/Skins/- rafis pinkity edit by henry/sectionpass.ogg new file mode 100644 index 00000000..f013f626 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0427ea70fd76aa0e445cf4f5e65c5689545caae0982a7de8fdabec865522d0e +size 23897 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-autoplay.png b/Skins/- rafis pinkity edit by henry/selection-mod-autoplay.png new file mode 100644 index 00000000..fbc771f5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:116c07d1ef04c04b07b74e34948b0e1090b02e4d0b3b17af423e2c37bb9fd75e +size 4707 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-cinema.png b/Skins/- rafis pinkity edit by henry/selection-mod-cinema.png new file mode 100644 index 00000000..6452c157 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9d7d243ed17b1630f46e33a9b62b71e4f8ea2f8a92b67208027dc920f1b098 +size 4982 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-doubletime.png b/Skins/- rafis pinkity edit by henry/selection-mod-doubletime.png new file mode 100644 index 00000000..13ccdf4b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c9eaba33e27b3702c444a535f0dae2f8aafefd3b315db56a4b94c972363012 +size 4635 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-easy.png b/Skins/- rafis pinkity edit by henry/selection-mod-easy.png new file mode 100644 index 00000000..45c3e9d8 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3020e60966280751fedcd1d814f77f942f98ed32bc0c9455813667a30d71b8d2 +size 4930 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-fadein.png b/Skins/- rafis pinkity edit by henry/selection-mod-fadein.png new file mode 100644 index 00000000..6176a80f --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-fadein.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4771b029b739e11ed76e87803fce174a2827b6151e5ac0d48a97d8368952ad +size 15244 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-fadein@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-fadein@2x.png new file mode 100644 index 00000000..feb0d080 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-fadein@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b8ac98181f2ba2ed2f1599e571450416f89dbfc28ad3ac7df69be268296db4 +size 23822 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-flashlight.png b/Skins/- rafis pinkity edit by henry/selection-mod-flashlight.png new file mode 100644 index 00000000..73fb7a37 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99a9e608abbba4e5d6536ac974cf14a5c27ba6b01ece7ffb82bd6ba3e888153 +size 4347 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-halftime.png b/Skins/- rafis pinkity edit by henry/selection-mod-halftime.png new file mode 100644 index 00000000..1e591389 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e95a0a82087177d2cb913dad42409a74dc8451fd9cfdef153395f7f14fb7d913 +size 4512 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-hardrock.png b/Skins/- rafis pinkity edit by henry/selection-mod-hardrock.png new file mode 100644 index 00000000..790d913c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e2ba771c1b9b84aa3a4cb2033914cfe71ae0f217d21c9806ce321b3a00d1b5 +size 4916 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-hidden.png b/Skins/- rafis pinkity edit by henry/selection-mod-hidden.png new file mode 100644 index 00000000..fb819e83 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4257de42462adf6eedd52112017780eee7f466f51bff44427eb382beb8d6efdf +size 4904 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key1.png b/Skins/- rafis pinkity edit by henry/selection-mod-key1.png new file mode 100644 index 00000000..a023b284 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b7b94f9341cf71d532fe740c7b3d8bed167f90db0a69c1063fb880c2261c9d +size 16593 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key1@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-key1@2x.png new file mode 100644 index 00000000..4c997887 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2d31b9ba2983c225aec67b1ba5b5d41509b45eae16ef867d07da875b3c56cb +size 25753 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key2.png b/Skins/- rafis pinkity edit by henry/selection-mod-key2.png new file mode 100644 index 00000000..a3a696ba --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59bb1c8cedefeb8c101cc16285505db36a2a8b7bd1b7a8640ab4f40bb1d4d4f1 +size 16779 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key2@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-key2@2x.png new file mode 100644 index 00000000..5eebb73e --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac8dc39f151ff94d2de76ed4970f2b52aae718fed56bb7ae2b941cf119eb374 +size 26339 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key3.png b/Skins/- rafis pinkity edit by henry/selection-mod-key3.png new file mode 100644 index 00000000..e269ca52 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ae195731e7b937bc44067f5131bd7f533b16c24e4fbb79d35d7c204c9c05d4 +size 16894 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key3@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-key3@2x.png new file mode 100644 index 00000000..f08e2ca0 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1194e11e3a69a5268a951eab40624c887293f4f1f98ff4fb8e8d6ccf80629cd1 +size 26409 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key4.png b/Skins/- rafis pinkity edit by henry/selection-mod-key4.png new file mode 100644 index 00000000..b7f64572 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ed7802f161ec4d0427b8be84db592edf9672877a8ad2a4938c7cdf4ed46d0d +size 16454 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key4@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-key4@2x.png new file mode 100644 index 00000000..b9673020 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dee94ce8a892a2a15411860fcbb030d3305afc1e855da34bd51df56a49aa963 +size 25991 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key5.png b/Skins/- rafis pinkity edit by henry/selection-mod-key5.png new file mode 100644 index 00000000..7275e4fe --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b98636d74a32c5d9651a44cd19837acefad6ad3112c4ed6b41c9deb085dfc7 +size 16748 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key5@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-key5@2x.png new file mode 100644 index 00000000..460b56f5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e79661a02d112c5fd945f0ba8e75daa6b965989755d216d0e105ca17cb3b0b +size 26341 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key6.png b/Skins/- rafis pinkity edit by henry/selection-mod-key6.png new file mode 100644 index 00000000..d401e4aa --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0858c0d91f62af661a4fbe8dd8946d02e31a557190a6b779677ca5e884349f49 +size 16780 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key6@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-key6@2x.png new file mode 100644 index 00000000..ae642e44 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2744e75a20a65305963001a8626bd25978ff0dd063b245269fe35c83f79b7b4f +size 26014 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key7.png b/Skins/- rafis pinkity edit by henry/selection-mod-key7.png new file mode 100644 index 00000000..33652cae --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:836431dc85a171861aa51052bc4b120f83c5dc77e2e535185d2a179cfaae4d7f +size 16514 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key7@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-key7@2x.png new file mode 100644 index 00000000..18b7b07d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8989727b3af0f1945db5e7cfaa5ae038d3aa3cb6e4d2ca13afdac3600e744c2d +size 25281 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key8.png b/Skins/- rafis pinkity edit by henry/selection-mod-key8.png new file mode 100644 index 00000000..2e304fb5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b689f3d61a919f745101cfb67e7b65271ba462fa655646327e70ddda6f0a33 +size 16928 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key8@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-key8@2x.png new file mode 100644 index 00000000..0b379c77 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846f9db1a253e431aca29cb7f3223800f076ec6e3236241997115e60330b2f13 +size 26181 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key9.png b/Skins/- rafis pinkity edit by henry/selection-mod-key9.png new file mode 100644 index 00000000..c1d490fd --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7927f4f382b32d9122cd4482043a8edf3ea035b5241b9b72305b74e51da3de9d +size 16715 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-key9@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-key9@2x.png new file mode 100644 index 00000000..d0438d2c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-key9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fd9e828cea09ffd0f13db1084b3fdc1ec32360110e2b9fd10a75e0a24f7068 +size 26375 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-keycoop.png b/Skins/- rafis pinkity edit by henry/selection-mod-keycoop.png new file mode 100644 index 00000000..d9c4157a --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-keycoop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968564f9fb2dd3d20b22d42484c571a954e02d8fd4e436f0193346e5c2daab82 +size 16401 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-keycoop@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-keycoop@2x.png new file mode 100644 index 00000000..e9c0598b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-keycoop@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf58b5acb39e95e96860e1c7e6432633c398429dfc6721bfc3873e7062fe757 +size 24512 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-nightcore.png b/Skins/- rafis pinkity edit by henry/selection-mod-nightcore.png new file mode 100644 index 00000000..b121cc9a --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c941e45df7d9e42db82ba1a4d734a27b6c65c3ee775b44d2c23e1ca50152d8a0 +size 4953 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-nofail.png b/Skins/- rafis pinkity edit by henry/selection-mod-nofail.png new file mode 100644 index 00000000..64b7f526 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f4fdf098ef65b7fc35d358a8ca71901b76517b9898dcb02becd839d68efc816 +size 4660 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-perfect.png b/Skins/- rafis pinkity edit by henry/selection-mod-perfect.png new file mode 100644 index 00000000..47303d65 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76353480e9c61a75a92d9245e77d008565e07bf23452fdb441d5ea88e2c76356 +size 4655 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-random.png b/Skins/- rafis pinkity edit by henry/selection-mod-random.png new file mode 100644 index 00000000..45368a79 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4929a02442cef3af3d1a41d8aba4da0e27be738bf3bfb25551ce6caeb5e17b74 +size 16856 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-random@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-random@2x.png new file mode 100644 index 00000000..74cd4cf5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8fb6dfe4e1ab08cf24825d6c49329f663cb128a5a29be08012cc36e306f9ed +size 26290 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-relax.png b/Skins/- rafis pinkity edit by henry/selection-mod-relax.png new file mode 100644 index 00000000..3b3d0310 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba47dc963fe88c34eca001ca0f5419c72ed52ba02338fb79589683f7c6978f1 +size 4654 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-relax2.png b/Skins/- rafis pinkity edit by henry/selection-mod-relax2.png new file mode 100644 index 00000000..d72c92d3 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58989ee07e853a2b1cc9f53ed9ebd1b35988cad5dca092b06b67447e49b5dcfb +size 4922 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-scorev2.png b/Skins/- rafis pinkity edit by henry/selection-mod-scorev2.png new file mode 100644 index 00000000..6409b082 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593cd74803be2c97fe9f5eac38fc70fe397b3df4a99206f0f85c70d071e151ee +size 17232 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-spunout.png b/Skins/- rafis pinkity edit by henry/selection-mod-spunout.png new file mode 100644 index 00000000..e2a4fa6c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:858291ef4ba76d20528b122d964600630f2aefb75db2b91f618a72ecb0c650ba +size 5383 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-suddendeath.png b/Skins/- rafis pinkity edit by henry/selection-mod-suddendeath.png new file mode 100644 index 00000000..59940278 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee01100f3bcdbf99a2339bdb92d3eb2ef32012bf2e57cc76edf77a5cf1d4bc2f +size 5152 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-target.png b/Skins/- rafis pinkity edit by henry/selection-mod-target.png new file mode 100644 index 00000000..fc8822a5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427209dc16d372fa574ee43b22fb5100338bf7e42f426e1d940395fbe2e94b69 +size 5057 diff --git a/Skins/- rafis pinkity edit by henry/selection-mod-target@2x.png b/Skins/- rafis pinkity edit by henry/selection-mod-target@2x.png new file mode 100644 index 00000000..c623ea88 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5725065ca3f4261bade2742ca2522aeb3843f577c4b8e4f055412afe1bbc34d8 +size 14174 diff --git a/Skins/- rafis pinkity edit by henry/selection-mode-over.png b/Skins/- rafis pinkity edit by henry/selection-mode-over.png new file mode 100644 index 00000000..64f2e35b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e648c122d33989e72cd32e8545d124b424f0dc7462ad9fd75a44180aa8afb78 +size 3699 diff --git a/Skins/- rafis pinkity edit by henry/selection-mode.png b/Skins/- rafis pinkity edit by henry/selection-mode.png new file mode 100644 index 00000000..2391a6c3 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c421aba74e9414645c8d90de9c87474adea9ded25b4afdb0085f6607cbf11b +size 3649 diff --git a/Skins/- rafis pinkity edit by henry/selection-mods-over.png b/Skins/- rafis pinkity edit by henry/selection-mods-over.png new file mode 100644 index 00000000..ccbf9d66 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8b357fcc8f902f8815eab6348fb1ebda0cce58d060a4a84834bc8bf2c4ccb4 +size 3762 diff --git a/Skins/- rafis pinkity edit by henry/selection-mods.png b/Skins/- rafis pinkity edit by henry/selection-mods.png new file mode 100644 index 00000000..5394e0df --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b8bd9f8bbd783dbe5df699f23dba5a07d440960555a69172b0eb7e48e21b80 +size 3697 diff --git a/Skins/- rafis pinkity edit by henry/selection-options-over.png b/Skins/- rafis pinkity edit by henry/selection-options-over.png new file mode 100644 index 00000000..3854f25b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a139b1b3d07a7e9584e686c6e958df306768f5ffdd64f5249221ad94b55c1b +size 3526 diff --git a/Skins/- rafis pinkity edit by henry/selection-options.png b/Skins/- rafis pinkity edit by henry/selection-options.png new file mode 100644 index 00000000..8cdad45c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7872dcff462b1f62caa2bd05e9984a9355e4caf401a7363d9bcc31b5507e780f +size 3506 diff --git a/Skins/- rafis pinkity edit by henry/selection-random-over.png b/Skins/- rafis pinkity edit by henry/selection-random-over.png new file mode 100644 index 00000000..9c4ac2b2 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71a3f1a2402adb91b813cc92f2a187dc7ae748e28c0202d25eeaa225acc3577 +size 3296 diff --git a/Skins/- rafis pinkity edit by henry/selection-random.png b/Skins/- rafis pinkity edit by henry/selection-random.png new file mode 100644 index 00000000..b6ffda95 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:085feceb152f09fd87f1f0031244fbdc7ab9f58a8e01393b4c9a5a073cf41422 +size 3286 diff --git a/Skins/- rafis pinkity edit by henry/selection-selectoptions-over.png b/Skins/- rafis pinkity edit by henry/selection-selectoptions-over.png new file mode 100644 index 00000000..ef49e7a7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d17470c892f72405e6e836dcd880030be0c8edc4c891c74e9a448de4a01a38 +size 3904 diff --git a/Skins/- rafis pinkity edit by henry/selection-selectoptions.png b/Skins/- rafis pinkity edit by henry/selection-selectoptions.png new file mode 100644 index 00000000..bd52ae1c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500167adb5b2a8a487b6678724eeb23f1f453fee3baef9f284cd0f5c1be9ad6 +size 3652 diff --git a/Skins/- rafis pinkity edit by henry/selection-tab.png b/Skins/- rafis pinkity edit by henry/selection-tab.png new file mode 100644 index 00000000..73f15121 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec16bd5a867810ee6dadcc2751eef1e537e8f34e660304f308e3ce1e2cd262d2 +size 3506 diff --git a/Skins/- rafis pinkity edit by henry/skin.ini b/Skins/- rafis pinkity edit by henry/skin.ini new file mode 100644 index 00000000..25ff592b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/skin.ini @@ -0,0 +1,43 @@ +[General] +Name: no +Author: henry +Version: 2.2 +SliderBallFlip: 0 +CursorRotate: 0 +CursorExpand: 1 +CursorCentre: 1 +SliderBallFrames: 1 +HitCircleOverlayAboveNumer: 0 +ComboBurstRandom: 0 +SliderStyle: 2 + +[Colours] +Combo1: 255,255,255 +SliderBorder: 255, 183, 234 +SliderTrackOverride: 0,0,0 +SongSelectActiveText: 255,255,255 +SongSelectInactiveText: 210,210,210 +SpinnerApproachCircle: 255,255,255 +ApproachCircle: 255,255,255 +MenuGlow: 0,0,190 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 3 +ScorePrefix: score +ScoreOverlap: 2 +[Mania] +Keys: 4 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +//Colours +//images +//Keys diff --git a/Skins/- rafis pinkity edit by henry/sliderb.png b/Skins/- rafis pinkity edit by henry/sliderb.png new file mode 100644 index 00000000..63e8faa5 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4ebc7323093167a1804c44de9c62b45135f07614fae6b63bc42090b66971ec +size 5069 diff --git a/Skins/- rafis pinkity edit by henry/sliderendcircle.png b/Skins/- rafis pinkity edit by henry/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/- rafis pinkity edit by henry/sliderfollowcircle.png b/Skins/- rafis pinkity edit by henry/sliderfollowcircle.png new file mode 100644 index 00000000..bc7984b7 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:109b49897fb29e2596e8193b248a1ca52ff9e7859efb469114b2d5a435bd95af +size 26515 diff --git a/Skins/- rafis pinkity edit by henry/sliderpoint10.png b/Skins/- rafis pinkity edit by henry/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/sliderpoint30.png b/Skins/- rafis pinkity edit by henry/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/sliderscorepoint.png b/Skins/- rafis pinkity edit by henry/sliderscorepoint.png new file mode 100644 index 00000000..6a1e0a92 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f31bb425e79d3f6a4ff031eb34f810e103271a9befdd13801552a2275051c0a6 +size 2779 diff --git a/Skins/- rafis pinkity edit by henry/sliderstartcircle.png b/Skins/- rafis pinkity edit by henry/sliderstartcircle.png new file mode 100644 index 00000000..ad4e800b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/sliderstartcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65d5882b8ec40233394f103468ab78c496de9f9d4540a43fd633acc1d3cd163 +size 9483 diff --git a/Skins/- rafis pinkity edit by henry/soft-hitclap.ogg b/Skins/- rafis pinkity edit by henry/soft-hitclap.ogg new file mode 100644 index 00000000..d6d2b5bf --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa0a2f09a1ad9aec04bc6708ea34d3297e9bf76e15769bdca939f0de077032b +size 5349 diff --git a/Skins/- rafis pinkity edit by henry/soft-hitclap2.ogg b/Skins/- rafis pinkity edit by henry/soft-hitclap2.ogg new file mode 100644 index 00000000..085ec269 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee389b83f7d1bdbefd19d4552a94a6d6ed3cec3cb64acf00f14665c927f3843 +size 7496 diff --git a/Skins/- rafis pinkity edit by henry/soft-hitfinish.ogg b/Skins/- rafis pinkity edit by henry/soft-hitfinish.ogg new file mode 100644 index 00000000..514b7ea0 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469ffc3dcc6a5016f4ce54dd9d79e9c4cc2782ff12164f6e0fc263a959a70257 +size 15904 diff --git a/Skins/- rafis pinkity edit by henry/soft-hitfinish2.ogg b/Skins/- rafis pinkity edit by henry/soft-hitfinish2.ogg new file mode 100644 index 00000000..02a654f3 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-hitfinish2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c181175f91f0cbf922ced55f89386008d898aeb484954d656822669610afc586 +size 15904 diff --git a/Skins/- rafis pinkity edit by henry/soft-hitnormal.ogg b/Skins/- rafis pinkity edit by henry/soft-hitnormal.ogg new file mode 100644 index 00000000..8e96baff --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf91ddb05ee476fdd62eb99b71aa099fd41ca5613f56092cb738a4bfd5166677 +size 8106 diff --git a/Skins/- rafis pinkity edit by henry/soft-hitnormal1.ogg b/Skins/- rafis pinkity edit by henry/soft-hitnormal1.ogg new file mode 100644 index 00000000..c84036ae --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-hitnormal1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e12bcbddab61d73f9c2048aac5f110a2a66144a5fcedde430218657e8ae38a +size 7044 diff --git a/Skins/- rafis pinkity edit by henry/soft-hitnormal2.ogg b/Skins/- rafis pinkity edit by henry/soft-hitnormal2.ogg new file mode 100644 index 00000000..cb3265d6 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-hitnormal2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3c74c7a25fefdbe6a0dd0207f9e4eb75f2b271c3697c2b472e1d5e6438dfb2 +size 10576 diff --git a/Skins/- rafis pinkity edit by henry/soft-hitwhistle.ogg b/Skins/- rafis pinkity edit by henry/soft-hitwhistle.ogg new file mode 100644 index 00000000..7adaed3d --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10135c5ce2ff2eb41717fd021cca7dd76279f6d590e6d535a50678c05368eb51 +size 20498 diff --git a/Skins/- rafis pinkity edit by henry/soft-hitwhistle2.ogg b/Skins/- rafis pinkity edit by henry/soft-hitwhistle2.ogg new file mode 100644 index 00000000..30a517cc --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-hitwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4fd64adf655a9e5e64b8530be0546ea2e8b7ece3fc5dd29c06b50b957f7892 +size 6993 diff --git a/Skins/- rafis pinkity edit by henry/soft-sliderslide.ogg b/Skins/- rafis pinkity edit by henry/soft-sliderslide.ogg new file mode 100644 index 00000000..abd24459 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cdaffd66fc1211cc3fd5ddd4e4a01f8b2ee749c4a894637f6670383d475987 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/soft-sliderslide2.ogg b/Skins/- rafis pinkity edit by henry/soft-sliderslide2.ogg new file mode 100644 index 00000000..eaf9ed8a --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-sliderslide2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f505526a9308475d2449bb38a004ce15e18e8da899142069d23c392149fe91b +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/soft-slidertick.ogg b/Skins/- rafis pinkity edit by henry/soft-slidertick.ogg new file mode 100644 index 00000000..539b7e3c --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58d616735967fc9276eb71bccb78d66465fcf6f9742c58a1be480719f7fa514 +size 14125 diff --git a/Skins/- rafis pinkity edit by henry/soft-slidertick2.ogg b/Skins/- rafis pinkity edit by henry/soft-slidertick2.ogg new file mode 100644 index 00000000..3a192c10 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-slidertick2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d292290bd7c0c13314bc69a49fe6cbdbd19225848dc6cdffcaf8d6fa88b9ff68 +size 4426 diff --git a/Skins/- rafis pinkity edit by henry/soft-sliderwhistle.ogg b/Skins/- rafis pinkity edit by henry/soft-sliderwhistle.ogg new file mode 100644 index 00000000..7fb5b8a2 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/soft-sliderwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290def7f8b6938c8ef603d6abe7d835ea7cf0cc22a1f10c6bb03213f521b4dc2 +size 9647 diff --git a/Skins/- rafis pinkity edit by henry/spinner-approachcircle.png b/Skins/- rafis pinkity edit by henry/spinner-approachcircle.png new file mode 100644 index 00000000..c155d5a2 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778481e1d9263930b36ec53313b416f7735e7d19f7f878a73060faa6ba7a1705 +size 992 diff --git a/Skins/- rafis pinkity edit by henry/spinner-background.png b/Skins/- rafis pinkity edit by henry/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- rafis pinkity edit by henry/spinner-bottom.png b/Skins/- rafis pinkity edit by henry/spinner-bottom.png new file mode 100644 index 00000000..86f7ead0 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6eb34b5afebbc020a14183747f471b1845aa410bd3c08a9ca6c004dc73e013 +size 133 diff --git a/Skins/- rafis pinkity edit by henry/spinner-bottom@2x.png b/Skins/- rafis pinkity edit by henry/spinner-bottom@2x.png new file mode 100644 index 00000000..aa310813 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:805f1a9e2c635ec81111d7dd8a2dbc1fba4e7d7ceda1159ed02f92d2a8d1646a +size 2796 diff --git a/Skins/- rafis pinkity edit by henry/spinner-circle.png b/Skins/- rafis pinkity edit by henry/spinner-circle.png new file mode 100644 index 00000000..0776a074 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cd345a6775078230ad1a9e277e02295ee0f599c875d6b40afafbf0990229f5b +size 102549 diff --git a/Skins/- rafis pinkity edit by henry/spinner-clear.png b/Skins/- rafis pinkity edit by henry/spinner-clear.png new file mode 100644 index 00000000..530fa05f --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58829a1909efa4bf28340841431fb38e988ff43a80874ddd13c91cfcdb7aef3c +size 194 diff --git a/Skins/- rafis pinkity edit by henry/spinner-clear@2x.png b/Skins/- rafis pinkity edit by henry/spinner-clear@2x.png new file mode 100644 index 00000000..657db9b3 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8202b33d92debcc3dc1ce895038915fa2f238e8b7a46aeb859f88bf2726f6ab8 +size 384 diff --git a/Skins/- rafis pinkity edit by henry/spinner-glow.png b/Skins/- rafis pinkity edit by henry/spinner-glow.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- rafis pinkity edit by henry/spinner-metre.png b/Skins/- rafis pinkity edit by henry/spinner-metre.png new file mode 100644 index 00000000..9e3a5aaf --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9208967697a979a12c2ea14f3562895307f268d2cb7f3ed2e5f9f5329729798 +size 2824 diff --git a/Skins/- rafis pinkity edit by henry/spinner-metre@2x.png b/Skins/- rafis pinkity edit by henry/spinner-metre@2x.png new file mode 100644 index 00000000..478dae6f --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126ce6d51e3bfa55029b808a3d78eb126c42ce7a271549701e4619887759c055 +size 5525 diff --git a/Skins/- rafis pinkity edit by henry/spinner-middle.png b/Skins/- rafis pinkity edit by henry/spinner-middle.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/- rafis pinkity edit by henry/spinner-middle2.png b/Skins/- rafis pinkity edit by henry/spinner-middle2.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/- rafis pinkity edit by henry/spinner-middle2@2x.png b/Skins/- rafis pinkity edit by henry/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- rafis pinkity edit by henry/spinner-middle@2x.png b/Skins/- rafis pinkity edit by henry/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- rafis pinkity edit by henry/spinner-osu.png b/Skins/- rafis pinkity edit by henry/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/spinner-rpm.png b/Skins/- rafis pinkity edit by henry/spinner-rpm.png new file mode 100644 index 00000000..d64dcb04 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe03410919abc28b2285857e21f7b3eea904617098940ba14c875b86b9654c20 +size 8339 diff --git a/Skins/- rafis pinkity edit by henry/spinner-rpm@2x.png b/Skins/- rafis pinkity edit by henry/spinner-rpm@2x.png new file mode 100644 index 00000000..3f4af208 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc742ff8dacefb386ad34e4168742fd59914190e3885700cdf33484f70053d6 +size 17175 diff --git a/Skins/- rafis pinkity edit by henry/spinner-spin.png b/Skins/- rafis pinkity edit by henry/spinner-spin.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- rafis pinkity edit by henry/spinner-top.png b/Skins/- rafis pinkity edit by henry/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- rafis pinkity edit by henry/spinnerbonus.ogg b/Skins/- rafis pinkity edit by henry/spinnerbonus.ogg new file mode 100644 index 00000000..a4d98537 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinnerbonus.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126fd1e1a9d458d234d043d8fa9d853c9f98c2008a78d579e2a4c6973138c1b1 +size 22527 diff --git a/Skins/- rafis pinkity edit by henry/spinnerspin.ogg b/Skins/- rafis pinkity edit by henry/spinnerspin.ogg new file mode 100644 index 00000000..c67e2d8b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/spinnerspin.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0672286c726bf25bee248c8c909a2874d502bd109a830c4c672088dffa1b946 +size 7084 diff --git a/Skins/- rafis pinkity edit by henry/star.png b/Skins/- rafis pinkity edit by henry/star.png new file mode 100644 index 00000000..57cc86e3 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0923dba4b00cd7e9a694d731db281bf87da06a8a5bb51c7bf59f889c630f69 +size 17316 diff --git a/Skins/- rafis pinkity edit by henry/star2.png b/Skins/- rafis pinkity edit by henry/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- rafis pinkity edit by henry/volume-bg-effect.png b/Skins/- rafis pinkity edit by henry/volume-bg-effect.png new file mode 100644 index 00000000..9401cbe2 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/volume-bg-effect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed8c50bb03c0004cef60b88f3e11116de0bb44acd3e9d9e089e6f367622ada3 +size 6130 diff --git a/Skins/- rafis pinkity edit by henry/volume-bg-effect@2x.png b/Skins/- rafis pinkity edit by henry/volume-bg-effect@2x.png new file mode 100644 index 00000000..4515098f --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/volume-bg-effect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101be858ccc62f2e7895e1d9b62fb3f60b3c2e01b17d31b92f89586c2d99cfd1 +size 10602 diff --git a/Skins/- rafis pinkity edit by henry/volume-bg.png b/Skins/- rafis pinkity edit by henry/volume-bg.png new file mode 100644 index 00000000..e6e39b51 --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/volume-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9b202321950e38de2a38e76eae508212ebb11900c679646ac40bab5e3d9ded +size 5280 diff --git a/Skins/- rafis pinkity edit by henry/volume-bg@2x.png b/Skins/- rafis pinkity edit by henry/volume-bg@2x.png new file mode 100644 index 00000000..4649433b --- /dev/null +++ b/Skins/- rafis pinkity edit by henry/volume-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35baa1a18decd33f8a1f2991c2fed3fca43a308495df049596c987cf6c891c3f +size 8664 diff --git a/Skins/- v1i4qqq/Click-Short.wav b/Skins/- v1i4qqq/Click-Short.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/Click-Short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/applause.ogg b/Skins/- v1i4qqq/applause.ogg new file mode 100644 index 00000000..94b87d3b --- /dev/null +++ b/Skins/- v1i4qqq/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8430926fc7b1f9df9affed0095dc6d20f2bb6fd7a4d0bf3d1a4fdbe71c6698 +size 684290 diff --git a/Skins/- v1i4qqq/back-button-hover.wav b/Skins/- v1i4qqq/back-button-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/back-button-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/button-left.png b/Skins/- v1i4qqq/button-left.png new file mode 100644 index 00000000..08d5a53d --- /dev/null +++ b/Skins/- v1i4qqq/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609a16f0e88b555da6b0237f6dc34d31f6c9da450c3358037b1a9a0596786376 +size 505 diff --git a/Skins/- v1i4qqq/button-middle.png b/Skins/- v1i4qqq/button-middle.png new file mode 100644 index 00000000..581569b6 --- /dev/null +++ b/Skins/- v1i4qqq/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fabcf7e48f53a17bb988a47596b97f18620e3a0ab86d363b80c98d0295083aa6 +size 405 diff --git a/Skins/- v1i4qqq/button-right.png b/Skins/- v1i4qqq/button-right.png new file mode 100644 index 00000000..baed4b5e --- /dev/null +++ b/Skins/- v1i4qqq/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e619c1505f466a5f51c0a4555f2d8016e3dc292c4f99bca1fcc911157a10379 +size 510 diff --git a/Skins/- v1i4qqq/click-close.wav b/Skins/- v1i4qqq/click-close.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/click-close.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/comboburst.png b/Skins/- v1i4qqq/comboburst.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/- v1i4qqq/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/- v1i4qqq/count1.png b/Skins/- v1i4qqq/count1.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/count1s.wav b/Skins/- v1i4qqq/count1s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/count2.png b/Skins/- v1i4qqq/count2.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/count2s.wav b/Skins/- v1i4qqq/count2s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/count3.png b/Skins/- v1i4qqq/count3.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/count3s.wav b/Skins/- v1i4qqq/count3s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/cursor.png b/Skins/- v1i4qqq/cursor.png new file mode 100644 index 00000000..95e31950 --- /dev/null +++ b/Skins/- v1i4qqq/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d163fe6e83fea638d558cb8fc465a826f379b9f49870be4279b30371968fe661 +size 6101 diff --git a/Skins/- v1i4qqq/cursortrail.png b/Skins/- v1i4qqq/cursortrail.png new file mode 100644 index 00000000..1532d8f4 --- /dev/null +++ b/Skins/- v1i4qqq/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1677f08d127018d18f1869c0d592b26cfedcb671131a024087cfa6084989a701 +size 1166 diff --git a/Skins/- v1i4qqq/default-0@2x.png b/Skins/- v1i4qqq/default-0@2x.png new file mode 100644 index 00000000..a3fafbf8 --- /dev/null +++ b/Skins/- v1i4qqq/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cfeeca9a8c068be513b8fb3517b69134e09d21df3fcca7045cf2db462f96b31 +size 6547 diff --git a/Skins/- v1i4qqq/default-1@2x.png b/Skins/- v1i4qqq/default-1@2x.png new file mode 100644 index 00000000..0d0743cb --- /dev/null +++ b/Skins/- v1i4qqq/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093dc7f703b99f8706ad485df5d232403f9324b0aa2ea64b78c52de02eed1d10 +size 2484 diff --git a/Skins/- v1i4qqq/default-2@2x.png b/Skins/- v1i4qqq/default-2@2x.png new file mode 100644 index 00000000..2ffe5cd6 --- /dev/null +++ b/Skins/- v1i4qqq/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc410ede9d8687a78bd8f6d64dd2f3fb0b92046aab6672937e13f833e7e4eadc +size 6992 diff --git a/Skins/- v1i4qqq/default-3@2x.png b/Skins/- v1i4qqq/default-3@2x.png new file mode 100644 index 00000000..010688a0 --- /dev/null +++ b/Skins/- v1i4qqq/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d58c1effd7ccca3f01f014394a556de4b48e91e5341dc47091211ba698cafee +size 7421 diff --git a/Skins/- v1i4qqq/default-4@2x.png b/Skins/- v1i4qqq/default-4@2x.png new file mode 100644 index 00000000..9434b460 --- /dev/null +++ b/Skins/- v1i4qqq/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d265f7af3bc9dcf872d7aad9388aff23dcb2e7a2c4667d26518a807e79f69c83 +size 4736 diff --git a/Skins/- v1i4qqq/default-5@2x.png b/Skins/- v1i4qqq/default-5@2x.png new file mode 100644 index 00000000..11a5e41e --- /dev/null +++ b/Skins/- v1i4qqq/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144c8677590584a73e2cbe9a320265695a24a0d3ca612d214602a336ee16a80f +size 6625 diff --git a/Skins/- v1i4qqq/default-6@2x.png b/Skins/- v1i4qqq/default-6@2x.png new file mode 100644 index 00000000..f5a65cbf --- /dev/null +++ b/Skins/- v1i4qqq/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:528c118c4944966ee12e70f14d3517e65cedb8c12a8af0135ab42b84ab3edd92 +size 7209 diff --git a/Skins/- v1i4qqq/default-7@2x.png b/Skins/- v1i4qqq/default-7@2x.png new file mode 100644 index 00000000..64479691 --- /dev/null +++ b/Skins/- v1i4qqq/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a40375ed6af2b0ded7a6f5084bf60e438463cc23089f3a6dc95f59285edc50 +size 4583 diff --git a/Skins/- v1i4qqq/default-8@2x.png b/Skins/- v1i4qqq/default-8@2x.png new file mode 100644 index 00000000..b2cd9b41 --- /dev/null +++ b/Skins/- v1i4qqq/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d7e1519179accf4d8ba451a07010b43b1f4ab00f82d231d64ccb0ef866accd3 +size 7586 diff --git a/Skins/- v1i4qqq/default-9@2x.png b/Skins/- v1i4qqq/default-9@2x.png new file mode 100644 index 00000000..0481dcb0 --- /dev/null +++ b/Skins/- v1i4qqq/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81012dcb6de0cb8060813f39dc9a66d883a16607304f5155a77934a79bd0554 +size 7108 diff --git a/Skins/- v1i4qqq/drum-hitclap.wav b/Skins/- v1i4qqq/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- v1i4qqq/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- v1i4qqq/drum-hitfinish.wav b/Skins/- v1i4qqq/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- v1i4qqq/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- v1i4qqq/drum-hitnormal.wav b/Skins/- v1i4qqq/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- v1i4qqq/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- v1i4qqq/drum-hitwhistle.wav b/Skins/- v1i4qqq/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- v1i4qqq/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- v1i4qqq/drum-sliderslide.wav b/Skins/- v1i4qqq/drum-sliderslide.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/- v1i4qqq/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/- v1i4qqq/drum-slidertick.wav b/Skins/- v1i4qqq/drum-slidertick.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/- v1i4qqq/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/- v1i4qqq/drum-sliderwhistle.wav b/Skins/- v1i4qqq/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/fail-background@2x.png b/Skins/- v1i4qqq/fail-background@2x.png new file mode 100644 index 00000000..a8931e17 --- /dev/null +++ b/Skins/- v1i4qqq/fail-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca156681709d5870cea4e231fd96ea3e79729bfb0f4d1a1b9a7ccecf9dd32654 +size 7149210 diff --git a/Skins/- v1i4qqq/failsound.wav b/Skins/- v1i4qqq/failsound.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/failsound.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/followpoint-0.png b/Skins/- v1i4qqq/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/followpoint-1.png b/Skins/- v1i4qqq/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/followpoint-2.png b/Skins/- v1i4qqq/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/followpoint-3.png b/Skins/- v1i4qqq/followpoint-3.png new file mode 100644 index 00000000..a81db0b2 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a803fbe24eabd516910ebaca836d5bc68ef3f83d9e2a05cf0c27ea9ed44e9bc7 +size 1334 diff --git a/Skins/- v1i4qqq/followpoint-4.png b/Skins/- v1i4qqq/followpoint-4.png new file mode 100644 index 00000000..a81db0b2 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a803fbe24eabd516910ebaca836d5bc68ef3f83d9e2a05cf0c27ea9ed44e9bc7 +size 1334 diff --git a/Skins/- v1i4qqq/followpoint-5.png b/Skins/- v1i4qqq/followpoint-5.png new file mode 100644 index 00000000..a81db0b2 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a803fbe24eabd516910ebaca836d5bc68ef3f83d9e2a05cf0c27ea9ed44e9bc7 +size 1334 diff --git a/Skins/- v1i4qqq/followpoint-6.png b/Skins/- v1i4qqq/followpoint-6.png new file mode 100644 index 00000000..a81db0b2 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a803fbe24eabd516910ebaca836d5bc68ef3f83d9e2a05cf0c27ea9ed44e9bc7 +size 1334 diff --git a/Skins/- v1i4qqq/followpoint-7.png b/Skins/- v1i4qqq/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/followpoint-8.png b/Skins/- v1i4qqq/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/followpoint-9.png b/Skins/- v1i4qqq/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/followpoint.png b/Skins/- v1i4qqq/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- v1i4qqq/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- v1i4qqq/go.png b/Skins/- v1i4qqq/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- v1i4qqq/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- v1i4qqq/gos.wav b/Skins/- v1i4qqq/gos.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/hit0-0@2x.png b/Skins/- v1i4qqq/hit0-0@2x.png new file mode 100644 index 00000000..2eb4adf7 --- /dev/null +++ b/Skins/- v1i4qqq/hit0-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d13b91c3361d9f5ea012df8177464fa45fbf03739b11740210388622bc768af +size 5891 diff --git a/Skins/- v1i4qqq/hit0.png b/Skins/- v1i4qqq/hit0.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- v1i4qqq/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- v1i4qqq/hit100-0@2x.png b/Skins/- v1i4qqq/hit100-0@2x.png new file mode 100644 index 00000000..599ed0be --- /dev/null +++ b/Skins/- v1i4qqq/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9a7e160b9c18dd72a9c20ddb02e030d4fbe002e543a51f6110926672b4064c +size 2824 diff --git a/Skins/- v1i4qqq/hit100.png b/Skins/- v1i4qqq/hit100.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- v1i4qqq/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- v1i4qqq/hit100k-0@2x.png b/Skins/- v1i4qqq/hit100k-0@2x.png new file mode 100644 index 00000000..599ed0be --- /dev/null +++ b/Skins/- v1i4qqq/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9a7e160b9c18dd72a9c20ddb02e030d4fbe002e543a51f6110926672b4064c +size 2824 diff --git a/Skins/- v1i4qqq/hit100k.png b/Skins/- v1i4qqq/hit100k.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- v1i4qqq/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- v1i4qqq/hit300-0.png b/Skins/- v1i4qqq/hit300-0.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/hit300.png b/Skins/- v1i4qqq/hit300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- v1i4qqq/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- v1i4qqq/hit300g-0.png b/Skins/- v1i4qqq/hit300g-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/hit300g.png b/Skins/- v1i4qqq/hit300g.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- v1i4qqq/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- v1i4qqq/hit300k-0.png b/Skins/- v1i4qqq/hit300k-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/hit300k.png b/Skins/- v1i4qqq/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/- v1i4qqq/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/- v1i4qqq/hit50-0@2x.png b/Skins/- v1i4qqq/hit50-0@2x.png new file mode 100644 index 00000000..d40d2a8c --- /dev/null +++ b/Skins/- v1i4qqq/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12b0e7569ce9ac4979192a7e005799a809a11ab84dee276ffbff0b177d5374b +size 3256 diff --git a/Skins/- v1i4qqq/hit50.png b/Skins/- v1i4qqq/hit50.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- v1i4qqq/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- v1i4qqq/hitcircle.png b/Skins/- v1i4qqq/hitcircle.png new file mode 100644 index 00000000..58edacff --- /dev/null +++ b/Skins/- v1i4qqq/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e081bcb246d426acaac852fa4a6cd05e5c6804989d0187301144679128d77ec +size 9659 diff --git a/Skins/- v1i4qqq/hitcircleoverlay.png b/Skins/- v1i4qqq/hitcircleoverlay.png new file mode 100644 index 00000000..e84ae01b --- /dev/null +++ b/Skins/- v1i4qqq/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2242085fcfd0a3680fe53191a999547fe99a3703fbbae2925c799df6ef287b +size 8362 diff --git a/Skins/- v1i4qqq/inputoverlay-background@2x.png b/Skins/- v1i4qqq/inputoverlay-background@2x.png new file mode 100644 index 00000000..91fb08d5 --- /dev/null +++ b/Skins/- v1i4qqq/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523497b7b2623fb672c65d0a354ff00419e929580b94990119fd942e9e9f5e7c +size 18579 diff --git a/Skins/- v1i4qqq/inputoverlay-key@2x.png b/Skins/- v1i4qqq/inputoverlay-key@2x.png new file mode 100644 index 00000000..8636c3f9 --- /dev/null +++ b/Skins/- v1i4qqq/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27391d2f9f26009103a3c0575d00fec2962708f40c5cba18af6a0386dfcd8da3 +size 1599 diff --git a/Skins/- v1i4qqq/menu-back-hover.wav b/Skins/- v1i4qqq/menu-back-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/menu-back-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/menu-back@2x.png b/Skins/- v1i4qqq/menu-back@2x.png new file mode 100644 index 00000000..24ea320a --- /dev/null +++ b/Skins/- v1i4qqq/menu-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c29c8c638aa5b2d05cd50b249c5312c2271fc330811d47a2a761991db38c452 +size 218385 diff --git a/Skins/- v1i4qqq/menu-button-background.png b/Skins/- v1i4qqq/menu-button-background.png new file mode 100644 index 00000000..87f7ef2c --- /dev/null +++ b/Skins/- v1i4qqq/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18164a675fb6124e0b2314faa75d3008b82eacb1ffd6075c87e006cce194195 +size 148263 diff --git a/Skins/- v1i4qqq/menu-direct-hover.wav b/Skins/- v1i4qqq/menu-direct-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/menu-direct-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/menu-edit-hover.wav b/Skins/- v1i4qqq/menu-edit-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/menu-edit-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/menu-exit-hover.wav b/Skins/- v1i4qqq/menu-exit-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/menu-exit-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/menu-freeplay-hover.wav b/Skins/- v1i4qqq/menu-freeplay-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/menu-freeplay-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/menu-multiplayer-hover.wav b/Skins/- v1i4qqq/menu-multiplayer-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/menu-multiplayer-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/menu-options-hover.wav b/Skins/- v1i4qqq/menu-options-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/menu-options-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/menu-play-hover.wav b/Skins/- v1i4qqq/menu-play-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/menu-play-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/menu-snow.png b/Skins/- v1i4qqq/menu-snow.png new file mode 100644 index 00000000..7e22b144 --- /dev/null +++ b/Skins/- v1i4qqq/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55224d111173e37ce1074a9fd04ca71911853375458ff631c38fa61384ec2a2 +size 4711 diff --git a/Skins/- v1i4qqq/menuback.ogg b/Skins/- v1i4qqq/menuback.ogg new file mode 100644 index 00000000..5cb0162f --- /dev/null +++ b/Skins/- v1i4qqq/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cb6ea0dcf468a9dc030d5db8a55b5fe0a9383bc32b266cec987747f95e2ac3a +size 72609 diff --git a/Skins/- v1i4qqq/menuclick.wav b/Skins/- v1i4qqq/menuclick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/menuhit.ogg b/Skins/- v1i4qqq/menuhit.ogg new file mode 100644 index 00000000..5f0f6d6e --- /dev/null +++ b/Skins/- v1i4qqq/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dcaec0895fd248b5dcbd86256a1b2b1c19f2da2719aacc1d634921a3fe4c552 +size 110571 diff --git a/Skins/- v1i4qqq/metronomelow.wav b/Skins/- v1i4qqq/metronomelow.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/- v1i4qqq/metronomelow.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/- v1i4qqq/mode-osu-small.png b/Skins/- v1i4qqq/mode-osu-small.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/mode-osu.png b/Skins/- v1i4qqq/mode-osu.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/normal-hitclap.wav b/Skins/- v1i4qqq/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- v1i4qqq/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- v1i4qqq/normal-hitfinish.wav b/Skins/- v1i4qqq/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- v1i4qqq/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- v1i4qqq/normal-hitnormal.wav b/Skins/- v1i4qqq/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- v1i4qqq/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- v1i4qqq/normal-hitwhistle.wav b/Skins/- v1i4qqq/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- v1i4qqq/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- v1i4qqq/normal-sliderslide.wav b/Skins/- v1i4qqq/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/normal-slidertick.wav b/Skins/- v1i4qqq/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/- v1i4qqq/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/- v1i4qqq/normal-sliderwhistle.wav b/Skins/- v1i4qqq/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/pause-back.png b/Skins/- v1i4qqq/pause-back.png new file mode 100644 index 00000000..0a829a26 --- /dev/null +++ b/Skins/- v1i4qqq/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e5d94b3e18a3f3f0c8f1ee1764bae456445f646de33b6b3bb2eba6ee51e40bc +size 1624 diff --git a/Skins/- v1i4qqq/pause-continue.png b/Skins/- v1i4qqq/pause-continue.png new file mode 100644 index 00000000..27feadb5 --- /dev/null +++ b/Skins/- v1i4qqq/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da27559b9b60d88c18c90c1a452e5a6592bf1ae7e4765555f2674e05671ecae7 +size 1817 diff --git a/Skins/- v1i4qqq/pause-overlay.png b/Skins/- v1i4qqq/pause-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/pause-overlay@2x.png b/Skins/- v1i4qqq/pause-overlay@2x.png new file mode 100644 index 00000000..e8be8d94 --- /dev/null +++ b/Skins/- v1i4qqq/pause-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bc2ff6d7b8936176d71b78c5923a4c557cb72b1e6220473b767599183e7cbd +size 6515868 diff --git a/Skins/- v1i4qqq/pause-replay.png b/Skins/- v1i4qqq/pause-replay.png new file mode 100644 index 00000000..565d2a66 --- /dev/null +++ b/Skins/- v1i4qqq/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c41a68998baaa109bf1a50a68bd023ce8eae7587878ece1cd04cba3fda8ea15 +size 1953 diff --git a/Skins/- v1i4qqq/pause-retry.png b/Skins/- v1i4qqq/pause-retry.png new file mode 100644 index 00000000..ab67a7ce --- /dev/null +++ b/Skins/- v1i4qqq/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59e4ba92d33058adca38c3f46e0c5b9d0e5b2cd2994e71bd972f8eab535a157e +size 1634 diff --git a/Skins/- v1i4qqq/play-skip.png b/Skins/- v1i4qqq/play-skip.png new file mode 100644 index 00000000..9ad22811 --- /dev/null +++ b/Skins/- v1i4qqq/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa0a9a6e51d75293e84fb12e9d6ae476e164ec3dab7fb40c76789d9abe0c170 +size 59686 diff --git a/Skins/- v1i4qqq/play-skip@2x.png b/Skins/- v1i4qqq/play-skip@2x.png new file mode 100644 index 00000000..7d6667c5 --- /dev/null +++ b/Skins/- v1i4qqq/play-skip@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9faf8c7db6b49eb91b31b02a4afc6f9aba0fb3686229db4508cbd6e1d268798 +size 96082 diff --git a/Skins/- v1i4qqq/play-unranked.png b/Skins/- v1i4qqq/play-unranked.png new file mode 100644 index 00000000..e1963470 --- /dev/null +++ b/Skins/- v1i4qqq/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab11f7b61c60c029307452119123be79c29199d2a221921c3f8ee698c3faf186 +size 6201 diff --git a/Skins/- v1i4qqq/play-warningarrow.png b/Skins/- v1i4qqq/play-warningarrow.png new file mode 100644 index 00000000..591bfb4b --- /dev/null +++ b/Skins/- v1i4qqq/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a78253af24043c0aaca7efee728cfec55f3572a5a0027efe9e457a4a29de14 +size 1034 diff --git a/Skins/- v1i4qqq/ranking-A-small@2x.png b/Skins/- v1i4qqq/ranking-A-small@2x.png new file mode 100644 index 00000000..4729fa57 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc26fec90400a6c07088792a6c6a1816193a8efcf08fe87fcfdb6a59e803b8ad +size 2497 diff --git a/Skins/- v1i4qqq/ranking-B-small@2x.png b/Skins/- v1i4qqq/ranking-B-small@2x.png new file mode 100644 index 00000000..b7db66ee --- /dev/null +++ b/Skins/- v1i4qqq/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a04d32615f4ff519b1f19b36aa2d24211e0e16b2d24e167d1ef85d9cc4279049 +size 2574 diff --git a/Skins/- v1i4qqq/ranking-C-small@2x.png b/Skins/- v1i4qqq/ranking-C-small@2x.png new file mode 100644 index 00000000..1aa98965 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9957e1ee3bacb9b21b14d2a0de2b7135425378b5cb8c5eb8894adb82518a25a9 +size 2818 diff --git a/Skins/- v1i4qqq/ranking-D-small@2x.png b/Skins/- v1i4qqq/ranking-D-small@2x.png new file mode 100644 index 00000000..dfd10a7c --- /dev/null +++ b/Skins/- v1i4qqq/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fb12a7135d72c8471a478aaeae1531ae7d8063e26b1a78a22ff155d61905d8 +size 2295 diff --git a/Skins/- v1i4qqq/ranking-D@2x.png b/Skins/- v1i4qqq/ranking-D@2x.png new file mode 100644 index 00000000..4d5d6ca5 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233753d59588d4965ea627163f93c6af82f0be3897bacadc6b7a38776f5876d6 +size 161612 diff --git a/Skins/- v1i4qqq/ranking-S-small@2x.png b/Skins/- v1i4qqq/ranking-S-small@2x.png new file mode 100644 index 00000000..187f62f4 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22da1eea940ef7ce3249e5425cf432cd655ad433364f489d45b1e74a68e1de7c +size 2951 diff --git a/Skins/- v1i4qqq/ranking-SH-small@2x.png b/Skins/- v1i4qqq/ranking-SH-small@2x.png new file mode 100644 index 00000000..187f62f4 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22da1eea940ef7ce3249e5425cf432cd655ad433364f489d45b1e74a68e1de7c +size 2951 diff --git a/Skins/- v1i4qqq/ranking-X-small@2x.png b/Skins/- v1i4qqq/ranking-X-small@2x.png new file mode 100644 index 00000000..7301ceae --- /dev/null +++ b/Skins/- v1i4qqq/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb8ffdb3a25b40cabe56453a4b9e8b2c6d0a2719426c65fceb4cbc5cdc12ca1 +size 4149 diff --git a/Skins/- v1i4qqq/ranking-XH-small@2x.png b/Skins/- v1i4qqq/ranking-XH-small@2x.png new file mode 100644 index 00000000..7301ceae --- /dev/null +++ b/Skins/- v1i4qqq/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb8ffdb3a25b40cabe56453a4b9e8b2c6d0a2719426c65fceb4cbc5cdc12ca1 +size 4149 diff --git a/Skins/- v1i4qqq/ranking-a@2x.png b/Skins/- v1i4qqq/ranking-a@2x.png new file mode 100644 index 00000000..4af71303 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-a@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbe3e5d615de3295d3801532655a2de0b5b3a8c81c00f79d079caa9573ab348d +size 182939 diff --git a/Skins/- v1i4qqq/ranking-accuracy.png b/Skins/- v1i4qqq/ranking-accuracy.png new file mode 100644 index 00000000..5f932993 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a7fda3833d65631514a5dabf3000bba6c100ecee4160bc3b247e09876e6035 +size 290 diff --git a/Skins/- v1i4qqq/ranking-b@2x.png b/Skins/- v1i4qqq/ranking-b@2x.png new file mode 100644 index 00000000..c138ea25 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-b@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cad4b383872d1898e8758c6b4e869cdf0b6ef949271dde32af2845aeeb6a153 +size 184832 diff --git a/Skins/- v1i4qqq/ranking-c@2x.png b/Skins/- v1i4qqq/ranking-c@2x.png new file mode 100644 index 00000000..43482c44 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-c@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb629d3640d35390e521ecd3cf7d293124f4d5a06925e23200a08e3c46188ae +size 181248 diff --git a/Skins/- v1i4qqq/ranking-graph.png b/Skins/- v1i4qqq/ranking-graph.png new file mode 100644 index 00000000..bfeee118 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8f278d9ccb4b9295fe9ef46c1e9d5b451a0018d224dbfe628cc60f951c3765 +size 11795 diff --git a/Skins/- v1i4qqq/ranking-graph@2x.png b/Skins/- v1i4qqq/ranking-graph@2x.png new file mode 100644 index 00000000..fd0e0453 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d36e31c2aa2460106c6675d2e1cc91325314cff967a1c7d97c9def57b98a20 +size 856 diff --git a/Skins/- v1i4qqq/ranking-maxcombo.png b/Skins/- v1i4qqq/ranking-maxcombo.png new file mode 100644 index 00000000..5f932993 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a7fda3833d65631514a5dabf3000bba6c100ecee4160bc3b247e09876e6035 +size 290 diff --git a/Skins/- v1i4qqq/ranking-panel.png b/Skins/- v1i4qqq/ranking-panel.png new file mode 100644 index 00000000..858776c2 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d0b855b8637cff4a8e3faa2f89b2107848649516002fa90cc4a5409a5e32c0 +size 3829 diff --git a/Skins/- v1i4qqq/ranking-panel@2x.png b/Skins/- v1i4qqq/ranking-panel@2x.png new file mode 100644 index 00000000..94ec8e44 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4d84d40e30a4738a42f8cba93cfd35d58790f945445257f5d8c383fd352dd1 +size 7750609 diff --git a/Skins/- v1i4qqq/ranking-perfect.png b/Skins/- v1i4qqq/ranking-perfect.png new file mode 100644 index 00000000..5f932993 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a7fda3833d65631514a5dabf3000bba6c100ecee4160bc3b247e09876e6035 +size 290 diff --git a/Skins/- v1i4qqq/ranking-s@2x.png b/Skins/- v1i4qqq/ranking-s@2x.png new file mode 100644 index 00000000..bbe70c95 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-s@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5cb68daf9f41ea46fd1b0b98b61e400cd9e97534af13f2b3f93d80f959e560 +size 182442 diff --git a/Skins/- v1i4qqq/ranking-sh@2x.png b/Skins/- v1i4qqq/ranking-sh@2x.png new file mode 100644 index 00000000..bbe70c95 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-sh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5cb68daf9f41ea46fd1b0b98b61e400cd9e97534af13f2b3f93d80f959e560 +size 182442 diff --git a/Skins/- v1i4qqq/ranking-title.png b/Skins/- v1i4qqq/ranking-title.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/ranking-winner.png b/Skins/- v1i4qqq/ranking-winner.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/ranking-x@2x.png b/Skins/- v1i4qqq/ranking-x@2x.png new file mode 100644 index 00000000..023f7de2 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9509d89aa00a180a4907f415cffac86b5b3dd531cb8342570afa8a92dcee8360 +size 199771 diff --git a/Skins/- v1i4qqq/ranking-xh@2x.png b/Skins/- v1i4qqq/ranking-xh@2x.png new file mode 100644 index 00000000..023f7de2 --- /dev/null +++ b/Skins/- v1i4qqq/ranking-xh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9509d89aa00a180a4907f415cffac86b5b3dd531cb8342570afa8a92dcee8360 +size 199771 diff --git a/Skins/- v1i4qqq/ready.png b/Skins/- v1i4qqq/ready.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/readys.wav b/Skins/- v1i4qqq/readys.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/reversearrow.png b/Skins/- v1i4qqq/reversearrow.png new file mode 100644 index 00000000..ef8cf612 --- /dev/null +++ b/Skins/- v1i4qqq/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5695b832a1fbac168ab908169038b77ba5485a1411c018f32ba26ad1c95b21dc +size 5423 diff --git a/Skins/- v1i4qqq/score-0@2x.png b/Skins/- v1i4qqq/score-0@2x.png new file mode 100644 index 00000000..edba93b1 --- /dev/null +++ b/Skins/- v1i4qqq/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78a3e2f43db75de5913c0db22e74d2d4158fd44cfebd18672cff2409ac532ae +size 1911 diff --git a/Skins/- v1i4qqq/score-1@2x.png b/Skins/- v1i4qqq/score-1@2x.png new file mode 100644 index 00000000..013f5602 --- /dev/null +++ b/Skins/- v1i4qqq/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e365d88ee92d4f8052356bc844ee6742db55ac403afc35c3e839ed01bd0e2a +size 787 diff --git a/Skins/- v1i4qqq/score-2@2x.png b/Skins/- v1i4qqq/score-2@2x.png new file mode 100644 index 00000000..14e55fe9 --- /dev/null +++ b/Skins/- v1i4qqq/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29344a206b9b3fad3c4ff3b143c2c5b11065fd990498ef29d5cad3276d9f765e +size 1681 diff --git a/Skins/- v1i4qqq/score-3@2x.png b/Skins/- v1i4qqq/score-3@2x.png new file mode 100644 index 00000000..04c696f0 --- /dev/null +++ b/Skins/- v1i4qqq/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afdb55c45198f56bbb97bde2c844306cffadd3f26645f7aa4252f1ae0b732a7 +size 1824 diff --git a/Skins/- v1i4qqq/score-4@2x.png b/Skins/- v1i4qqq/score-4@2x.png new file mode 100644 index 00000000..14574621 --- /dev/null +++ b/Skins/- v1i4qqq/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e7c6936737f66dbded4152586a691b9f1967697dd4af32575346ce81315358 +size 1361 diff --git a/Skins/- v1i4qqq/score-5@2x.png b/Skins/- v1i4qqq/score-5@2x.png new file mode 100644 index 00000000..1f173dba --- /dev/null +++ b/Skins/- v1i4qqq/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687cfdd778b1e801a8b7e2261e8fb8a6e62223c1fa992d8a4bb844da886fce3a +size 1775 diff --git a/Skins/- v1i4qqq/score-6@2x.png b/Skins/- v1i4qqq/score-6@2x.png new file mode 100644 index 00000000..5fc123c2 --- /dev/null +++ b/Skins/- v1i4qqq/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e363d465dc2a5a982deb048e570642096d8bfec36e093757b30513206c1e77 +size 2008 diff --git a/Skins/- v1i4qqq/score-7@2x.png b/Skins/- v1i4qqq/score-7@2x.png new file mode 100644 index 00000000..c27fdb82 --- /dev/null +++ b/Skins/- v1i4qqq/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5452489baefc146f7312c60b528cd75cdae46e574c2c70823c88804cf559e07 +size 1574 diff --git a/Skins/- v1i4qqq/score-8@2x.png b/Skins/- v1i4qqq/score-8@2x.png new file mode 100644 index 00000000..ce77837f --- /dev/null +++ b/Skins/- v1i4qqq/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90adf57d5d3e5d0d7de246c3e600f9483228bee8e0a8c026f2d61963ed7cc5e +size 2216 diff --git a/Skins/- v1i4qqq/score-9@2x.png b/Skins/- v1i4qqq/score-9@2x.png new file mode 100644 index 00000000..20eb3963 --- /dev/null +++ b/Skins/- v1i4qqq/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c17b73e44331b14a276ff71a1297197e70696f7550b82738183a6ac7f8c85ef +size 2059 diff --git a/Skins/- v1i4qqq/score-comma@2x.png b/Skins/- v1i4qqq/score-comma@2x.png new file mode 100644 index 00000000..623609de --- /dev/null +++ b/Skins/- v1i4qqq/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b36e8d17fe24663fe246cd750a91fa608db4d1a7b9a0120818fbbb5180f7ddda +size 362 diff --git a/Skins/- v1i4qqq/score-dot@2x.png b/Skins/- v1i4qqq/score-dot@2x.png new file mode 100644 index 00000000..1d00db59 --- /dev/null +++ b/Skins/- v1i4qqq/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:690987d43dde7f15a86ce6f4260bf02dac62bdaddd56df3bf5b6e5ac1ebdd0fb +size 558 diff --git a/Skins/- v1i4qqq/score-percent.png b/Skins/- v1i4qqq/score-percent.png new file mode 100644 index 00000000..24179fcb --- /dev/null +++ b/Skins/- v1i4qqq/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83bec2eaa5e0b0a3dfda7112ecbfab291de7591b766caee49a46b445965c397d +size 581 diff --git a/Skins/- v1i4qqq/score-x.png b/Skins/- v1i4qqq/score-x.png new file mode 100644 index 00000000..906648fa --- /dev/null +++ b/Skins/- v1i4qqq/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ff24028255e3787e38390106f32b20bb8c6af2943c418f3436b584ce9d5674 +size 2810 diff --git a/Skins/- v1i4qqq/scorebar-bg.png b/Skins/- v1i4qqq/scorebar-bg.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- v1i4qqq/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- v1i4qqq/scorebar-bg@2x.png b/Skins/- v1i4qqq/scorebar-bg@2x.png new file mode 100644 index 00000000..25d6fecf --- /dev/null +++ b/Skins/- v1i4qqq/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d092884579104cc9494b374ee231f3601ea190282a8c8c5536a0bbe617a739 +size 54560 diff --git a/Skins/- v1i4qqq/scorebar-colour@2x.png b/Skins/- v1i4qqq/scorebar-colour@2x.png new file mode 100644 index 00000000..7068dfb9 --- /dev/null +++ b/Skins/- v1i4qqq/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc3bf7a330072089f31b8b7659514f8bcad40a5062a3ff9259524d107ebc2d7 +size 34680 diff --git a/Skins/- v1i4qqq/scorebar-ki.png b/Skins/- v1i4qqq/scorebar-ki.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- v1i4qqq/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- v1i4qqq/scorebar-kidanger.png b/Skins/- v1i4qqq/scorebar-kidanger.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- v1i4qqq/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- v1i4qqq/scorebar-kidanger2.png b/Skins/- v1i4qqq/scorebar-kidanger2.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- v1i4qqq/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- v1i4qqq/scorebar-marker.png b/Skins/- v1i4qqq/scorebar-marker.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-0.png b/Skins/- v1i4qqq/scoreentry-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-1.png b/Skins/- v1i4qqq/scoreentry-1.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-2.png b/Skins/- v1i4qqq/scoreentry-2.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-3.png b/Skins/- v1i4qqq/scoreentry-3.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-4.png b/Skins/- v1i4qqq/scoreentry-4.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-5.png b/Skins/- v1i4qqq/scoreentry-5.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-6.png b/Skins/- v1i4qqq/scoreentry-6.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-7.png b/Skins/- v1i4qqq/scoreentry-7.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-8.png b/Skins/- v1i4qqq/scoreentry-8.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-9.png b/Skins/- v1i4qqq/scoreentry-9.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-comma.png b/Skins/- v1i4qqq/scoreentry-comma.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-dot.png b/Skins/- v1i4qqq/scoreentry-dot.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-percent.png b/Skins/- v1i4qqq/scoreentry-percent.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/scoreentry-x.png b/Skins/- v1i4qqq/scoreentry-x.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/section-fail.png b/Skins/- v1i4qqq/section-fail.png new file mode 100644 index 00000000..a525c05f --- /dev/null +++ b/Skins/- v1i4qqq/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dedde311b356c6b777671fc761041120726c1fd7f3ade6dc1afce33eb7e9a002 +size 2963 diff --git a/Skins/- v1i4qqq/section-pass.png b/Skins/- v1i4qqq/section-pass.png new file mode 100644 index 00000000..7b12dcc2 --- /dev/null +++ b/Skins/- v1i4qqq/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ecfe0583f9d4bfd36c6a389832bc987aaa851b28f5e891aa83376f8fae233e +size 2558 diff --git a/Skins/- v1i4qqq/sectionfail.ogg b/Skins/- v1i4qqq/sectionfail.ogg new file mode 100644 index 00000000..5b4ae02a --- /dev/null +++ b/Skins/- v1i4qqq/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2d4597e5b1b324c850002f91e6b9d08ca0946187f0c723cba735feab7da8fb +size 20162 diff --git a/Skins/- v1i4qqq/sectionpass.ogg b/Skins/- v1i4qqq/sectionpass.ogg new file mode 100644 index 00000000..fa37a24c --- /dev/null +++ b/Skins/- v1i4qqq/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf130a33447e75d86784c920c247ae384c2cd993462075f62da98ba1624248a +size 13211 diff --git a/Skins/- v1i4qqq/seeya.ogg b/Skins/- v1i4qqq/seeya.ogg new file mode 100644 index 00000000..8417447a --- /dev/null +++ b/Skins/- v1i4qqq/seeya.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b2f2edfb37c141aaeed77a29b60c4027617d9cd46e844a2c865df3bb36f570 +size 6292 diff --git a/Skins/- v1i4qqq/select-difficulty.wav b/Skins/- v1i4qqq/select-difficulty.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/select-expand.wav b/Skins/- v1i4qqq/select-expand.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/select-expand.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/selection-mod-autoplay@2x.png b/Skins/- v1i4qqq/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..e725062b --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d7aca2efb8ad5e88d4bf25c95ce931144b8a931cc6f95adbd4b0989a251dcc +size 52775 diff --git a/Skins/- v1i4qqq/selection-mod-cinema@2x.png b/Skins/- v1i4qqq/selection-mod-cinema@2x.png new file mode 100644 index 00000000..494292c1 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f965fde9cc29915cae5e3fc35cb5ee21de7ebe5785fe38ae28b97c58e918d3b7 +size 52939 diff --git a/Skins/- v1i4qqq/selection-mod-doubletime@2x.png b/Skins/- v1i4qqq/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6fbfb400 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6b968d9675a2d709183448c89c27e212efe5bc4defe910282615a8f843ff90 +size 56301 diff --git a/Skins/- v1i4qqq/selection-mod-easy@2x.png b/Skins/- v1i4qqq/selection-mod-easy@2x.png new file mode 100644 index 00000000..9f201852 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a8b39d04305a57bdc1ae3eb13f66e28e56059f98191e747d8e386534ce39f5 +size 52524 diff --git a/Skins/- v1i4qqq/selection-mod-flashlight@2x.png b/Skins/- v1i4qqq/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..e18d1c2f --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7decbe516e73fb384bd3f001796f22cf10bb4e9a041f232b806cf32328209a28 +size 52053 diff --git a/Skins/- v1i4qqq/selection-mod-halftime@2x.png b/Skins/- v1i4qqq/selection-mod-halftime@2x.png new file mode 100644 index 00000000..7f6d3fff --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2437d37bf0af2dbc0120cf86a6d38d770f63574125ee594e5466d86d02b6c030 +size 49461 diff --git a/Skins/- v1i4qqq/selection-mod-hardrock@2x.png b/Skins/- v1i4qqq/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..c55732c7 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfdfb4e59d8307a38a084b13c6995322f2f7e79cd6ccc38dca433c73b6b84f5b +size 56015 diff --git a/Skins/- v1i4qqq/selection-mod-hidden@2x.png b/Skins/- v1i4qqq/selection-mod-hidden@2x.png new file mode 100644 index 00000000..061f44fc --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a669306c5f17de21c27d55de7e178e3fdd37e24f345212f20bac6aa77ff356e6 +size 51906 diff --git a/Skins/- v1i4qqq/selection-mod-nightcore@2x.png b/Skins/- v1i4qqq/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..36343b83 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df1afb957f2ac7dac017ee85b7ec7622bf04bd09e6c531c9b36974c63a17540 +size 56512 diff --git a/Skins/- v1i4qqq/selection-mod-nofail@2x.png b/Skins/- v1i4qqq/selection-mod-nofail@2x.png new file mode 100644 index 00000000..91f6b082 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d92e537c6c498ca91928ad23a2a1b89a4abc853489e8a01b01df936c58b432 +size 54197 diff --git a/Skins/- v1i4qqq/selection-mod-perfect@2x.png b/Skins/- v1i4qqq/selection-mod-perfect@2x.png new file mode 100644 index 00000000..f06e2283 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90cee36d1a5d901ff77c3bc8979889d29cb712a6daf823471d10ab51e9d29621 +size 53135 diff --git a/Skins/- v1i4qqq/selection-mod-relax2@2x.png b/Skins/- v1i4qqq/selection-mod-relax2@2x.png new file mode 100644 index 00000000..f9c40407 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6512a6db0af147354d208304ce04a49f9433836eb498320381ae5c828031a5 +size 53399 diff --git a/Skins/- v1i4qqq/selection-mod-relax@2x.png b/Skins/- v1i4qqq/selection-mod-relax@2x.png new file mode 100644 index 00000000..2045fc99 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d038ee8b034e9c53a864d18cf0375e4180c8a0b9731b699cfba77dfbf35ef84c +size 52628 diff --git a/Skins/- v1i4qqq/selection-mod-scorev2@2x.png b/Skins/- v1i4qqq/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..260225cf --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91975b866b9662c10b49245c45cca2dcb34ffb5dc54331308cb7f01dddc94127 +size 55370 diff --git a/Skins/- v1i4qqq/selection-mod-spunout@2x.png b/Skins/- v1i4qqq/selection-mod-spunout@2x.png new file mode 100644 index 00000000..bb31ccbb --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903e4d6fdb4eecbeb459a505292dfd60d86693b237082f303411b9bd6afb7040 +size 51267 diff --git a/Skins/- v1i4qqq/selection-mod-suddendeath@2x.png b/Skins/- v1i4qqq/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..f122470d --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69022350f59230ea0c638e7097df88e2c9953c2df0b2475d5331a73d06ad941 +size 53441 diff --git a/Skins/- v1i4qqq/selection-mod-target.png b/Skins/- v1i4qqq/selection-mod-target.png new file mode 100644 index 00000000..5f932993 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a7fda3833d65631514a5dabf3000bba6c100ecee4160bc3b247e09876e6035 +size 290 diff --git a/Skins/- v1i4qqq/selection-mod-target@2x.png b/Skins/- v1i4qqq/selection-mod-target@2x.png new file mode 100644 index 00000000..147c6df0 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225433aa1778263ae5592def69ceb1aae83d0a16a22f3a9d0f9349eb019b150f +size 51245 diff --git a/Skins/- v1i4qqq/selection-mode-over.png b/Skins/- v1i4qqq/selection-mode-over.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/selection-mode.png b/Skins/- v1i4qqq/selection-mode.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/- v1i4qqq/selection-mode@2x.png b/Skins/- v1i4qqq/selection-mode@2x.png new file mode 100644 index 00000000..fba1fd8b --- /dev/null +++ b/Skins/- v1i4qqq/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44e6a0258b5b09c0febac009cf686f023ac805b7a63dea1f9e47d355eaa20db +size 565406 diff --git a/Skins/- v1i4qqq/selection-mods-over.png b/Skins/- v1i4qqq/selection-mods-over.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/selection-mods-over@2x.png b/Skins/- v1i4qqq/selection-mods-over@2x.png new file mode 100644 index 00000000..d70268c8 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6190fddf7f39fcf81f1158cd2526cc9699b833a6f57e33e8e4d104ca69844f7 +size 19856 diff --git a/Skins/- v1i4qqq/selection-mods.png b/Skins/- v1i4qqq/selection-mods.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/selection-mods@2x.png b/Skins/- v1i4qqq/selection-mods@2x.png new file mode 100644 index 00000000..c86b077b --- /dev/null +++ b/Skins/- v1i4qqq/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cca3eeead4b5253f4973c2f2e61a7d80bebe1c269d3a878dbe8fb23385d65412 +size 14809 diff --git a/Skins/- v1i4qqq/selection-options-over.png b/Skins/- v1i4qqq/selection-options-over.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/selection-options.png b/Skins/- v1i4qqq/selection-options.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/selection-random-over.png b/Skins/- v1i4qqq/selection-random-over.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/selection-random.png b/Skins/- v1i4qqq/selection-random.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/selection-tab.png b/Skins/- v1i4qqq/selection-tab.png new file mode 100644 index 00000000..e4ef48a1 --- /dev/null +++ b/Skins/- v1i4qqq/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45aed2cd843cca4a7a1df5535156f4fdb9d95f9eb41f3b669b398b1dd341a669 +size 111 diff --git a/Skins/- v1i4qqq/skin.ini b/Skins/- v1i4qqq/skin.ini new file mode 100644 index 00000000..270e525a --- /dev/null +++ b/Skins/- v1i4qqq/skin.ini @@ -0,0 +1,34 @@ +// skin.ini generated by osu! skin mixer v2.9.0 + +[General] +Name: v1i4qqq +Author: osu! skin mixer by rednir +Version: latest +AllowSliderBallTint: 0 +SliderBallFlip: 0 +SpinnerFadePlayfield: 0 +SpinnerNoBlink: 0 +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 +CursorTrailRotate: 0 + +[Colours] +MenuGlow: 0,0,0 +SongSelectActiveText: 255,255,255 +SongSelectInactiveText: 160,160,160 +InputOverlayText: 0,0,0 +SliderBorder: 200, 200, 200 +SliderTrackOverride: 0, 0, 0 +Combo1: 255,255,255 +StarBreakAdditive: 246,255,0 + +[Fonts] +ScorePrefix: score +ScoreOverlap: 12 +ComboPrefix: score +ComboOverlap: 4 +HitCirclePrefix: default +HitCircleOverlap: 6 + +[CatchTheBeat] diff --git a/Skins/- v1i4qqq/sliderb0@2x.png b/Skins/- v1i4qqq/sliderb0@2x.png new file mode 100644 index 00000000..5862f195 --- /dev/null +++ b/Skins/- v1i4qqq/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7079bf6cd25533cfc6736b820eb40f3a045b4101425da3c4e5d315f6876b8210 +size 19619 diff --git a/Skins/- v1i4qqq/sliderb10@2x.png b/Skins/- v1i4qqq/sliderb10@2x.png new file mode 100644 index 00000000..60f8e6ba --- /dev/null +++ b/Skins/- v1i4qqq/sliderb10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22198cffbdd3ecbc3a37838a26a7546b725a66f68e3be6b55f86a264f5237bf +size 20564 diff --git a/Skins/- v1i4qqq/sliderb11@2x.png b/Skins/- v1i4qqq/sliderb11@2x.png new file mode 100644 index 00000000..645285ef --- /dev/null +++ b/Skins/- v1i4qqq/sliderb11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95beff43ddb3096accbf606f95023083c9cd6e352e7846efe94b2e9692fe6923 +size 20381 diff --git a/Skins/- v1i4qqq/sliderb12@2x.png b/Skins/- v1i4qqq/sliderb12@2x.png new file mode 100644 index 00000000..bf59e501 --- /dev/null +++ b/Skins/- v1i4qqq/sliderb12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:838187c06a509d70c3c5f9485d2d664555e7e655cb32f729c6bd974efdb5993b +size 20062 diff --git a/Skins/- v1i4qqq/sliderb13@2x.png b/Skins/- v1i4qqq/sliderb13@2x.png new file mode 100644 index 00000000..036ec19c --- /dev/null +++ b/Skins/- v1i4qqq/sliderb13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ab047874038ccbf8c2d7ec92a822928aa69c8a24a53d09e1662aece38353f3 +size 19837 diff --git a/Skins/- v1i4qqq/sliderb1@2x.png b/Skins/- v1i4qqq/sliderb1@2x.png new file mode 100644 index 00000000..036ec19c --- /dev/null +++ b/Skins/- v1i4qqq/sliderb1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ab047874038ccbf8c2d7ec92a822928aa69c8a24a53d09e1662aece38353f3 +size 19837 diff --git a/Skins/- v1i4qqq/sliderb2@2x.png b/Skins/- v1i4qqq/sliderb2@2x.png new file mode 100644 index 00000000..bf59e501 --- /dev/null +++ b/Skins/- v1i4qqq/sliderb2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:838187c06a509d70c3c5f9485d2d664555e7e655cb32f729c6bd974efdb5993b +size 20062 diff --git a/Skins/- v1i4qqq/sliderb3@2x.png b/Skins/- v1i4qqq/sliderb3@2x.png new file mode 100644 index 00000000..645285ef --- /dev/null +++ b/Skins/- v1i4qqq/sliderb3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95beff43ddb3096accbf606f95023083c9cd6e352e7846efe94b2e9692fe6923 +size 20381 diff --git a/Skins/- v1i4qqq/sliderb4@2x.png b/Skins/- v1i4qqq/sliderb4@2x.png new file mode 100644 index 00000000..60f8e6ba --- /dev/null +++ b/Skins/- v1i4qqq/sliderb4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22198cffbdd3ecbc3a37838a26a7546b725a66f68e3be6b55f86a264f5237bf +size 20564 diff --git a/Skins/- v1i4qqq/sliderb5@2x.png b/Skins/- v1i4qqq/sliderb5@2x.png new file mode 100644 index 00000000..73937b85 --- /dev/null +++ b/Skins/- v1i4qqq/sliderb5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28dfd10530fa335f185aac4fb5aa060fe874fed9927315276f64f887753ae05f +size 20594 diff --git a/Skins/- v1i4qqq/sliderb6@2x.png b/Skins/- v1i4qqq/sliderb6@2x.png new file mode 100644 index 00000000..af50da95 --- /dev/null +++ b/Skins/- v1i4qqq/sliderb6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875b62fb22413767c2185aedc4d24af9fed5c136b864944648dec354f606f5c2 +size 20816 diff --git a/Skins/- v1i4qqq/sliderb7@2x.png b/Skins/- v1i4qqq/sliderb7@2x.png new file mode 100644 index 00000000..9c937916 --- /dev/null +++ b/Skins/- v1i4qqq/sliderb7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90cb45c75318cbe2779706a44db6e26ccc4d6005e7eb0ec51778583080ac73ff +size 20937 diff --git a/Skins/- v1i4qqq/sliderb8@2x.png b/Skins/- v1i4qqq/sliderb8@2x.png new file mode 100644 index 00000000..af50da95 --- /dev/null +++ b/Skins/- v1i4qqq/sliderb8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875b62fb22413767c2185aedc4d24af9fed5c136b864944648dec354f606f5c2 +size 20816 diff --git a/Skins/- v1i4qqq/sliderb9@2x.png b/Skins/- v1i4qqq/sliderb9@2x.png new file mode 100644 index 00000000..73937b85 --- /dev/null +++ b/Skins/- v1i4qqq/sliderb9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28dfd10530fa335f185aac4fb5aa060fe874fed9927315276f64f887753ae05f +size 20594 diff --git a/Skins/- v1i4qqq/sliderb@2x.png b/Skins/- v1i4qqq/sliderb@2x.png new file mode 100644 index 00000000..6d0d4628 --- /dev/null +++ b/Skins/- v1i4qqq/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a5c396bb225005f3575ca378a0345ba6d9f2f24a8bb1e62952cec6b50d9428 +size 19198 diff --git a/Skins/- v1i4qqq/sliderendcircle.png b/Skins/- v1i4qqq/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/- v1i4qqq/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/- v1i4qqq/sliderfollowcircle.png b/Skins/- v1i4qqq/sliderfollowcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/sliderscorepoint.png b/Skins/- v1i4qqq/sliderscorepoint.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/soft-hitclap.wav b/Skins/- v1i4qqq/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- v1i4qqq/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- v1i4qqq/soft-hitfinish.wav b/Skins/- v1i4qqq/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- v1i4qqq/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- v1i4qqq/soft-hitnormal.wav b/Skins/- v1i4qqq/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- v1i4qqq/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- v1i4qqq/soft-hitwhistle.wav b/Skins/- v1i4qqq/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- v1i4qqq/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- v1i4qqq/soft-sliderslide.wav b/Skins/- v1i4qqq/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/soft-slidertick.wav b/Skins/- v1i4qqq/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/soft-sliderwhistle.wav b/Skins/- v1i4qqq/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- v1i4qqq/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- v1i4qqq/songselect-bottom@2x.png b/Skins/- v1i4qqq/songselect-bottom@2x.png new file mode 100644 index 00000000..c03eebb6 --- /dev/null +++ b/Skins/- v1i4qqq/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4336d194dd01f8dea5c57accaaa3b52940fe3d0a09b61cbdc75c5d8a6a86d43 +size 936752 diff --git a/Skins/- v1i4qqq/songselect-top@2x.png b/Skins/- v1i4qqq/songselect-top@2x.png new file mode 100644 index 00000000..34a13d12 --- /dev/null +++ b/Skins/- v1i4qqq/songselect-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fdd71f0f49e021db89a5465f8e2a0a9473ce964d6dc166fe1e58351f4bef88d +size 1063300 diff --git a/Skins/- v1i4qqq/spinner-approachcircle.png b/Skins/- v1i4qqq/spinner-approachcircle.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/spinner-bottom.png b/Skins/- v1i4qqq/spinner-bottom.png new file mode 100644 index 00000000..f299e855 --- /dev/null +++ b/Skins/- v1i4qqq/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afee4931d8243672ed46c9eb93976201add49e73d51d83e781522b97373d173 +size 1670 diff --git a/Skins/- v1i4qqq/spinner-clear.png b/Skins/- v1i4qqq/spinner-clear.png new file mode 100644 index 00000000..efd229df --- /dev/null +++ b/Skins/- v1i4qqq/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612562c22825c7d9d61bce68bc857207debd628c9d766a75e8b95b10eff4ae9a +size 173 diff --git a/Skins/- v1i4qqq/spinner-glow.png b/Skins/- v1i4qqq/spinner-glow.png new file mode 100644 index 00000000..efd229df --- /dev/null +++ b/Skins/- v1i4qqq/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612562c22825c7d9d61bce68bc857207debd628c9d766a75e8b95b10eff4ae9a +size 173 diff --git a/Skins/- v1i4qqq/spinner-middle.png b/Skins/- v1i4qqq/spinner-middle.png new file mode 100644 index 00000000..ddc112b4 --- /dev/null +++ b/Skins/- v1i4qqq/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f59b0fc644f54f721952e11221ef90db84b30c48f2edf9eb6fc7a5297a96674 +size 143 diff --git a/Skins/- v1i4qqq/spinner-middle2.png b/Skins/- v1i4qqq/spinner-middle2.png new file mode 100644 index 00000000..ddc112b4 --- /dev/null +++ b/Skins/- v1i4qqq/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f59b0fc644f54f721952e11221ef90db84b30c48f2edf9eb6fc7a5297a96674 +size 143 diff --git a/Skins/- v1i4qqq/spinner-rpm@2x.png b/Skins/- v1i4qqq/spinner-rpm@2x.png new file mode 100644 index 00000000..ddc112b4 --- /dev/null +++ b/Skins/- v1i4qqq/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f59b0fc644f54f721952e11221ef90db84b30c48f2edf9eb6fc7a5297a96674 +size 143 diff --git a/Skins/- v1i4qqq/spinner-spin.png b/Skins/- v1i4qqq/spinner-spin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- v1i4qqq/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- v1i4qqq/spinner-top@2x.png b/Skins/- v1i4qqq/spinner-top@2x.png new file mode 100644 index 00000000..ddc112b4 --- /dev/null +++ b/Skins/- v1i4qqq/spinner-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f59b0fc644f54f721952e11221ef90db84b30c48f2edf9eb6fc7a5297a96674 +size 143 diff --git a/Skins/- v1i4qqq/spinnerbonus.wav b/Skins/- v1i4qqq/spinnerbonus.wav new file mode 100644 index 00000000..4eeeb4b8 --- /dev/null +++ b/Skins/- v1i4qqq/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a207a6a8e703df332c545b7a8e26282eca46ed72b619eb10e857797cdd98be +size 81574 diff --git a/Skins/- v1i4qqq/spinnerspin.wav b/Skins/- v1i4qqq/spinnerspin.wav new file mode 100644 index 00000000..875566af --- /dev/null +++ b/Skins/- v1i4qqq/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d78a8ca9586439e7ec23cdf6d3118b2d89668a60d4884d9cdb3fda00119da1e +size 180140 diff --git a/Skins/- v1i4qqq/star.png b/Skins/- v1i4qqq/star.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/- v1i4qqq/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/- v1i4qqq/star2.png b/Skins/- v1i4qqq/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- v1i4qqq/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- v1i4qqq/star2@2x.png b/Skins/- v1i4qqq/star2@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- v1i4qqq/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- v1i4qqq/welcome.ogg b/Skins/- v1i4qqq/welcome.ogg new file mode 100644 index 00000000..a0add12b --- /dev/null +++ b/Skins/- v1i4qqq/welcome.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4b73d5d40472192d88ef7075c0447a1407d52a12595fb12a3f87c86e91fb44 +size 28990 diff --git a/Skins/- ⊹ aia 1/applause.mp3 b/Skins/- ⊹ aia 1/applause.mp3 new file mode 100644 index 00000000..cbd40bf6 --- /dev/null +++ b/Skins/- ⊹ aia 1/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c7c6ca74c5270f97889906c8e9a19b4f3f5a38f357500220a2f519da29f102 +size 2600959 diff --git a/Skins/- ⊹ aia 1/applause2.wav b/Skins/- ⊹ aia 1/applause2.wav new file mode 100644 index 00000000..f8185794 --- /dev/null +++ b/Skins/- ⊹ aia 1/applause2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ac43ab21e918da8adac73bfe374e97ddb7c76a24f2bd66213eaa833465f9da +size 4466178 diff --git a/Skins/- ⊹ aia 1/approachcircle.png b/Skins/- ⊹ aia 1/approachcircle.png new file mode 100644 index 00000000..9fb6c6ae --- /dev/null +++ b/Skins/- ⊹ aia 1/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb434dc285c3a64a44da60b396363030f71427381e23070121abd5afb56e9c4 +size 4504 diff --git a/Skins/- ⊹ aia 1/combo-x.png b/Skins/- ⊹ aia 1/combo-x.png new file mode 100644 index 00000000..badad02c --- /dev/null +++ b/Skins/- ⊹ aia 1/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3914c6cf068add6375e8e49caf2b8856f1f2fb90133e3e1d824eca7a0bac06e9 +size 1465 diff --git a/Skins/- ⊹ aia 1/combo-x@2x.png b/Skins/- ⊹ aia 1/combo-x@2x.png new file mode 100644 index 00000000..7041a49d --- /dev/null +++ b/Skins/- ⊹ aia 1/combo-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08346328873c9f4e9da6cde4fc3321711b749c3ae48d1d703ad6c791faf58eae +size 5569 diff --git a/Skins/- ⊹ aia 1/combobreak.wav b/Skins/- ⊹ aia 1/combobreak.wav new file mode 100644 index 00000000..0923f624 --- /dev/null +++ b/Skins/- ⊹ aia 1/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99eac7db102a2f66f9ed42e618247a924df444b9de48e21cc0bc792708693063 +size 105412 diff --git a/Skins/- ⊹ aia 1/comboburst.png b/Skins/- ⊹ aia 1/comboburst.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/count1s.wav b/Skins/- ⊹ aia 1/count1s.wav new file mode 100644 index 00000000..0fb49dab --- /dev/null +++ b/Skins/- ⊹ aia 1/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f242e82becde75d5343e61cc004e7a2c07ea97ba90b1061a8db13fb845c1fb86 +size 140634 diff --git a/Skins/- ⊹ aia 1/count2s.wav b/Skins/- ⊹ aia 1/count2s.wav new file mode 100644 index 00000000..0fb49dab --- /dev/null +++ b/Skins/- ⊹ aia 1/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f242e82becde75d5343e61cc004e7a2c07ea97ba90b1061a8db13fb845c1fb86 +size 140634 diff --git a/Skins/- ⊹ aia 1/count3s.wav b/Skins/- ⊹ aia 1/count3s.wav new file mode 100644 index 00000000..0fb49dab --- /dev/null +++ b/Skins/- ⊹ aia 1/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f242e82becde75d5343e61cc004e7a2c07ea97ba90b1061a8db13fb845c1fb86 +size 140634 diff --git a/Skins/- ⊹ aia 1/cursor.png b/Skins/- ⊹ aia 1/cursor.png new file mode 100644 index 00000000..0ac7c315 --- /dev/null +++ b/Skins/- ⊹ aia 1/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c728c0777f227ad6e0fde252848584787dd63a22acd661df2c88a3eb111bf6 +size 6899 diff --git a/Skins/- ⊹ aia 1/cursortrail.png b/Skins/- ⊹ aia 1/cursortrail.png new file mode 100644 index 00000000..0a140ab6 --- /dev/null +++ b/Skins/- ⊹ aia 1/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3844738c6b2395743f8b9d71942aad8a5600e94479c20ce6d45b5e572d2b5795 +size 5680 diff --git a/Skins/- ⊹ aia 1/default-0.png b/Skins/- ⊹ aia 1/default-0.png new file mode 100644 index 00000000..0a0100bb --- /dev/null +++ b/Skins/- ⊹ aia 1/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f6bd7bd65e3e4270cfb87db2e8975996ad84fcc64fbf45f3f9433b1db66b42 +size 3586 diff --git a/Skins/- ⊹ aia 1/default-0@2x.png b/Skins/- ⊹ aia 1/default-0@2x.png new file mode 100644 index 00000000..d720ed91 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b4177cd9e3673661552a0c8156a30a1ed7c2a6d4975616e975457fb8d584d9 +size 8384 diff --git a/Skins/- ⊹ aia 1/default-1.png b/Skins/- ⊹ aia 1/default-1.png new file mode 100644 index 00000000..7f0e45c0 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8784845566236ef6bd0a937582dac2bf28c0e09ee71eddddc8f6cbccf213b219 +size 2269 diff --git a/Skins/- ⊹ aia 1/default-1@2x.png b/Skins/- ⊹ aia 1/default-1@2x.png new file mode 100644 index 00000000..08c6e46c --- /dev/null +++ b/Skins/- ⊹ aia 1/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5816005a6c2b19da1b3141f84a0a6e8ea35de0b211d2e9f9d43b7d29e703aebd +size 4554 diff --git a/Skins/- ⊹ aia 1/default-2.png b/Skins/- ⊹ aia 1/default-2.png new file mode 100644 index 00000000..620cd7f7 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b63cc07b2657bc3f5e66b9d901f9d78a5277b7d7b65f847a39501f345140f1 +size 3460 diff --git a/Skins/- ⊹ aia 1/default-2@2x.png b/Skins/- ⊹ aia 1/default-2@2x.png new file mode 100644 index 00000000..695da376 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b34d2c20df442cb505584d36e817c4b176ee4ad97689c084952f89554b745886 +size 7981 diff --git a/Skins/- ⊹ aia 1/default-3.png b/Skins/- ⊹ aia 1/default-3.png new file mode 100644 index 00000000..ac49de89 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffab7b6ce7fe72e4282708c831b0791247d09911e847c05ed794afa81bb018ed +size 3350 diff --git a/Skins/- ⊹ aia 1/default-3@2x.png b/Skins/- ⊹ aia 1/default-3@2x.png new file mode 100644 index 00000000..67791239 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50df485e50c0463daf3fb236595ae413b5d32559a933904af5fd18325fe5fce6 +size 7937 diff --git a/Skins/- ⊹ aia 1/default-4.png b/Skins/- ⊹ aia 1/default-4.png new file mode 100644 index 00000000..44abca1e --- /dev/null +++ b/Skins/- ⊹ aia 1/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e723a53c3971b3210bdb7375c5ca919fa9873aef4aa601e4a72be216ef75a9a +size 2560 diff --git a/Skins/- ⊹ aia 1/default-4@2x.png b/Skins/- ⊹ aia 1/default-4@2x.png new file mode 100644 index 00000000..a1e95654 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae13c425f1516156c893d47fdac4cc7c1dbf6e3403ebc292b12dc59ae562337b +size 6029 diff --git a/Skins/- ⊹ aia 1/default-5.png b/Skins/- ⊹ aia 1/default-5.png new file mode 100644 index 00000000..0ce1cfca --- /dev/null +++ b/Skins/- ⊹ aia 1/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eaf613cc1cd5cc008c7818e093b894f699b971bd3d17c38de54dbbcb5c34f4f +size 3679 diff --git a/Skins/- ⊹ aia 1/default-5@2x.png b/Skins/- ⊹ aia 1/default-5@2x.png new file mode 100644 index 00000000..0411e085 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b758d3e30f948a43bd9456b02336a5bc5d30744404dbbfae5853f297ce44c5d +size 8556 diff --git a/Skins/- ⊹ aia 1/default-6.png b/Skins/- ⊹ aia 1/default-6.png new file mode 100644 index 00000000..51b29671 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5bb1136dd4a692e567afef463c473c22604bc542b185fefda202c7d689d884c +size 3494 diff --git a/Skins/- ⊹ aia 1/default-6@2x.png b/Skins/- ⊹ aia 1/default-6@2x.png new file mode 100644 index 00000000..9fb0fa3f --- /dev/null +++ b/Skins/- ⊹ aia 1/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f94613642bd1cf57a899c92ba3651a9090b2eed9acac7ab92ac2515046297b +size 8417 diff --git a/Skins/- ⊹ aia 1/default-7.png b/Skins/- ⊹ aia 1/default-7.png new file mode 100644 index 00000000..c0353e9b --- /dev/null +++ b/Skins/- ⊹ aia 1/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a845737578f65c813ec0ddf31d0d6e7063e81ab34e893b32ccd30e79b48695a2 +size 2657 diff --git a/Skins/- ⊹ aia 1/default-7@2x.png b/Skins/- ⊹ aia 1/default-7@2x.png new file mode 100644 index 00000000..c55bda23 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af7dc2947065a096ef25270e0d9f22ed4dcf0af00b328f69ffb3b5b29337e45 +size 6915 diff --git a/Skins/- ⊹ aia 1/default-8.png b/Skins/- ⊹ aia 1/default-8.png new file mode 100644 index 00000000..670e256a --- /dev/null +++ b/Skins/- ⊹ aia 1/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d4d8449e5a938fce61a1041278ce677383248522a600e239ab85b58be0dfb2 +size 3596 diff --git a/Skins/- ⊹ aia 1/default-8@2x.png b/Skins/- ⊹ aia 1/default-8@2x.png new file mode 100644 index 00000000..80ec9750 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8fc20e6a0914c0ca7340e50552aa8cae3615d34b185d028924fc0c34104fb66 +size 8595 diff --git a/Skins/- ⊹ aia 1/default-9.png b/Skins/- ⊹ aia 1/default-9.png new file mode 100644 index 00000000..720890a6 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8852148bc85983cbd028aa94fc2e4336cd896961ae65e990a3ce9198e222c217 +size 3438 diff --git a/Skins/- ⊹ aia 1/default-9@2x.png b/Skins/- ⊹ aia 1/default-9@2x.png new file mode 100644 index 00000000..6c5b45b6 --- /dev/null +++ b/Skins/- ⊹ aia 1/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892d4d1ed2027ec1cbbe148e5bd3117df9653e23935a897f72b7cbb59d7253a2 +size 8394 diff --git a/Skins/- ⊹ aia 1/desktop.ini b/Skins/- ⊹ aia 1/desktop.ini new file mode 100644 index 00000000..17c2f566 --- /dev/null +++ b/Skins/- ⊹ aia 1/desktop.ini @@ -0,0 +1,4 @@ +[ViewState] +Mode= +Vid= +FolderType=Pictures diff --git a/Skins/- ⊹ aia 1/drum-hitclap.wav b/Skins/- ⊹ aia 1/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- ⊹ aia 1/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- ⊹ aia 1/drum-hitclap2.wav b/Skins/- ⊹ aia 1/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- ⊹ aia 1/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- ⊹ aia 1/drum-hitfinish.wav b/Skins/- ⊹ aia 1/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- ⊹ aia 1/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- ⊹ aia 1/drum-hitnormal.wav b/Skins/- ⊹ aia 1/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- ⊹ aia 1/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- ⊹ aia 1/drum-hitnormalh.wav b/Skins/- ⊹ aia 1/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/- ⊹ aia 1/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/- ⊹ aia 1/drum-hitwhistle.wav b/Skins/- ⊹ aia 1/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- ⊹ aia 1/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- ⊹ aia 1/drum-sliderslide.wav b/Skins/- ⊹ aia 1/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 1/drum-slidertick.wav b/Skins/- ⊹ aia 1/drum-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- ⊹ aia 1/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- ⊹ aia 1/drum-sliderwhistle.wav b/Skins/- ⊹ aia 1/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- ⊹ aia 1/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- ⊹ aia 1/followpoint-0.png b/Skins/- ⊹ aia 1/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/followpoint-1.png b/Skins/- ⊹ aia 1/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/followpoint-11.png b/Skins/- ⊹ aia 1/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/- ⊹ aia 1/followpoint-12.png b/Skins/- ⊹ aia 1/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/- ⊹ aia 1/followpoint-13.png b/Skins/- ⊹ aia 1/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/- ⊹ aia 1/followpoint-14.png b/Skins/- ⊹ aia 1/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/- ⊹ aia 1/followpoint-15.png b/Skins/- ⊹ aia 1/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/- ⊹ aia 1/followpoint-16.png b/Skins/- ⊹ aia 1/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/- ⊹ aia 1/followpoint-17.png b/Skins/- ⊹ aia 1/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/- ⊹ aia 1/followpoint-18.png b/Skins/- ⊹ aia 1/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/- ⊹ aia 1/followpoint-19.png b/Skins/- ⊹ aia 1/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/- ⊹ aia 1/followpoint-2.png b/Skins/- ⊹ aia 1/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/followpoint-20.png b/Skins/- ⊹ aia 1/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/- ⊹ aia 1/followpoint-21.png b/Skins/- ⊹ aia 1/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/- ⊹ aia 1/followpoint-22.png b/Skins/- ⊹ aia 1/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/- ⊹ aia 1/followpoint-23.png b/Skins/- ⊹ aia 1/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/- ⊹ aia 1/followpoint-3.png b/Skins/- ⊹ aia 1/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- ⊹ aia 1/followpoint-4.png b/Skins/- ⊹ aia 1/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 1/followpoint-5.png b/Skins/- ⊹ aia 1/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 1/followpoint-6.png b/Skins/- ⊹ aia 1/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 1/followpoint-7.png b/Skins/- ⊹ aia 1/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 1/followpoint-8.png b/Skins/- ⊹ aia 1/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 1/followpoint-9.png b/Skins/- ⊹ aia 1/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 1/followpoint.png b/Skins/- ⊹ aia 1/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- ⊹ aia 1/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- ⊹ aia 1/go.png b/Skins/- ⊹ aia 1/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 1/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 1/hit0-0.png b/Skins/- ⊹ aia 1/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/- ⊹ aia 1/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/- ⊹ aia 1/hit0.png b/Skins/- ⊹ aia 1/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 1/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 1/hit100-0.png b/Skins/- ⊹ aia 1/hit100-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/- ⊹ aia 1/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/- ⊹ aia 1/hit100.png b/Skins/- ⊹ aia 1/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 1/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 1/hit100k-0.png b/Skins/- ⊹ aia 1/hit100k-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/- ⊹ aia 1/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/- ⊹ aia 1/hit100k.png b/Skins/- ⊹ aia 1/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 1/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 1/hit300.png b/Skins/- ⊹ aia 1/hit300.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 1/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 1/hit300g.png b/Skins/- ⊹ aia 1/hit300g.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 1/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 1/hit300k.png b/Skins/- ⊹ aia 1/hit300k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 1/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 1/hit50-0.png b/Skins/- ⊹ aia 1/hit50-0.png new file mode 100644 index 00000000..378cdf1e --- /dev/null +++ b/Skins/- ⊹ aia 1/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1317680bf0c857731dbc67d8689fb11a031033ec4527ff1b25023e0ed4361 +size 1956 diff --git a/Skins/- ⊹ aia 1/hit50.png b/Skins/- ⊹ aia 1/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 1/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 1/hitcircle.png b/Skins/- ⊹ aia 1/hitcircle.png new file mode 100644 index 00000000..1b168be9 --- /dev/null +++ b/Skins/- ⊹ aia 1/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07025cd815595e6c34de5eb4d5b24486fc17e211103e80302303a2932b472bb4 +size 5210 diff --git a/Skins/- ⊹ aia 1/hitcircleoverlay.png b/Skins/- ⊹ aia 1/hitcircleoverlay.png new file mode 100644 index 00000000..c27343b4 --- /dev/null +++ b/Skins/- ⊹ aia 1/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b67e6ebeedf6c72153f5d34e41867acba7d7788f74b71067dc906e34cdbdc68 +size 10907 diff --git a/Skins/- ⊹ aia 1/match-confirm.wav b/Skins/- ⊹ aia 1/match-confirm.wav new file mode 100644 index 00000000..71822eb6 --- /dev/null +++ b/Skins/- ⊹ aia 1/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f591b088715c93908bcc77f6eadf1c41f1b7ef8e752bcf5c33b4fa689e38814c +size 153194 diff --git a/Skins/- ⊹ aia 1/menu-back.png b/Skins/- ⊹ aia 1/menu-back.png new file mode 100644 index 00000000..60b2f556 --- /dev/null +++ b/Skins/- ⊹ aia 1/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b498f8a2ba0bdbf48de66753b3cfaa1c8bcfe4b7327d3abd149c6e15ffef47d1 +size 109 diff --git a/Skins/- ⊹ aia 1/menu-button-background.png b/Skins/- ⊹ aia 1/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/- ⊹ aia 1/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/- ⊹ aia 1/menu-button-background@21.png b/Skins/- ⊹ aia 1/menu-button-background@21.png new file mode 100644 index 00000000..9955a0a2 --- /dev/null +++ b/Skins/- ⊹ aia 1/menu-button-background@21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298da5b988dbe6d4ceb09cddf99f74e5034a533c4a2b2a00e3fd58cd39ea8cc1 +size 14850 diff --git a/Skins/- ⊹ aia 1/menuback.wav b/Skins/- ⊹ aia 1/menuback.wav new file mode 100644 index 00000000..6b532117 --- /dev/null +++ b/Skins/- ⊹ aia 1/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4605c29f51af0819c3e65609ea76abdac493550f947f1b1a1f1c335e5d62e9 +size 30448 diff --git a/Skins/- ⊹ aia 1/menuclick.wav b/Skins/- ⊹ aia 1/menuclick.wav new file mode 100644 index 00000000..bb687361 --- /dev/null +++ b/Skins/- ⊹ aia 1/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811afe81261f3144ef306aca2108b0e426e79fc529a2ca5b9bfe00c353113e6e +size 144214 diff --git a/Skins/- ⊹ aia 1/menuhit.wav b/Skins/- ⊹ aia 1/menuhit.wav new file mode 100644 index 00000000..0a50f012 --- /dev/null +++ b/Skins/- ⊹ aia 1/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba0d7210bf6fc251841fdbe7aa7896278245b579a3a375462d0085aea8d5103 +size 361038 diff --git a/Skins/- ⊹ aia 1/normal-hitclap.wav b/Skins/- ⊹ aia 1/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- ⊹ aia 1/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- ⊹ aia 1/normal-hitfinish.wav b/Skins/- ⊹ aia 1/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- ⊹ aia 1/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- ⊹ aia 1/normal-hitnormal.wav b/Skins/- ⊹ aia 1/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- ⊹ aia 1/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- ⊹ aia 1/normal-hitwhistle.wav b/Skins/- ⊹ aia 1/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- ⊹ aia 1/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- ⊹ aia 1/normal-sliderslide.wav b/Skins/- ⊹ aia 1/normal-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 1/normal-slidertick.wav b/Skins/- ⊹ aia 1/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/- ⊹ aia 1/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/- ⊹ aia 1/normal-sliderwhistle.wav b/Skins/- ⊹ aia 1/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 1/normal-sliderwhistle2.wav b/Skins/- ⊹ aia 1/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- ⊹ aia 1/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- ⊹ aia 1/pause-back.png b/Skins/- ⊹ aia 1/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/- ⊹ aia 1/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/- ⊹ aia 1/pause-continue.png b/Skins/- ⊹ aia 1/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/- ⊹ aia 1/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/- ⊹ aia 1/pause-loop.mp3 b/Skins/- ⊹ aia 1/pause-loop.mp3 new file mode 100644 index 00000000..ae5defbb --- /dev/null +++ b/Skins/- ⊹ aia 1/pause-loop.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:328ba0a82bca9a49f8f92307e1e411f5422f5ca19e77cce5287281838092fb01 +size 7595928 diff --git a/Skins/- ⊹ aia 1/pause-replay.png b/Skins/- ⊹ aia 1/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/- ⊹ aia 1/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/- ⊹ aia 1/pause-retry.png b/Skins/- ⊹ aia 1/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/- ⊹ aia 1/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/- ⊹ aia 1/ranking-A-small.png b/Skins/- ⊹ aia 1/ranking-A-small.png new file mode 100644 index 00000000..1f031d7c --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50870a7551614721716fcdf59901a1b7c5320ae83ba6a0f34b55d2a899a5adcf +size 4703 diff --git a/Skins/- ⊹ aia 1/ranking-B-small.png b/Skins/- ⊹ aia 1/ranking-B-small.png new file mode 100644 index 00000000..47cbeb6c --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febbeb30e8b5e76cf402a997797edfa35faa35aa8308ab7eb822a91a0daa9410 +size 4490 diff --git a/Skins/- ⊹ aia 1/ranking-C-small.png b/Skins/- ⊹ aia 1/ranking-C-small.png new file mode 100644 index 00000000..741b51fd --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241c1833fc5daf588ebaab8e1e487d30e1670065a4eee5f633d2dbf1aedaec06 +size 4555 diff --git a/Skins/- ⊹ aia 1/ranking-D-small.png b/Skins/- ⊹ aia 1/ranking-D-small.png new file mode 100644 index 00000000..4dd50ac2 --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60553c613ebb581bfc535daaa805c3250c753ec2ce6e13e8c07444c73e8c14 +size 4365 diff --git a/Skins/- ⊹ aia 1/ranking-S-small.png b/Skins/- ⊹ aia 1/ranking-S-small.png new file mode 100644 index 00000000..46824491 --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b57053a2015070c2e7d305f50e15368eeb311acad7c7be4eb7a1c4fa5f2af3 +size 4768 diff --git a/Skins/- ⊹ aia 1/ranking-SH-small.png b/Skins/- ⊹ aia 1/ranking-SH-small.png new file mode 100644 index 00000000..9874a6eb --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dfd8fd78d8b2a32b7992cf987cc0dd8b86cdfb46c1fd9286379c658e7219a3 +size 4547 diff --git a/Skins/- ⊹ aia 1/ranking-X-small.png b/Skins/- ⊹ aia 1/ranking-X-small.png new file mode 100644 index 00000000..6401b38b --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc163849993b7a223529b496163782fe172f9c1e5fb4585973260eb3618b1744 +size 5563 diff --git a/Skins/- ⊹ aia 1/ranking-XH-small.png b/Skins/- ⊹ aia 1/ranking-XH-small.png new file mode 100644 index 00000000..2e6a8046 --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b002b5c666212d5e7435332ac24f6c0e354666e9f69e13ecb41d7ace30dd0a +size 5313 diff --git a/Skins/- ⊹ aia 1/ranking-accuracy.png b/Skins/- ⊹ aia 1/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 1/ranking-graph.png b/Skins/- ⊹ aia 1/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/- ⊹ aia 1/ranking-graph@2x.png b/Skins/- ⊹ aia 1/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/- ⊹ aia 1/ranking-maxcombo.png b/Skins/- ⊹ aia 1/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- ⊹ aia 1/ranking-panel.png b/Skins/- ⊹ aia 1/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/- ⊹ aia 1/ranking-panel@2x.png b/Skins/- ⊹ aia 1/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/- ⊹ aia 1/ranking-perfect.png b/Skins/- ⊹ aia 1/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 1/ranking-title.png b/Skins/- ⊹ aia 1/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 1/ranking-winner.png b/Skins/- ⊹ aia 1/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 1/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 1/reversearrow@2x.png b/Skins/- ⊹ aia 1/reversearrow@2x.png new file mode 100644 index 00000000..5c3570ca --- /dev/null +++ b/Skins/- ⊹ aia 1/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5e33cb132d50a2aed4a1df5212d7188e522994520056b7996c8d91822e22bd +size 28524 diff --git a/Skins/- ⊹ aia 1/scorebar-bg@2x1.png b/Skins/- ⊹ aia 1/scorebar-bg@2x1.png new file mode 100644 index 00000000..8e670c40 --- /dev/null +++ b/Skins/- ⊹ aia 1/scorebar-bg@2x1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae447449bfbd9690bad9ec7dd3d379e09f69ca2ec6d844f8604c85b95913b12 +size 79912 diff --git a/Skins/- ⊹ aia 1/scorebar-bg@2x3.png b/Skins/- ⊹ aia 1/scorebar-bg@2x3.png new file mode 100644 index 00000000..d3dbb43c --- /dev/null +++ b/Skins/- ⊹ aia 1/scorebar-bg@2x3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676d68a5b4291069c5762533ed15ec4d0cadfe714f7c6c3caef86931627f7ae8 +size 293621 diff --git a/Skins/- ⊹ aia 1/sectionfail.wav b/Skins/- ⊹ aia 1/sectionfail.wav new file mode 100644 index 00000000..42e93f4e --- /dev/null +++ b/Skins/- ⊹ aia 1/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379f51530fb9dd710bde552a77011aed2006724f876d364f2b3f0571575a2f9d +size 313040 diff --git a/Skins/- ⊹ aia 1/sectionpass.wav b/Skins/- ⊹ aia 1/sectionpass.wav new file mode 100644 index 00000000..ee3f1f2c --- /dev/null +++ b/Skins/- ⊹ aia 1/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459a48175ab86d7eecfe5932c74d8abadb817c64611f6ddeab762abccd7d845b +size 208480 diff --git a/Skins/- ⊹ aia 1/seeya.wav b/Skins/- ⊹ aia 1/seeya.wav new file mode 100644 index 00000000..3e2e96d7 --- /dev/null +++ b/Skins/- ⊹ aia 1/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ec8987340d444cc7d069d0738bfc948de9bd11ac397d5c0056d3bb88275da6 +size 449560 diff --git a/Skins/- ⊹ aia 1/selection-mod-autoplay@2x.png b/Skins/- ⊹ aia 1/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..ed189d6e --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d16303be865ce02feede1845dcdefbc115f2f9fbd8b3dc3baff1ba650997724 +size 13667 diff --git a/Skins/- ⊹ aia 1/selection-mod-cinema@2x.png b/Skins/- ⊹ aia 1/selection-mod-cinema@2x.png new file mode 100644 index 00000000..db84c414 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45df8def051cfbbb31115a28ab9c02c0a20bd8b426f19900f337a7816acfebd6 +size 22259 diff --git a/Skins/- ⊹ aia 1/selection-mod-doubletime@2x.png b/Skins/- ⊹ aia 1/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6f471799 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b579edd7458a28dc8063e5ab01ce9be32ee0dd94388aad6f2c0189ac216c3c +size 21202 diff --git a/Skins/- ⊹ aia 1/selection-mod-easy@2x.png b/Skins/- ⊹ aia 1/selection-mod-easy@2x.png new file mode 100644 index 00000000..52fa94c8 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb4dadafd8964a3bfd702763cf675917453afe4dc3a4abafe72896beb02e7bc +size 13043 diff --git a/Skins/- ⊹ aia 1/selection-mod-flashlight@2x.png b/Skins/- ⊹ aia 1/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..bd178b55 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bf5cc4153a4c77e1eb4208c7ef6020e47c49fcb014567139dc3e79be3f5900 +size 15503 diff --git a/Skins/- ⊹ aia 1/selection-mod-halftime@2x.png b/Skins/- ⊹ aia 1/selection-mod-halftime@2x.png new file mode 100644 index 00000000..595b8452 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f8a011ceb3082ee82f0ea40d2750cab07ba3e066208f28f62fd56d62551d70 +size 12853 diff --git a/Skins/- ⊹ aia 1/selection-mod-hardrock@2x.png b/Skins/- ⊹ aia 1/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..d78a8b5c --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2398e0471f2ad18083bad94f1d78c5ddccdb24a9d44586bcda0ea23551cc3e +size 17560 diff --git a/Skins/- ⊹ aia 1/selection-mod-hidden@2x.png b/Skins/- ⊹ aia 1/selection-mod-hidden@2x.png new file mode 100644 index 00000000..b4cbf002 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e0c218610a22452283aeb7976391cb6164f9a69f454736bea7a42dc9763ac4 +size 22127 diff --git a/Skins/- ⊹ aia 1/selection-mod-nightcore@2x.png b/Skins/- ⊹ aia 1/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..aeaba637 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876ba95cb756fa07b2920afde80b3c13a1c1afab29eed2d95c3658e92daccab5 +size 16358 diff --git a/Skins/- ⊹ aia 1/selection-mod-nofail@2x.png b/Skins/- ⊹ aia 1/selection-mod-nofail@2x.png new file mode 100644 index 00000000..7812d0f7 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e50c010bc36bcbd5feee98ae3808425482715ddb4954364891e21468513842 +size 20945 diff --git a/Skins/- ⊹ aia 1/selection-mod-perfect@2x.png b/Skins/- ⊹ aia 1/selection-mod-perfect@2x.png new file mode 100644 index 00000000..1fadb52f --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8e6fa28838f08e3b9768642aa3766e4f16d0800a242b6de2139006534d9592 +size 16077 diff --git a/Skins/- ⊹ aia 1/selection-mod-relax2@2x.png b/Skins/- ⊹ aia 1/selection-mod-relax2@2x.png new file mode 100644 index 00000000..4f87a207 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703d9ceb29648ae8ced917353b79c337a3bf384fc974176b2bbdeea979ba98f3 +size 17362 diff --git a/Skins/- ⊹ aia 1/selection-mod-relax@2x.png b/Skins/- ⊹ aia 1/selection-mod-relax@2x.png new file mode 100644 index 00000000..9ce08619 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b30631a4296e085afdeadb5d413ba489350078bb723af445d65931ad6d1e19 +size 13251 diff --git a/Skins/- ⊹ aia 1/selection-mod-spunout@2x.png b/Skins/- ⊹ aia 1/selection-mod-spunout@2x.png new file mode 100644 index 00000000..c902b31e --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e98f9b2ea1464b96ae7d6ef6a375a6490d2e5473d08e61221a785c1a52e387 +size 19156 diff --git a/Skins/- ⊹ aia 1/selection-mod-suddendeath@2x.png b/Skins/- ⊹ aia 1/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..ca40518a --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069e192fcfff644c94134100d1493c1b81c7f166a42db0d45c080fa938c9029c +size 22918 diff --git a/Skins/- ⊹ aia 1/selection-mod-target@2x.png b/Skins/- ⊹ aia 1/selection-mod-target@2x.png new file mode 100644 index 00000000..629cd028 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d502463c96d96daaf96e7d68276e209c4afe3a33d5289a6eca14280da5edf7ec +size 27959 diff --git a/Skins/- ⊹ aia 1/selection-mode.png b/Skins/- ⊹ aia 1/selection-mode.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 1/selection-mods-over@2x.png b/Skins/- ⊹ aia 1/selection-mods-over@2x.png new file mode 100644 index 00000000..4c9a1741 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:518939e383bcd09e3c60c0bac1e664aa550b6d3712b79caf6fcc91e9ddf6391c +size 53674 diff --git a/Skins/- ⊹ aia 1/selection-mods@2x.png b/Skins/- ⊹ aia 1/selection-mods@2x.png new file mode 100644 index 00000000..62f4bd5f --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbe2aa613333daf72cbe1f9b2d7cc8f7e9bbb5727447e49f5d7e09b93b48c25 +size 31901 diff --git a/Skins/- ⊹ aia 1/selection-options-over@2x.png b/Skins/- ⊹ aia 1/selection-options-over@2x.png new file mode 100644 index 00000000..f85ed91e --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ebf1eaf2fde5fd500b2fd49da09134bb8f3272cf111127b765defaf611684ac +size 57104 diff --git a/Skins/- ⊹ aia 1/selection-options@2x.png b/Skins/- ⊹ aia 1/selection-options@2x.png new file mode 100644 index 00000000..b3a61bc4 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4c7eadce33948af9ca8ab37e69ec65c740ac217c62e867a9d25f5f43187cef +size 31809 diff --git a/Skins/- ⊹ aia 1/selection-random-over@2x.png b/Skins/- ⊹ aia 1/selection-random-over@2x.png new file mode 100644 index 00000000..a5c04022 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f501a7dcf11ee1a2611ddb448efb4084b3673e5581b7973764815b740eb25bb6 +size 55799 diff --git a/Skins/- ⊹ aia 1/selection-random@2x.png b/Skins/- ⊹ aia 1/selection-random@2x.png new file mode 100644 index 00000000..1f9432fc --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc2b91a1d908454550ad8e7ac2a06fc25e5d4964e99b4bf027158df25e23da6 +size 31897 diff --git a/Skins/- ⊹ aia 1/selection-selectoptions-over@2x.png b/Skins/- ⊹ aia 1/selection-selectoptions-over@2x.png new file mode 100644 index 00000000..f6a6914e --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-selectoptions-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0950e08aebcf095d7bf5f9aa4f580c08a79c0476fc1a2cb036c06d8a6df9db +size 55620 diff --git a/Skins/- ⊹ aia 1/selection-selectoptions@2x.png b/Skins/- ⊹ aia 1/selection-selectoptions@2x.png new file mode 100644 index 00000000..42c12965 --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-selectoptions@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a7ac041c8d6c7b75581b87580e901940253fa5e609291f5d44c3a83a1c985d +size 32893 diff --git a/Skins/- ⊹ aia 1/selection-tab.png b/Skins/- ⊹ aia 1/selection-tab.png new file mode 100644 index 00000000..a35bf13f --- /dev/null +++ b/Skins/- ⊹ aia 1/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb5ba814f28906665ff0918c3dae701b1461cf11d9535f96aa410ab427db79b +size 1884 diff --git a/Skins/- ⊹ aia 1/skin.ini b/Skins/- ⊹ aia 1/skin.ini new file mode 100644 index 00000000..b3c51638 --- /dev/null +++ b/Skins/- ⊹ aia 1/skin.ini @@ -0,0 +1,28 @@ +// skin.ini generated by osu! skin mixer v2.8.1 + +[General] +Name: aia edit 1 +Author: Skellers +Version: 2.2 +SliderBallFlip: 1 +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 60 +SpinnerFadePlayfield: 1 +HitCircleOverlayAboveNumer: 75 +AllowSliderBallTint: 0 + +[Colours] +Combo1: 128,0,255 +Combo2: 106,129,166 +Combo3: 255,0,255 +SliderBorder: 255, 0, 0 +SliderTrackOverride: 0,0,0 +SpinnerApproachCircle: 0,0,0 +SongSelectActiveText: 255,153,153 +SongSelectInactiveText: 255,153,153 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 20 diff --git a/Skins/- ⊹ aia 1/sliderb0@2x.png b/Skins/- ⊹ aia 1/sliderb0@2x.png new file mode 100644 index 00000000..2f1595cf --- /dev/null +++ b/Skins/- ⊹ aia 1/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adcd5ed345c40142a5b097fc1e896b9897c1ab6f419e3211afcd6f5ed7ec183 +size 23267 diff --git a/Skins/- ⊹ aia 1/sliderendcircle.png b/Skins/- ⊹ aia 1/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/sliderfollowcircle.png b/Skins/- ⊹ aia 1/sliderfollowcircle.png new file mode 100644 index 00000000..c367fee5 --- /dev/null +++ b/Skins/- ⊹ aia 1/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda512af4c534987d8121efbc0d4c761b19420cac50c74aa2c03327c4c5374d4 +size 17067 diff --git a/Skins/- ⊹ aia 1/sliderscorepoint.png b/Skins/- ⊹ aia 1/sliderscorepoint.png new file mode 100644 index 00000000..de722095 --- /dev/null +++ b/Skins/- ⊹ aia 1/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832ef1a71e6e42a33c91be02300624d774313d01d135f24b8ba59b4d4ec3e79f +size 1472 diff --git a/Skins/- ⊹ aia 1/soft-hitclap.wav b/Skins/- ⊹ aia 1/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- ⊹ aia 1/soft-hitclap2.wav b/Skins/- ⊹ aia 1/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- ⊹ aia 1/soft-hitfinish.wav b/Skins/- ⊹ aia 1/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- ⊹ aia 1/soft-hitfinish2.wav b/Skins/- ⊹ aia 1/soft-hitfinish2.wav new file mode 100644 index 00000000..3e8856c5 --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3708a5decda6b05082c11e4edd9bc03e80acbb6e32759feecc98636e9f2b797b +size 25804 diff --git a/Skins/- ⊹ aia 1/soft-hitnormal.wav b/Skins/- ⊹ aia 1/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- ⊹ aia 1/soft-hitnormal1.wav b/Skins/- ⊹ aia 1/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/- ⊹ aia 1/soft-hitnormal2.wav b/Skins/- ⊹ aia 1/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/- ⊹ aia 1/soft-hitsoft.wav b/Skins/- ⊹ aia 1/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/- ⊹ aia 1/soft-hitwhistle.wav b/Skins/- ⊹ aia 1/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- ⊹ aia 1/soft-hitwhistle2.wav b/Skins/- ⊹ aia 1/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/- ⊹ aia 1/soft-sliderslide.wav b/Skins/- ⊹ aia 1/soft-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 1/soft-slidertick.wav b/Skins/- ⊹ aia 1/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/- ⊹ aia 1/soft-sliderwhistle.wav b/Skins/- ⊹ aia 1/soft-sliderwhistle.wav new file mode 100644 index 00000000..cfc0314c --- /dev/null +++ b/Skins/- ⊹ aia 1/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b80e132dd7adf41d45f7e21352dc3420599474382dc87a3b1772f603ce32a81 +size 67256 diff --git a/Skins/- ⊹ aia 1/songselect-bottom.png b/Skins/- ⊹ aia 1/songselect-bottom.png new file mode 100644 index 00000000..e07b7878 --- /dev/null +++ b/Skins/- ⊹ aia 1/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d4e6d6587728d1727cf4c0c41cd03aaf2049b7dc719c2e22591b3dab04df11 +size 3104 diff --git a/Skins/- ⊹ aia 1/songselect-bottom@2x.png b/Skins/- ⊹ aia 1/songselect-bottom@2x.png new file mode 100644 index 00000000..6d0ed78d --- /dev/null +++ b/Skins/- ⊹ aia 1/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a9acf3afbf4ed86fb3b9627c3bd6a886d634a3f7f7cd426d097eba3d02f8cb +size 3598 diff --git a/Skins/- ⊹ aia 1/spinner-approachcircle.png b/Skins/- ⊹ aia 1/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- ⊹ aia 1/spinner-background.png b/Skins/- ⊹ aia 1/spinner-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/spinner-bottom.png b/Skins/- ⊹ aia 1/spinner-bottom.png new file mode 100644 index 00000000..6804aa0d --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b506f9b2202e76c8ff060df170d4221243e2e137481759898dfbd64847338c9a +size 5456 diff --git a/Skins/- ⊹ aia 1/spinner-circle.png b/Skins/- ⊹ aia 1/spinner-circle.png new file mode 100644 index 00000000..5662bf01 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a04f938d4447d116eff8660a1d6099ecab1035e9796f28d6685ad8dd5d5f6c +size 13169 diff --git a/Skins/- ⊹ aia 1/spinner-clear.png b/Skins/- ⊹ aia 1/spinner-clear.png new file mode 100644 index 00000000..01097a68 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c6b7619a9165c6b1d7973a8706466289c332ab75ae2c19e1ea9d35041409ca +size 5226 diff --git a/Skins/- ⊹ aia 1/spinner-glow.png b/Skins/- ⊹ aia 1/spinner-glow.png new file mode 100644 index 00000000..27dfebe6 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beca027a9e8ccae72b4dde4be32b6fef240f1160778784d81a7445a2a62b451e +size 6797 diff --git a/Skins/- ⊹ aia 1/spinner-middle.png b/Skins/- ⊹ aia 1/spinner-middle.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 1/spinner-middle2.png b/Skins/- ⊹ aia 1/spinner-middle2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 1/spinner-middle2@2x.png b/Skins/- ⊹ aia 1/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 1/spinner-osu.png b/Skins/- ⊹ aia 1/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/spinner-spin.png b/Skins/- ⊹ aia 1/spinner-spin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/spinner-top.png b/Skins/- ⊹ aia 1/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 1/spinnerbonus.wav b/Skins/- ⊹ aia 1/spinnerbonus.wav new file mode 100644 index 00000000..6e901ec0 --- /dev/null +++ b/Skins/- ⊹ aia 1/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea3774c20fb4a84c33ab6e08b7db0042e2494173e26ca210ec6171c20da9c4 +size 178600 diff --git a/Skins/- ⊹ aia 1/spinnerspin.wav b/Skins/- ⊹ aia 1/spinnerspin.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- ⊹ aia 1/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- ⊹ aia 1/star2.png b/Skins/- ⊹ aia 1/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/triangle.png b/Skins/- ⊹ aia 1/triangle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 1/triangle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 1/welcome.wav b/Skins/- ⊹ aia 1/welcome.wav new file mode 100644 index 00000000..daf2b4a6 --- /dev/null +++ b/Skins/- ⊹ aia 1/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ccda7c2298bd87ff8e5e4d17c6651e8c7af707a1030bfecd753871e3345e3e +size 242400 diff --git a/Skins/- ⊹ aia 1/whoosh.wav b/Skins/- ⊹ aia 1/whoosh.wav new file mode 100644 index 00000000..9c7d6314 --- /dev/null +++ b/Skins/- ⊹ aia 1/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85b2d6a3b96fd189a16b6198b05c261eb9ce60f1fb419cda96b8ad15c779d34 +size 44546 diff --git a/Skins/- ⊹ aia 2/applause.mp3 b/Skins/- ⊹ aia 2/applause.mp3 new file mode 100644 index 00000000..cbd40bf6 --- /dev/null +++ b/Skins/- ⊹ aia 2/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c7c6ca74c5270f97889906c8e9a19b4f3f5a38f357500220a2f519da29f102 +size 2600959 diff --git a/Skins/- ⊹ aia 2/applause2.wav b/Skins/- ⊹ aia 2/applause2.wav new file mode 100644 index 00000000..f8185794 --- /dev/null +++ b/Skins/- ⊹ aia 2/applause2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ac43ab21e918da8adac73bfe374e97ddb7c76a24f2bd66213eaa833465f9da +size 4466178 diff --git a/Skins/- ⊹ aia 2/approachcircle.png b/Skins/- ⊹ aia 2/approachcircle.png new file mode 100644 index 00000000..9fb6c6ae --- /dev/null +++ b/Skins/- ⊹ aia 2/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb434dc285c3a64a44da60b396363030f71427381e23070121abd5afb56e9c4 +size 4504 diff --git a/Skins/- ⊹ aia 2/approachcircle@2x.png b/Skins/- ⊹ aia 2/approachcircle@2x.png new file mode 100644 index 00000000..71c0d04c --- /dev/null +++ b/Skins/- ⊹ aia 2/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9e0e7184c1d6637314fa95cc1d3c9c4f526db69d0b75025e9d581cdd5feda2 +size 12467 diff --git a/Skins/- ⊹ aia 2/combo-x.png b/Skins/- ⊹ aia 2/combo-x.png new file mode 100644 index 00000000..badad02c --- /dev/null +++ b/Skins/- ⊹ aia 2/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3914c6cf068add6375e8e49caf2b8856f1f2fb90133e3e1d824eca7a0bac06e9 +size 1465 diff --git a/Skins/- ⊹ aia 2/combo-x@2x.png b/Skins/- ⊹ aia 2/combo-x@2x.png new file mode 100644 index 00000000..7041a49d --- /dev/null +++ b/Skins/- ⊹ aia 2/combo-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08346328873c9f4e9da6cde4fc3321711b749c3ae48d1d703ad6c791faf58eae +size 5569 diff --git a/Skins/- ⊹ aia 2/combobreak.wav b/Skins/- ⊹ aia 2/combobreak.wav new file mode 100644 index 00000000..0923f624 --- /dev/null +++ b/Skins/- ⊹ aia 2/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99eac7db102a2f66f9ed42e618247a924df444b9de48e21cc0bc792708693063 +size 105412 diff --git a/Skins/- ⊹ aia 2/comboburst.png b/Skins/- ⊹ aia 2/comboburst.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/count1s.wav b/Skins/- ⊹ aia 2/count1s.wav new file mode 100644 index 00000000..0fb49dab --- /dev/null +++ b/Skins/- ⊹ aia 2/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f242e82becde75d5343e61cc004e7a2c07ea97ba90b1061a8db13fb845c1fb86 +size 140634 diff --git a/Skins/- ⊹ aia 2/count2s.wav b/Skins/- ⊹ aia 2/count2s.wav new file mode 100644 index 00000000..0fb49dab --- /dev/null +++ b/Skins/- ⊹ aia 2/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f242e82becde75d5343e61cc004e7a2c07ea97ba90b1061a8db13fb845c1fb86 +size 140634 diff --git a/Skins/- ⊹ aia 2/count3s.wav b/Skins/- ⊹ aia 2/count3s.wav new file mode 100644 index 00000000..0fb49dab --- /dev/null +++ b/Skins/- ⊹ aia 2/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f242e82becde75d5343e61cc004e7a2c07ea97ba90b1061a8db13fb845c1fb86 +size 140634 diff --git a/Skins/- ⊹ aia 2/cursor.png b/Skins/- ⊹ aia 2/cursor.png new file mode 100644 index 00000000..0ac7c315 --- /dev/null +++ b/Skins/- ⊹ aia 2/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c728c0777f227ad6e0fde252848584787dd63a22acd661df2c88a3eb111bf6 +size 6899 diff --git a/Skins/- ⊹ aia 2/cursortrail.png b/Skins/- ⊹ aia 2/cursortrail.png new file mode 100644 index 00000000..0a140ab6 --- /dev/null +++ b/Skins/- ⊹ aia 2/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3844738c6b2395743f8b9d71942aad8a5600e94479c20ce6d45b5e572d2b5795 +size 5680 diff --git a/Skins/- ⊹ aia 2/default-0.png b/Skins/- ⊹ aia 2/default-0.png new file mode 100644 index 00000000..0a0100bb --- /dev/null +++ b/Skins/- ⊹ aia 2/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f6bd7bd65e3e4270cfb87db2e8975996ad84fcc64fbf45f3f9433b1db66b42 +size 3586 diff --git a/Skins/- ⊹ aia 2/default-0@2x.png b/Skins/- ⊹ aia 2/default-0@2x.png new file mode 100644 index 00000000..d720ed91 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b4177cd9e3673661552a0c8156a30a1ed7c2a6d4975616e975457fb8d584d9 +size 8384 diff --git a/Skins/- ⊹ aia 2/default-1.png b/Skins/- ⊹ aia 2/default-1.png new file mode 100644 index 00000000..7f0e45c0 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8784845566236ef6bd0a937582dac2bf28c0e09ee71eddddc8f6cbccf213b219 +size 2269 diff --git a/Skins/- ⊹ aia 2/default-1@2x.png b/Skins/- ⊹ aia 2/default-1@2x.png new file mode 100644 index 00000000..08c6e46c --- /dev/null +++ b/Skins/- ⊹ aia 2/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5816005a6c2b19da1b3141f84a0a6e8ea35de0b211d2e9f9d43b7d29e703aebd +size 4554 diff --git a/Skins/- ⊹ aia 2/default-2.png b/Skins/- ⊹ aia 2/default-2.png new file mode 100644 index 00000000..620cd7f7 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b63cc07b2657bc3f5e66b9d901f9d78a5277b7d7b65f847a39501f345140f1 +size 3460 diff --git a/Skins/- ⊹ aia 2/default-2@2x.png b/Skins/- ⊹ aia 2/default-2@2x.png new file mode 100644 index 00000000..695da376 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b34d2c20df442cb505584d36e817c4b176ee4ad97689c084952f89554b745886 +size 7981 diff --git a/Skins/- ⊹ aia 2/default-3.png b/Skins/- ⊹ aia 2/default-3.png new file mode 100644 index 00000000..ac49de89 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffab7b6ce7fe72e4282708c831b0791247d09911e847c05ed794afa81bb018ed +size 3350 diff --git a/Skins/- ⊹ aia 2/default-3@2x.png b/Skins/- ⊹ aia 2/default-3@2x.png new file mode 100644 index 00000000..67791239 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50df485e50c0463daf3fb236595ae413b5d32559a933904af5fd18325fe5fce6 +size 7937 diff --git a/Skins/- ⊹ aia 2/default-4.png b/Skins/- ⊹ aia 2/default-4.png new file mode 100644 index 00000000..44abca1e --- /dev/null +++ b/Skins/- ⊹ aia 2/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e723a53c3971b3210bdb7375c5ca919fa9873aef4aa601e4a72be216ef75a9a +size 2560 diff --git a/Skins/- ⊹ aia 2/default-4@2x.png b/Skins/- ⊹ aia 2/default-4@2x.png new file mode 100644 index 00000000..a1e95654 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae13c425f1516156c893d47fdac4cc7c1dbf6e3403ebc292b12dc59ae562337b +size 6029 diff --git a/Skins/- ⊹ aia 2/default-5.png b/Skins/- ⊹ aia 2/default-5.png new file mode 100644 index 00000000..0ce1cfca --- /dev/null +++ b/Skins/- ⊹ aia 2/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eaf613cc1cd5cc008c7818e093b894f699b971bd3d17c38de54dbbcb5c34f4f +size 3679 diff --git a/Skins/- ⊹ aia 2/default-5@2x.png b/Skins/- ⊹ aia 2/default-5@2x.png new file mode 100644 index 00000000..0411e085 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b758d3e30f948a43bd9456b02336a5bc5d30744404dbbfae5853f297ce44c5d +size 8556 diff --git a/Skins/- ⊹ aia 2/default-6.png b/Skins/- ⊹ aia 2/default-6.png new file mode 100644 index 00000000..51b29671 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5bb1136dd4a692e567afef463c473c22604bc542b185fefda202c7d689d884c +size 3494 diff --git a/Skins/- ⊹ aia 2/default-6@2x.png b/Skins/- ⊹ aia 2/default-6@2x.png new file mode 100644 index 00000000..9fb0fa3f --- /dev/null +++ b/Skins/- ⊹ aia 2/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f94613642bd1cf57a899c92ba3651a9090b2eed9acac7ab92ac2515046297b +size 8417 diff --git a/Skins/- ⊹ aia 2/default-7.png b/Skins/- ⊹ aia 2/default-7.png new file mode 100644 index 00000000..c0353e9b --- /dev/null +++ b/Skins/- ⊹ aia 2/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a845737578f65c813ec0ddf31d0d6e7063e81ab34e893b32ccd30e79b48695a2 +size 2657 diff --git a/Skins/- ⊹ aia 2/default-7@2x.png b/Skins/- ⊹ aia 2/default-7@2x.png new file mode 100644 index 00000000..c55bda23 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af7dc2947065a096ef25270e0d9f22ed4dcf0af00b328f69ffb3b5b29337e45 +size 6915 diff --git a/Skins/- ⊹ aia 2/default-8.png b/Skins/- ⊹ aia 2/default-8.png new file mode 100644 index 00000000..670e256a --- /dev/null +++ b/Skins/- ⊹ aia 2/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d4d8449e5a938fce61a1041278ce677383248522a600e239ab85b58be0dfb2 +size 3596 diff --git a/Skins/- ⊹ aia 2/default-8@2x.png b/Skins/- ⊹ aia 2/default-8@2x.png new file mode 100644 index 00000000..80ec9750 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8fc20e6a0914c0ca7340e50552aa8cae3615d34b185d028924fc0c34104fb66 +size 8595 diff --git a/Skins/- ⊹ aia 2/default-9.png b/Skins/- ⊹ aia 2/default-9.png new file mode 100644 index 00000000..720890a6 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8852148bc85983cbd028aa94fc2e4336cd896961ae65e990a3ce9198e222c217 +size 3438 diff --git a/Skins/- ⊹ aia 2/default-9@2x.png b/Skins/- ⊹ aia 2/default-9@2x.png new file mode 100644 index 00000000..6c5b45b6 --- /dev/null +++ b/Skins/- ⊹ aia 2/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892d4d1ed2027ec1cbbe148e5bd3117df9653e23935a897f72b7cbb59d7253a2 +size 8394 diff --git a/Skins/- ⊹ aia 2/desktop.ini b/Skins/- ⊹ aia 2/desktop.ini new file mode 100644 index 00000000..17c2f566 --- /dev/null +++ b/Skins/- ⊹ aia 2/desktop.ini @@ -0,0 +1,4 @@ +[ViewState] +Mode= +Vid= +FolderType=Pictures diff --git a/Skins/- ⊹ aia 2/drum-hitclap.wav b/Skins/- ⊹ aia 2/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- ⊹ aia 2/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- ⊹ aia 2/drum-hitclap2.wav b/Skins/- ⊹ aia 2/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- ⊹ aia 2/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- ⊹ aia 2/drum-hitfinish.wav b/Skins/- ⊹ aia 2/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- ⊹ aia 2/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- ⊹ aia 2/drum-hitnormal.wav b/Skins/- ⊹ aia 2/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- ⊹ aia 2/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- ⊹ aia 2/drum-hitnormalh.wav b/Skins/- ⊹ aia 2/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/- ⊹ aia 2/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/- ⊹ aia 2/drum-hitwhistle.wav b/Skins/- ⊹ aia 2/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- ⊹ aia 2/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- ⊹ aia 2/drum-sliderslide.wav b/Skins/- ⊹ aia 2/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 2/drum-slidertick.wav b/Skins/- ⊹ aia 2/drum-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- ⊹ aia 2/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- ⊹ aia 2/drum-sliderwhistle.wav b/Skins/- ⊹ aia 2/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- ⊹ aia 2/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- ⊹ aia 2/followpoint-0.png b/Skins/- ⊹ aia 2/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/followpoint-1.png b/Skins/- ⊹ aia 2/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/followpoint-11.png b/Skins/- ⊹ aia 2/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/- ⊹ aia 2/followpoint-12.png b/Skins/- ⊹ aia 2/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/- ⊹ aia 2/followpoint-13.png b/Skins/- ⊹ aia 2/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/- ⊹ aia 2/followpoint-14.png b/Skins/- ⊹ aia 2/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/- ⊹ aia 2/followpoint-15.png b/Skins/- ⊹ aia 2/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/- ⊹ aia 2/followpoint-16.png b/Skins/- ⊹ aia 2/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/- ⊹ aia 2/followpoint-17.png b/Skins/- ⊹ aia 2/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/- ⊹ aia 2/followpoint-18.png b/Skins/- ⊹ aia 2/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/- ⊹ aia 2/followpoint-19.png b/Skins/- ⊹ aia 2/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/- ⊹ aia 2/followpoint-2.png b/Skins/- ⊹ aia 2/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/followpoint-20.png b/Skins/- ⊹ aia 2/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/- ⊹ aia 2/followpoint-21.png b/Skins/- ⊹ aia 2/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/- ⊹ aia 2/followpoint-22.png b/Skins/- ⊹ aia 2/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/- ⊹ aia 2/followpoint-23.png b/Skins/- ⊹ aia 2/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/- ⊹ aia 2/followpoint-3.png b/Skins/- ⊹ aia 2/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- ⊹ aia 2/followpoint-4.png b/Skins/- ⊹ aia 2/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 2/followpoint-5.png b/Skins/- ⊹ aia 2/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 2/followpoint-6.png b/Skins/- ⊹ aia 2/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 2/followpoint-7.png b/Skins/- ⊹ aia 2/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 2/followpoint-8.png b/Skins/- ⊹ aia 2/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 2/followpoint-9.png b/Skins/- ⊹ aia 2/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 2/followpoint.png b/Skins/- ⊹ aia 2/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- ⊹ aia 2/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- ⊹ aia 2/go.png b/Skins/- ⊹ aia 2/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 2/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 2/hit0-0.png b/Skins/- ⊹ aia 2/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/- ⊹ aia 2/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/- ⊹ aia 2/hit0.png b/Skins/- ⊹ aia 2/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 2/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 2/hit100-0.png b/Skins/- ⊹ aia 2/hit100-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/- ⊹ aia 2/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/- ⊹ aia 2/hit100.png b/Skins/- ⊹ aia 2/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 2/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 2/hit100k-0.png b/Skins/- ⊹ aia 2/hit100k-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/- ⊹ aia 2/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/- ⊹ aia 2/hit100k.png b/Skins/- ⊹ aia 2/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 2/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 2/hit300.png b/Skins/- ⊹ aia 2/hit300.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 2/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 2/hit300g.png b/Skins/- ⊹ aia 2/hit300g.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 2/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 2/hit300k.png b/Skins/- ⊹ aia 2/hit300k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 2/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 2/hit50-0.png b/Skins/- ⊹ aia 2/hit50-0.png new file mode 100644 index 00000000..378cdf1e --- /dev/null +++ b/Skins/- ⊹ aia 2/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1317680bf0c857731dbc67d8689fb11a031033ec4527ff1b25023e0ed4361 +size 1956 diff --git a/Skins/- ⊹ aia 2/hit50.png b/Skins/- ⊹ aia 2/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 2/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 2/hitcircle.png b/Skins/- ⊹ aia 2/hitcircle.png new file mode 100644 index 00000000..5d293dec --- /dev/null +++ b/Skins/- ⊹ aia 2/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac95bcb31c65be9596f6e2bfcbc1407441ab381691c0f95b6461ca09e817a48f +size 8607 diff --git a/Skins/- ⊹ aia 2/hitcircle@2x.png b/Skins/- ⊹ aia 2/hitcircle@2x.png new file mode 100644 index 00000000..d3840c3f --- /dev/null +++ b/Skins/- ⊹ aia 2/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc80f367c8d9dfacacf3e4717d5ec879c0262305117effe396088f7d31df95b6 +size 39390 diff --git a/Skins/- ⊹ aia 2/hitcircleoverlay.png b/Skins/- ⊹ aia 2/hitcircleoverlay.png new file mode 100644 index 00000000..c27343b4 --- /dev/null +++ b/Skins/- ⊹ aia 2/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b67e6ebeedf6c72153f5d34e41867acba7d7788f74b71067dc906e34cdbdc68 +size 10907 diff --git a/Skins/- ⊹ aia 2/hitcircleoverlay@2x.png b/Skins/- ⊹ aia 2/hitcircleoverlay@2x.png new file mode 100644 index 00000000..3acd216e --- /dev/null +++ b/Skins/- ⊹ aia 2/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42a81202af452ccd9e176ee85fc5245d19a7a488e4f9968dc022971ec710247 +size 30127 diff --git a/Skins/- ⊹ aia 2/match-confirm.wav b/Skins/- ⊹ aia 2/match-confirm.wav new file mode 100644 index 00000000..71822eb6 --- /dev/null +++ b/Skins/- ⊹ aia 2/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f591b088715c93908bcc77f6eadf1c41f1b7ef8e752bcf5c33b4fa689e38814c +size 153194 diff --git a/Skins/- ⊹ aia 2/menu-back.png b/Skins/- ⊹ aia 2/menu-back.png new file mode 100644 index 00000000..60b2f556 --- /dev/null +++ b/Skins/- ⊹ aia 2/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b498f8a2ba0bdbf48de66753b3cfaa1c8bcfe4b7327d3abd149c6e15ffef47d1 +size 109 diff --git a/Skins/- ⊹ aia 2/menu-button-background.png b/Skins/- ⊹ aia 2/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/- ⊹ aia 2/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/- ⊹ aia 2/menu-button-background@21.png b/Skins/- ⊹ aia 2/menu-button-background@21.png new file mode 100644 index 00000000..9955a0a2 --- /dev/null +++ b/Skins/- ⊹ aia 2/menu-button-background@21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298da5b988dbe6d4ceb09cddf99f74e5034a533c4a2b2a00e3fd58cd39ea8cc1 +size 14850 diff --git a/Skins/- ⊹ aia 2/menuback.wav b/Skins/- ⊹ aia 2/menuback.wav new file mode 100644 index 00000000..6b532117 --- /dev/null +++ b/Skins/- ⊹ aia 2/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4605c29f51af0819c3e65609ea76abdac493550f947f1b1a1f1c335e5d62e9 +size 30448 diff --git a/Skins/- ⊹ aia 2/menuclick.wav b/Skins/- ⊹ aia 2/menuclick.wav new file mode 100644 index 00000000..bb687361 --- /dev/null +++ b/Skins/- ⊹ aia 2/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811afe81261f3144ef306aca2108b0e426e79fc529a2ca5b9bfe00c353113e6e +size 144214 diff --git a/Skins/- ⊹ aia 2/menuhit.wav b/Skins/- ⊹ aia 2/menuhit.wav new file mode 100644 index 00000000..0a50f012 --- /dev/null +++ b/Skins/- ⊹ aia 2/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba0d7210bf6fc251841fdbe7aa7896278245b579a3a375462d0085aea8d5103 +size 361038 diff --git a/Skins/- ⊹ aia 2/normal-hitclap.wav b/Skins/- ⊹ aia 2/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- ⊹ aia 2/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- ⊹ aia 2/normal-hitfinish.wav b/Skins/- ⊹ aia 2/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- ⊹ aia 2/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- ⊹ aia 2/normal-hitnormal.wav b/Skins/- ⊹ aia 2/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- ⊹ aia 2/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- ⊹ aia 2/normal-hitwhistle.wav b/Skins/- ⊹ aia 2/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- ⊹ aia 2/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- ⊹ aia 2/normal-sliderslide.wav b/Skins/- ⊹ aia 2/normal-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 2/normal-slidertick.wav b/Skins/- ⊹ aia 2/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/- ⊹ aia 2/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/- ⊹ aia 2/normal-sliderwhistle.wav b/Skins/- ⊹ aia 2/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 2/normal-sliderwhistle2.wav b/Skins/- ⊹ aia 2/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- ⊹ aia 2/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- ⊹ aia 2/pause-back.png b/Skins/- ⊹ aia 2/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/- ⊹ aia 2/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/- ⊹ aia 2/pause-continue.png b/Skins/- ⊹ aia 2/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/- ⊹ aia 2/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/- ⊹ aia 2/pause-loop.mp3 b/Skins/- ⊹ aia 2/pause-loop.mp3 new file mode 100644 index 00000000..ae5defbb --- /dev/null +++ b/Skins/- ⊹ aia 2/pause-loop.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:328ba0a82bca9a49f8f92307e1e411f5422f5ca19e77cce5287281838092fb01 +size 7595928 diff --git a/Skins/- ⊹ aia 2/pause-replay.png b/Skins/- ⊹ aia 2/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/- ⊹ aia 2/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/- ⊹ aia 2/pause-retry.png b/Skins/- ⊹ aia 2/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/- ⊹ aia 2/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/- ⊹ aia 2/ranking-A-small.png b/Skins/- ⊹ aia 2/ranking-A-small.png new file mode 100644 index 00000000..1f031d7c --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50870a7551614721716fcdf59901a1b7c5320ae83ba6a0f34b55d2a899a5adcf +size 4703 diff --git a/Skins/- ⊹ aia 2/ranking-B-small.png b/Skins/- ⊹ aia 2/ranking-B-small.png new file mode 100644 index 00000000..47cbeb6c --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febbeb30e8b5e76cf402a997797edfa35faa35aa8308ab7eb822a91a0daa9410 +size 4490 diff --git a/Skins/- ⊹ aia 2/ranking-C-small.png b/Skins/- ⊹ aia 2/ranking-C-small.png new file mode 100644 index 00000000..741b51fd --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241c1833fc5daf588ebaab8e1e487d30e1670065a4eee5f633d2dbf1aedaec06 +size 4555 diff --git a/Skins/- ⊹ aia 2/ranking-D-small.png b/Skins/- ⊹ aia 2/ranking-D-small.png new file mode 100644 index 00000000..4dd50ac2 --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60553c613ebb581bfc535daaa805c3250c753ec2ce6e13e8c07444c73e8c14 +size 4365 diff --git a/Skins/- ⊹ aia 2/ranking-S-small.png b/Skins/- ⊹ aia 2/ranking-S-small.png new file mode 100644 index 00000000..46824491 --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b57053a2015070c2e7d305f50e15368eeb311acad7c7be4eb7a1c4fa5f2af3 +size 4768 diff --git a/Skins/- ⊹ aia 2/ranking-SH-small.png b/Skins/- ⊹ aia 2/ranking-SH-small.png new file mode 100644 index 00000000..9874a6eb --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dfd8fd78d8b2a32b7992cf987cc0dd8b86cdfb46c1fd9286379c658e7219a3 +size 4547 diff --git a/Skins/- ⊹ aia 2/ranking-X-small.png b/Skins/- ⊹ aia 2/ranking-X-small.png new file mode 100644 index 00000000..6401b38b --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc163849993b7a223529b496163782fe172f9c1e5fb4585973260eb3618b1744 +size 5563 diff --git a/Skins/- ⊹ aia 2/ranking-XH-small.png b/Skins/- ⊹ aia 2/ranking-XH-small.png new file mode 100644 index 00000000..2e6a8046 --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b002b5c666212d5e7435332ac24f6c0e354666e9f69e13ecb41d7ace30dd0a +size 5313 diff --git a/Skins/- ⊹ aia 2/ranking-accuracy.png b/Skins/- ⊹ aia 2/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 2/ranking-graph.png b/Skins/- ⊹ aia 2/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/- ⊹ aia 2/ranking-graph@2x.png b/Skins/- ⊹ aia 2/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/- ⊹ aia 2/ranking-maxcombo.png b/Skins/- ⊹ aia 2/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- ⊹ aia 2/ranking-panel.png b/Skins/- ⊹ aia 2/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/- ⊹ aia 2/ranking-panel@2x.png b/Skins/- ⊹ aia 2/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/- ⊹ aia 2/ranking-perfect.png b/Skins/- ⊹ aia 2/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 2/ranking-title.png b/Skins/- ⊹ aia 2/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 2/ranking-winner.png b/Skins/- ⊹ aia 2/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 2/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 2/reversearrow@2x.png b/Skins/- ⊹ aia 2/reversearrow@2x.png new file mode 100644 index 00000000..5c3570ca --- /dev/null +++ b/Skins/- ⊹ aia 2/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5e33cb132d50a2aed4a1df5212d7188e522994520056b7996c8d91822e22bd +size 28524 diff --git a/Skins/- ⊹ aia 2/scorebar-bg@2x1.png b/Skins/- ⊹ aia 2/scorebar-bg@2x1.png new file mode 100644 index 00000000..8e670c40 --- /dev/null +++ b/Skins/- ⊹ aia 2/scorebar-bg@2x1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae447449bfbd9690bad9ec7dd3d379e09f69ca2ec6d844f8604c85b95913b12 +size 79912 diff --git a/Skins/- ⊹ aia 2/scorebar-bg@2x3.png b/Skins/- ⊹ aia 2/scorebar-bg@2x3.png new file mode 100644 index 00000000..d3dbb43c --- /dev/null +++ b/Skins/- ⊹ aia 2/scorebar-bg@2x3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676d68a5b4291069c5762533ed15ec4d0cadfe714f7c6c3caef86931627f7ae8 +size 293621 diff --git a/Skins/- ⊹ aia 2/sectionfail.wav b/Skins/- ⊹ aia 2/sectionfail.wav new file mode 100644 index 00000000..42e93f4e --- /dev/null +++ b/Skins/- ⊹ aia 2/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379f51530fb9dd710bde552a77011aed2006724f876d364f2b3f0571575a2f9d +size 313040 diff --git a/Skins/- ⊹ aia 2/sectionpass.wav b/Skins/- ⊹ aia 2/sectionpass.wav new file mode 100644 index 00000000..ee3f1f2c --- /dev/null +++ b/Skins/- ⊹ aia 2/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459a48175ab86d7eecfe5932c74d8abadb817c64611f6ddeab762abccd7d845b +size 208480 diff --git a/Skins/- ⊹ aia 2/seeya.wav b/Skins/- ⊹ aia 2/seeya.wav new file mode 100644 index 00000000..3e2e96d7 --- /dev/null +++ b/Skins/- ⊹ aia 2/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ec8987340d444cc7d069d0738bfc948de9bd11ac397d5c0056d3bb88275da6 +size 449560 diff --git a/Skins/- ⊹ aia 2/selection-mod-autoplay@2x.png b/Skins/- ⊹ aia 2/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..ed189d6e --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d16303be865ce02feede1845dcdefbc115f2f9fbd8b3dc3baff1ba650997724 +size 13667 diff --git a/Skins/- ⊹ aia 2/selection-mod-cinema@2x.png b/Skins/- ⊹ aia 2/selection-mod-cinema@2x.png new file mode 100644 index 00000000..db84c414 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45df8def051cfbbb31115a28ab9c02c0a20bd8b426f19900f337a7816acfebd6 +size 22259 diff --git a/Skins/- ⊹ aia 2/selection-mod-doubletime@2x.png b/Skins/- ⊹ aia 2/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6f471799 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b579edd7458a28dc8063e5ab01ce9be32ee0dd94388aad6f2c0189ac216c3c +size 21202 diff --git a/Skins/- ⊹ aia 2/selection-mod-easy@2x.png b/Skins/- ⊹ aia 2/selection-mod-easy@2x.png new file mode 100644 index 00000000..52fa94c8 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb4dadafd8964a3bfd702763cf675917453afe4dc3a4abafe72896beb02e7bc +size 13043 diff --git a/Skins/- ⊹ aia 2/selection-mod-flashlight@2x.png b/Skins/- ⊹ aia 2/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..bd178b55 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bf5cc4153a4c77e1eb4208c7ef6020e47c49fcb014567139dc3e79be3f5900 +size 15503 diff --git a/Skins/- ⊹ aia 2/selection-mod-halftime@2x.png b/Skins/- ⊹ aia 2/selection-mod-halftime@2x.png new file mode 100644 index 00000000..595b8452 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f8a011ceb3082ee82f0ea40d2750cab07ba3e066208f28f62fd56d62551d70 +size 12853 diff --git a/Skins/- ⊹ aia 2/selection-mod-hardrock@2x.png b/Skins/- ⊹ aia 2/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..d78a8b5c --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2398e0471f2ad18083bad94f1d78c5ddccdb24a9d44586bcda0ea23551cc3e +size 17560 diff --git a/Skins/- ⊹ aia 2/selection-mod-hidden@2x.png b/Skins/- ⊹ aia 2/selection-mod-hidden@2x.png new file mode 100644 index 00000000..b4cbf002 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e0c218610a22452283aeb7976391cb6164f9a69f454736bea7a42dc9763ac4 +size 22127 diff --git a/Skins/- ⊹ aia 2/selection-mod-nightcore@2x.png b/Skins/- ⊹ aia 2/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..aeaba637 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876ba95cb756fa07b2920afde80b3c13a1c1afab29eed2d95c3658e92daccab5 +size 16358 diff --git a/Skins/- ⊹ aia 2/selection-mod-nofail@2x.png b/Skins/- ⊹ aia 2/selection-mod-nofail@2x.png new file mode 100644 index 00000000..7812d0f7 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e50c010bc36bcbd5feee98ae3808425482715ddb4954364891e21468513842 +size 20945 diff --git a/Skins/- ⊹ aia 2/selection-mod-perfect@2x.png b/Skins/- ⊹ aia 2/selection-mod-perfect@2x.png new file mode 100644 index 00000000..1fadb52f --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8e6fa28838f08e3b9768642aa3766e4f16d0800a242b6de2139006534d9592 +size 16077 diff --git a/Skins/- ⊹ aia 2/selection-mod-relax2@2x.png b/Skins/- ⊹ aia 2/selection-mod-relax2@2x.png new file mode 100644 index 00000000..4f87a207 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703d9ceb29648ae8ced917353b79c337a3bf384fc974176b2bbdeea979ba98f3 +size 17362 diff --git a/Skins/- ⊹ aia 2/selection-mod-relax@2x.png b/Skins/- ⊹ aia 2/selection-mod-relax@2x.png new file mode 100644 index 00000000..9ce08619 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b30631a4296e085afdeadb5d413ba489350078bb723af445d65931ad6d1e19 +size 13251 diff --git a/Skins/- ⊹ aia 2/selection-mod-spunout@2x.png b/Skins/- ⊹ aia 2/selection-mod-spunout@2x.png new file mode 100644 index 00000000..c902b31e --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e98f9b2ea1464b96ae7d6ef6a375a6490d2e5473d08e61221a785c1a52e387 +size 19156 diff --git a/Skins/- ⊹ aia 2/selection-mod-suddendeath@2x.png b/Skins/- ⊹ aia 2/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..ca40518a --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069e192fcfff644c94134100d1493c1b81c7f166a42db0d45c080fa938c9029c +size 22918 diff --git a/Skins/- ⊹ aia 2/selection-mod-target@2x.png b/Skins/- ⊹ aia 2/selection-mod-target@2x.png new file mode 100644 index 00000000..629cd028 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d502463c96d96daaf96e7d68276e209c4afe3a33d5289a6eca14280da5edf7ec +size 27959 diff --git a/Skins/- ⊹ aia 2/selection-mode.png b/Skins/- ⊹ aia 2/selection-mode.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 2/selection-mods-over@2x.png b/Skins/- ⊹ aia 2/selection-mods-over@2x.png new file mode 100644 index 00000000..4c9a1741 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:518939e383bcd09e3c60c0bac1e664aa550b6d3712b79caf6fcc91e9ddf6391c +size 53674 diff --git a/Skins/- ⊹ aia 2/selection-mods@2x.png b/Skins/- ⊹ aia 2/selection-mods@2x.png new file mode 100644 index 00000000..62f4bd5f --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbe2aa613333daf72cbe1f9b2d7cc8f7e9bbb5727447e49f5d7e09b93b48c25 +size 31901 diff --git a/Skins/- ⊹ aia 2/selection-options-over@2x.png b/Skins/- ⊹ aia 2/selection-options-over@2x.png new file mode 100644 index 00000000..f85ed91e --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ebf1eaf2fde5fd500b2fd49da09134bb8f3272cf111127b765defaf611684ac +size 57104 diff --git a/Skins/- ⊹ aia 2/selection-options@2x.png b/Skins/- ⊹ aia 2/selection-options@2x.png new file mode 100644 index 00000000..b3a61bc4 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4c7eadce33948af9ca8ab37e69ec65c740ac217c62e867a9d25f5f43187cef +size 31809 diff --git a/Skins/- ⊹ aia 2/selection-random-over@2x.png b/Skins/- ⊹ aia 2/selection-random-over@2x.png new file mode 100644 index 00000000..a5c04022 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f501a7dcf11ee1a2611ddb448efb4084b3673e5581b7973764815b740eb25bb6 +size 55799 diff --git a/Skins/- ⊹ aia 2/selection-random@2x.png b/Skins/- ⊹ aia 2/selection-random@2x.png new file mode 100644 index 00000000..1f9432fc --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc2b91a1d908454550ad8e7ac2a06fc25e5d4964e99b4bf027158df25e23da6 +size 31897 diff --git a/Skins/- ⊹ aia 2/selection-selectoptions-over@2x.png b/Skins/- ⊹ aia 2/selection-selectoptions-over@2x.png new file mode 100644 index 00000000..f6a6914e --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-selectoptions-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0950e08aebcf095d7bf5f9aa4f580c08a79c0476fc1a2cb036c06d8a6df9db +size 55620 diff --git a/Skins/- ⊹ aia 2/selection-selectoptions@2x.png b/Skins/- ⊹ aia 2/selection-selectoptions@2x.png new file mode 100644 index 00000000..42c12965 --- /dev/null +++ b/Skins/- ⊹ aia 2/selection-selectoptions@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a7ac041c8d6c7b75581b87580e901940253fa5e609291f5d44c3a83a1c985d +size 32893 diff --git a/Skins/- ⊹ aia 2/skin.ini b/Skins/- ⊹ aia 2/skin.ini new file mode 100644 index 00000000..f7f83ce3 --- /dev/null +++ b/Skins/- ⊹ aia 2/skin.ini @@ -0,0 +1,28 @@ +// skin.ini generated by osu! skin mixer v2.8.1 + +[General] +Name: aia edit 2 +Author: Skellers +Version: 2.2 +SliderBallFlip: 1 +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 60 +SpinnerFadePlayfield: 1 +HitCircleOverlayAboveNumer: 75 +AllowSliderBallTint: 0 + +[Colours] +Combo1: 128,0,255 +Combo2: 106,129,166 +Combo3: 255,0,255 +SliderBorder: 255, 0, 0 +SliderTrackOverride: 0,0,0 +SpinnerApproachCircle: 0,0,0 +SongSelectActiveText: 255,153,153 +SongSelectInactiveText: 255,153,153 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 20 diff --git a/Skins/- ⊹ aia 2/sliderb0@2x.png b/Skins/- ⊹ aia 2/sliderb0@2x.png new file mode 100644 index 00000000..2f1595cf --- /dev/null +++ b/Skins/- ⊹ aia 2/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adcd5ed345c40142a5b097fc1e896b9897c1ab6f419e3211afcd6f5ed7ec183 +size 23267 diff --git a/Skins/- ⊹ aia 2/sliderendcircle.png b/Skins/- ⊹ aia 2/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/sliderfollowcircle.png b/Skins/- ⊹ aia 2/sliderfollowcircle.png new file mode 100644 index 00000000..c367fee5 --- /dev/null +++ b/Skins/- ⊹ aia 2/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda512af4c534987d8121efbc0d4c761b19420cac50c74aa2c03327c4c5374d4 +size 17067 diff --git a/Skins/- ⊹ aia 2/sliderfollowcircle@2x.png b/Skins/- ⊹ aia 2/sliderfollowcircle@2x.png new file mode 100644 index 00000000..1be696a9 --- /dev/null +++ b/Skins/- ⊹ aia 2/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3c665d87e8a537410e05652904a8184f16992d57133befd66b1f3b0c32906c +size 42710 diff --git a/Skins/- ⊹ aia 2/sliderscorepoint.png b/Skins/- ⊹ aia 2/sliderscorepoint.png new file mode 100644 index 00000000..de722095 --- /dev/null +++ b/Skins/- ⊹ aia 2/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832ef1a71e6e42a33c91be02300624d774313d01d135f24b8ba59b4d4ec3e79f +size 1472 diff --git a/Skins/- ⊹ aia 2/soft-hitclap.wav b/Skins/- ⊹ aia 2/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- ⊹ aia 2/soft-hitclap2.wav b/Skins/- ⊹ aia 2/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- ⊹ aia 2/soft-hitfinish.wav b/Skins/- ⊹ aia 2/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- ⊹ aia 2/soft-hitfinish2.wav b/Skins/- ⊹ aia 2/soft-hitfinish2.wav new file mode 100644 index 00000000..3e8856c5 --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3708a5decda6b05082c11e4edd9bc03e80acbb6e32759feecc98636e9f2b797b +size 25804 diff --git a/Skins/- ⊹ aia 2/soft-hitnormal.wav b/Skins/- ⊹ aia 2/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- ⊹ aia 2/soft-hitnormal1.wav b/Skins/- ⊹ aia 2/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/- ⊹ aia 2/soft-hitnormal2.wav b/Skins/- ⊹ aia 2/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/- ⊹ aia 2/soft-hitsoft.wav b/Skins/- ⊹ aia 2/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/- ⊹ aia 2/soft-hitwhistle.wav b/Skins/- ⊹ aia 2/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- ⊹ aia 2/soft-hitwhistle2.wav b/Skins/- ⊹ aia 2/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/- ⊹ aia 2/soft-sliderslide.wav b/Skins/- ⊹ aia 2/soft-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 2/soft-slidertick.wav b/Skins/- ⊹ aia 2/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/- ⊹ aia 2/soft-sliderwhistle.wav b/Skins/- ⊹ aia 2/soft-sliderwhistle.wav new file mode 100644 index 00000000..cfc0314c --- /dev/null +++ b/Skins/- ⊹ aia 2/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b80e132dd7adf41d45f7e21352dc3420599474382dc87a3b1772f603ce32a81 +size 67256 diff --git a/Skins/- ⊹ aia 2/songselect-bottom.png b/Skins/- ⊹ aia 2/songselect-bottom.png new file mode 100644 index 00000000..e07b7878 --- /dev/null +++ b/Skins/- ⊹ aia 2/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d4e6d6587728d1727cf4c0c41cd03aaf2049b7dc719c2e22591b3dab04df11 +size 3104 diff --git a/Skins/- ⊹ aia 2/songselect-bottom@2x.png b/Skins/- ⊹ aia 2/songselect-bottom@2x.png new file mode 100644 index 00000000..6d0ed78d --- /dev/null +++ b/Skins/- ⊹ aia 2/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a9acf3afbf4ed86fb3b9627c3bd6a886d634a3f7f7cd426d097eba3d02f8cb +size 3598 diff --git a/Skins/- ⊹ aia 2/spinner-approachcircle.png b/Skins/- ⊹ aia 2/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- ⊹ aia 2/spinner-background.png b/Skins/- ⊹ aia 2/spinner-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/spinner-bottom.png b/Skins/- ⊹ aia 2/spinner-bottom.png new file mode 100644 index 00000000..6804aa0d --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b506f9b2202e76c8ff060df170d4221243e2e137481759898dfbd64847338c9a +size 5456 diff --git a/Skins/- ⊹ aia 2/spinner-circle.png b/Skins/- ⊹ aia 2/spinner-circle.png new file mode 100644 index 00000000..5662bf01 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a04f938d4447d116eff8660a1d6099ecab1035e9796f28d6685ad8dd5d5f6c +size 13169 diff --git a/Skins/- ⊹ aia 2/spinner-clear.png b/Skins/- ⊹ aia 2/spinner-clear.png new file mode 100644 index 00000000..01097a68 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c6b7619a9165c6b1d7973a8706466289c332ab75ae2c19e1ea9d35041409ca +size 5226 diff --git a/Skins/- ⊹ aia 2/spinner-glow.png b/Skins/- ⊹ aia 2/spinner-glow.png new file mode 100644 index 00000000..27dfebe6 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beca027a9e8ccae72b4dde4be32b6fef240f1160778784d81a7445a2a62b451e +size 6797 diff --git a/Skins/- ⊹ aia 2/spinner-middle.png b/Skins/- ⊹ aia 2/spinner-middle.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 2/spinner-middle2.png b/Skins/- ⊹ aia 2/spinner-middle2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 2/spinner-middle2@2x.png b/Skins/- ⊹ aia 2/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 2/spinner-osu.png b/Skins/- ⊹ aia 2/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/spinner-spin.png b/Skins/- ⊹ aia 2/spinner-spin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/spinner-top.png b/Skins/- ⊹ aia 2/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 2/spinnerbonus.wav b/Skins/- ⊹ aia 2/spinnerbonus.wav new file mode 100644 index 00000000..6e901ec0 --- /dev/null +++ b/Skins/- ⊹ aia 2/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea3774c20fb4a84c33ab6e08b7db0042e2494173e26ca210ec6171c20da9c4 +size 178600 diff --git a/Skins/- ⊹ aia 2/spinnerspin.wav b/Skins/- ⊹ aia 2/spinnerspin.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- ⊹ aia 2/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- ⊹ aia 2/star2.png b/Skins/- ⊹ aia 2/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/triangle.png b/Skins/- ⊹ aia 2/triangle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 2/triangle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 2/welcome.wav b/Skins/- ⊹ aia 2/welcome.wav new file mode 100644 index 00000000..daf2b4a6 --- /dev/null +++ b/Skins/- ⊹ aia 2/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ccda7c2298bd87ff8e5e4d17c6651e8c7af707a1030bfecd753871e3345e3e +size 242400 diff --git a/Skins/- ⊹ aia 2/whoosh.wav b/Skins/- ⊹ aia 2/whoosh.wav new file mode 100644 index 00000000..9c7d6314 --- /dev/null +++ b/Skins/- ⊹ aia 2/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85b2d6a3b96fd189a16b6198b05c261eb9ce60f1fb419cda96b8ad15c779d34 +size 44546 diff --git a/Skins/- ⊹ aia 3/applause.mp3 b/Skins/- ⊹ aia 3/applause.mp3 new file mode 100644 index 00000000..cbd40bf6 --- /dev/null +++ b/Skins/- ⊹ aia 3/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c7c6ca74c5270f97889906c8e9a19b4f3f5a38f357500220a2f519da29f102 +size 2600959 diff --git a/Skins/- ⊹ aia 3/applause2.wav b/Skins/- ⊹ aia 3/applause2.wav new file mode 100644 index 00000000..f8185794 --- /dev/null +++ b/Skins/- ⊹ aia 3/applause2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ac43ab21e918da8adac73bfe374e97ddb7c76a24f2bd66213eaa833465f9da +size 4466178 diff --git a/Skins/- ⊹ aia 3/approachcircle.png b/Skins/- ⊹ aia 3/approachcircle.png new file mode 100644 index 00000000..9fb6c6ae --- /dev/null +++ b/Skins/- ⊹ aia 3/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb434dc285c3a64a44da60b396363030f71427381e23070121abd5afb56e9c4 +size 4504 diff --git a/Skins/- ⊹ aia 3/approachcircle@2x.png b/Skins/- ⊹ aia 3/approachcircle@2x.png new file mode 100644 index 00000000..71c0d04c --- /dev/null +++ b/Skins/- ⊹ aia 3/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9e0e7184c1d6637314fa95cc1d3c9c4f526db69d0b75025e9d581cdd5feda2 +size 12467 diff --git a/Skins/- ⊹ aia 3/combo-x.png b/Skins/- ⊹ aia 3/combo-x.png new file mode 100644 index 00000000..badad02c --- /dev/null +++ b/Skins/- ⊹ aia 3/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3914c6cf068add6375e8e49caf2b8856f1f2fb90133e3e1d824eca7a0bac06e9 +size 1465 diff --git a/Skins/- ⊹ aia 3/combo-x@2x.png b/Skins/- ⊹ aia 3/combo-x@2x.png new file mode 100644 index 00000000..7041a49d --- /dev/null +++ b/Skins/- ⊹ aia 3/combo-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08346328873c9f4e9da6cde4fc3321711b749c3ae48d1d703ad6c791faf58eae +size 5569 diff --git a/Skins/- ⊹ aia 3/combobreak.wav b/Skins/- ⊹ aia 3/combobreak.wav new file mode 100644 index 00000000..0923f624 --- /dev/null +++ b/Skins/- ⊹ aia 3/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99eac7db102a2f66f9ed42e618247a924df444b9de48e21cc0bc792708693063 +size 105412 diff --git a/Skins/- ⊹ aia 3/comboburst.png b/Skins/- ⊹ aia 3/comboburst.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/count1s.wav b/Skins/- ⊹ aia 3/count1s.wav new file mode 100644 index 00000000..0fb49dab --- /dev/null +++ b/Skins/- ⊹ aia 3/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f242e82becde75d5343e61cc004e7a2c07ea97ba90b1061a8db13fb845c1fb86 +size 140634 diff --git a/Skins/- ⊹ aia 3/count2s.wav b/Skins/- ⊹ aia 3/count2s.wav new file mode 100644 index 00000000..0fb49dab --- /dev/null +++ b/Skins/- ⊹ aia 3/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f242e82becde75d5343e61cc004e7a2c07ea97ba90b1061a8db13fb845c1fb86 +size 140634 diff --git a/Skins/- ⊹ aia 3/count3s.wav b/Skins/- ⊹ aia 3/count3s.wav new file mode 100644 index 00000000..0fb49dab --- /dev/null +++ b/Skins/- ⊹ aia 3/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f242e82becde75d5343e61cc004e7a2c07ea97ba90b1061a8db13fb845c1fb86 +size 140634 diff --git a/Skins/- ⊹ aia 3/cursor.png b/Skins/- ⊹ aia 3/cursor.png new file mode 100644 index 00000000..0ac7c315 --- /dev/null +++ b/Skins/- ⊹ aia 3/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c728c0777f227ad6e0fde252848584787dd63a22acd661df2c88a3eb111bf6 +size 6899 diff --git a/Skins/- ⊹ aia 3/cursortrail.png b/Skins/- ⊹ aia 3/cursortrail.png new file mode 100644 index 00000000..0a140ab6 --- /dev/null +++ b/Skins/- ⊹ aia 3/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3844738c6b2395743f8b9d71942aad8a5600e94479c20ce6d45b5e572d2b5795 +size 5680 diff --git a/Skins/- ⊹ aia 3/default-0.png b/Skins/- ⊹ aia 3/default-0.png new file mode 100644 index 00000000..0a0100bb --- /dev/null +++ b/Skins/- ⊹ aia 3/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f6bd7bd65e3e4270cfb87db2e8975996ad84fcc64fbf45f3f9433b1db66b42 +size 3586 diff --git a/Skins/- ⊹ aia 3/default-0@2x.png b/Skins/- ⊹ aia 3/default-0@2x.png new file mode 100644 index 00000000..d720ed91 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b4177cd9e3673661552a0c8156a30a1ed7c2a6d4975616e975457fb8d584d9 +size 8384 diff --git a/Skins/- ⊹ aia 3/default-1.png b/Skins/- ⊹ aia 3/default-1.png new file mode 100644 index 00000000..7f0e45c0 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8784845566236ef6bd0a937582dac2bf28c0e09ee71eddddc8f6cbccf213b219 +size 2269 diff --git a/Skins/- ⊹ aia 3/default-1@2x.png b/Skins/- ⊹ aia 3/default-1@2x.png new file mode 100644 index 00000000..08c6e46c --- /dev/null +++ b/Skins/- ⊹ aia 3/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5816005a6c2b19da1b3141f84a0a6e8ea35de0b211d2e9f9d43b7d29e703aebd +size 4554 diff --git a/Skins/- ⊹ aia 3/default-2.png b/Skins/- ⊹ aia 3/default-2.png new file mode 100644 index 00000000..620cd7f7 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b63cc07b2657bc3f5e66b9d901f9d78a5277b7d7b65f847a39501f345140f1 +size 3460 diff --git a/Skins/- ⊹ aia 3/default-2@2x.png b/Skins/- ⊹ aia 3/default-2@2x.png new file mode 100644 index 00000000..695da376 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b34d2c20df442cb505584d36e817c4b176ee4ad97689c084952f89554b745886 +size 7981 diff --git a/Skins/- ⊹ aia 3/default-3.png b/Skins/- ⊹ aia 3/default-3.png new file mode 100644 index 00000000..ac49de89 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffab7b6ce7fe72e4282708c831b0791247d09911e847c05ed794afa81bb018ed +size 3350 diff --git a/Skins/- ⊹ aia 3/default-3@2x.png b/Skins/- ⊹ aia 3/default-3@2x.png new file mode 100644 index 00000000..67791239 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50df485e50c0463daf3fb236595ae413b5d32559a933904af5fd18325fe5fce6 +size 7937 diff --git a/Skins/- ⊹ aia 3/default-4.png b/Skins/- ⊹ aia 3/default-4.png new file mode 100644 index 00000000..44abca1e --- /dev/null +++ b/Skins/- ⊹ aia 3/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e723a53c3971b3210bdb7375c5ca919fa9873aef4aa601e4a72be216ef75a9a +size 2560 diff --git a/Skins/- ⊹ aia 3/default-4@2x.png b/Skins/- ⊹ aia 3/default-4@2x.png new file mode 100644 index 00000000..a1e95654 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae13c425f1516156c893d47fdac4cc7c1dbf6e3403ebc292b12dc59ae562337b +size 6029 diff --git a/Skins/- ⊹ aia 3/default-5.png b/Skins/- ⊹ aia 3/default-5.png new file mode 100644 index 00000000..0ce1cfca --- /dev/null +++ b/Skins/- ⊹ aia 3/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eaf613cc1cd5cc008c7818e093b894f699b971bd3d17c38de54dbbcb5c34f4f +size 3679 diff --git a/Skins/- ⊹ aia 3/default-5@2x.png b/Skins/- ⊹ aia 3/default-5@2x.png new file mode 100644 index 00000000..0411e085 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b758d3e30f948a43bd9456b02336a5bc5d30744404dbbfae5853f297ce44c5d +size 8556 diff --git a/Skins/- ⊹ aia 3/default-6.png b/Skins/- ⊹ aia 3/default-6.png new file mode 100644 index 00000000..51b29671 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5bb1136dd4a692e567afef463c473c22604bc542b185fefda202c7d689d884c +size 3494 diff --git a/Skins/- ⊹ aia 3/default-6@2x.png b/Skins/- ⊹ aia 3/default-6@2x.png new file mode 100644 index 00000000..9fb0fa3f --- /dev/null +++ b/Skins/- ⊹ aia 3/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f94613642bd1cf57a899c92ba3651a9090b2eed9acac7ab92ac2515046297b +size 8417 diff --git a/Skins/- ⊹ aia 3/default-7.png b/Skins/- ⊹ aia 3/default-7.png new file mode 100644 index 00000000..c0353e9b --- /dev/null +++ b/Skins/- ⊹ aia 3/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a845737578f65c813ec0ddf31d0d6e7063e81ab34e893b32ccd30e79b48695a2 +size 2657 diff --git a/Skins/- ⊹ aia 3/default-7@2x.png b/Skins/- ⊹ aia 3/default-7@2x.png new file mode 100644 index 00000000..c55bda23 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af7dc2947065a096ef25270e0d9f22ed4dcf0af00b328f69ffb3b5b29337e45 +size 6915 diff --git a/Skins/- ⊹ aia 3/default-8.png b/Skins/- ⊹ aia 3/default-8.png new file mode 100644 index 00000000..670e256a --- /dev/null +++ b/Skins/- ⊹ aia 3/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d4d8449e5a938fce61a1041278ce677383248522a600e239ab85b58be0dfb2 +size 3596 diff --git a/Skins/- ⊹ aia 3/default-8@2x.png b/Skins/- ⊹ aia 3/default-8@2x.png new file mode 100644 index 00000000..80ec9750 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8fc20e6a0914c0ca7340e50552aa8cae3615d34b185d028924fc0c34104fb66 +size 8595 diff --git a/Skins/- ⊹ aia 3/default-9.png b/Skins/- ⊹ aia 3/default-9.png new file mode 100644 index 00000000..720890a6 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8852148bc85983cbd028aa94fc2e4336cd896961ae65e990a3ce9198e222c217 +size 3438 diff --git a/Skins/- ⊹ aia 3/default-9@2x.png b/Skins/- ⊹ aia 3/default-9@2x.png new file mode 100644 index 00000000..6c5b45b6 --- /dev/null +++ b/Skins/- ⊹ aia 3/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892d4d1ed2027ec1cbbe148e5bd3117df9653e23935a897f72b7cbb59d7253a2 +size 8394 diff --git a/Skins/- ⊹ aia 3/desktop.ini b/Skins/- ⊹ aia 3/desktop.ini new file mode 100644 index 00000000..17c2f566 --- /dev/null +++ b/Skins/- ⊹ aia 3/desktop.ini @@ -0,0 +1,4 @@ +[ViewState] +Mode= +Vid= +FolderType=Pictures diff --git a/Skins/- ⊹ aia 3/drum-hitclap.wav b/Skins/- ⊹ aia 3/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- ⊹ aia 3/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- ⊹ aia 3/drum-hitclap2.wav b/Skins/- ⊹ aia 3/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- ⊹ aia 3/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- ⊹ aia 3/drum-hitfinish.wav b/Skins/- ⊹ aia 3/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- ⊹ aia 3/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- ⊹ aia 3/drum-hitnormal.wav b/Skins/- ⊹ aia 3/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- ⊹ aia 3/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- ⊹ aia 3/drum-hitnormalh.wav b/Skins/- ⊹ aia 3/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/- ⊹ aia 3/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/- ⊹ aia 3/drum-hitwhistle.wav b/Skins/- ⊹ aia 3/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- ⊹ aia 3/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- ⊹ aia 3/drum-sliderslide.wav b/Skins/- ⊹ aia 3/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 3/drum-slidertick.wav b/Skins/- ⊹ aia 3/drum-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/- ⊹ aia 3/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/- ⊹ aia 3/drum-sliderwhistle.wav b/Skins/- ⊹ aia 3/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- ⊹ aia 3/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- ⊹ aia 3/followpoint-0.png b/Skins/- ⊹ aia 3/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/followpoint-1.png b/Skins/- ⊹ aia 3/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/followpoint-11.png b/Skins/- ⊹ aia 3/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/- ⊹ aia 3/followpoint-12.png b/Skins/- ⊹ aia 3/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/- ⊹ aia 3/followpoint-13.png b/Skins/- ⊹ aia 3/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/- ⊹ aia 3/followpoint-14.png b/Skins/- ⊹ aia 3/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/- ⊹ aia 3/followpoint-15.png b/Skins/- ⊹ aia 3/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/- ⊹ aia 3/followpoint-16.png b/Skins/- ⊹ aia 3/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/- ⊹ aia 3/followpoint-17.png b/Skins/- ⊹ aia 3/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/- ⊹ aia 3/followpoint-18.png b/Skins/- ⊹ aia 3/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/- ⊹ aia 3/followpoint-19.png b/Skins/- ⊹ aia 3/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/- ⊹ aia 3/followpoint-2.png b/Skins/- ⊹ aia 3/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/followpoint-20.png b/Skins/- ⊹ aia 3/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/- ⊹ aia 3/followpoint-21.png b/Skins/- ⊹ aia 3/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/- ⊹ aia 3/followpoint-22.png b/Skins/- ⊹ aia 3/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/- ⊹ aia 3/followpoint-23.png b/Skins/- ⊹ aia 3/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/- ⊹ aia 3/followpoint-3.png b/Skins/- ⊹ aia 3/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/- ⊹ aia 3/followpoint-4.png b/Skins/- ⊹ aia 3/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 3/followpoint-5.png b/Skins/- ⊹ aia 3/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 3/followpoint-6.png b/Skins/- ⊹ aia 3/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 3/followpoint-7.png b/Skins/- ⊹ aia 3/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 3/followpoint-8.png b/Skins/- ⊹ aia 3/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 3/followpoint-9.png b/Skins/- ⊹ aia 3/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/- ⊹ aia 3/followpoint.png b/Skins/- ⊹ aia 3/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- ⊹ aia 3/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- ⊹ aia 3/go.png b/Skins/- ⊹ aia 3/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 3/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 3/hit0-0.png b/Skins/- ⊹ aia 3/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/- ⊹ aia 3/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/- ⊹ aia 3/hit0.png b/Skins/- ⊹ aia 3/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 3/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 3/hit100-0.png b/Skins/- ⊹ aia 3/hit100-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/- ⊹ aia 3/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/- ⊹ aia 3/hit100.png b/Skins/- ⊹ aia 3/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 3/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 3/hit100k-0.png b/Skins/- ⊹ aia 3/hit100k-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/- ⊹ aia 3/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/- ⊹ aia 3/hit100k.png b/Skins/- ⊹ aia 3/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 3/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 3/hit300.png b/Skins/- ⊹ aia 3/hit300.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 3/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 3/hit300g.png b/Skins/- ⊹ aia 3/hit300g.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 3/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 3/hit300k.png b/Skins/- ⊹ aia 3/hit300k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 3/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 3/hit50-0.png b/Skins/- ⊹ aia 3/hit50-0.png new file mode 100644 index 00000000..378cdf1e --- /dev/null +++ b/Skins/- ⊹ aia 3/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1317680bf0c857731dbc67d8689fb11a031033ec4527ff1b25023e0ed4361 +size 1956 diff --git a/Skins/- ⊹ aia 3/hit50.png b/Skins/- ⊹ aia 3/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/- ⊹ aia 3/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/- ⊹ aia 3/hitcircle@2x.png b/Skins/- ⊹ aia 3/hitcircle@2x.png new file mode 100644 index 00000000..6b92039a --- /dev/null +++ b/Skins/- ⊹ aia 3/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc196e9a088be1cf3d9991f5a3ad85a99a5f22526deb15fdf0d1a49ca65eee0 +size 6514 diff --git a/Skins/- ⊹ aia 3/hitcircleoverlay@2x.png b/Skins/- ⊹ aia 3/hitcircleoverlay@2x.png new file mode 100644 index 00000000..3acd216e --- /dev/null +++ b/Skins/- ⊹ aia 3/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42a81202af452ccd9e176ee85fc5245d19a7a488e4f9968dc022971ec710247 +size 30127 diff --git a/Skins/- ⊹ aia 3/match-confirm.wav b/Skins/- ⊹ aia 3/match-confirm.wav new file mode 100644 index 00000000..71822eb6 --- /dev/null +++ b/Skins/- ⊹ aia 3/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f591b088715c93908bcc77f6eadf1c41f1b7ef8e752bcf5c33b4fa689e38814c +size 153194 diff --git a/Skins/- ⊹ aia 3/menu-back.png b/Skins/- ⊹ aia 3/menu-back.png new file mode 100644 index 00000000..60b2f556 --- /dev/null +++ b/Skins/- ⊹ aia 3/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b498f8a2ba0bdbf48de66753b3cfaa1c8bcfe4b7327d3abd149c6e15ffef47d1 +size 109 diff --git a/Skins/- ⊹ aia 3/menu-button-background.png b/Skins/- ⊹ aia 3/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/- ⊹ aia 3/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/- ⊹ aia 3/menu-button-background@21.png b/Skins/- ⊹ aia 3/menu-button-background@21.png new file mode 100644 index 00000000..9955a0a2 --- /dev/null +++ b/Skins/- ⊹ aia 3/menu-button-background@21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298da5b988dbe6d4ceb09cddf99f74e5034a533c4a2b2a00e3fd58cd39ea8cc1 +size 14850 diff --git a/Skins/- ⊹ aia 3/menuback.wav b/Skins/- ⊹ aia 3/menuback.wav new file mode 100644 index 00000000..6b532117 --- /dev/null +++ b/Skins/- ⊹ aia 3/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4605c29f51af0819c3e65609ea76abdac493550f947f1b1a1f1c335e5d62e9 +size 30448 diff --git a/Skins/- ⊹ aia 3/menuclick.wav b/Skins/- ⊹ aia 3/menuclick.wav new file mode 100644 index 00000000..bb687361 --- /dev/null +++ b/Skins/- ⊹ aia 3/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811afe81261f3144ef306aca2108b0e426e79fc529a2ca5b9bfe00c353113e6e +size 144214 diff --git a/Skins/- ⊹ aia 3/menuhit.wav b/Skins/- ⊹ aia 3/menuhit.wav new file mode 100644 index 00000000..0a50f012 --- /dev/null +++ b/Skins/- ⊹ aia 3/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba0d7210bf6fc251841fdbe7aa7896278245b579a3a375462d0085aea8d5103 +size 361038 diff --git a/Skins/- ⊹ aia 3/normal-hitclap.wav b/Skins/- ⊹ aia 3/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- ⊹ aia 3/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- ⊹ aia 3/normal-hitfinish.wav b/Skins/- ⊹ aia 3/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- ⊹ aia 3/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- ⊹ aia 3/normal-hitnormal.wav b/Skins/- ⊹ aia 3/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- ⊹ aia 3/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- ⊹ aia 3/normal-hitwhistle.wav b/Skins/- ⊹ aia 3/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- ⊹ aia 3/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- ⊹ aia 3/normal-sliderslide.wav b/Skins/- ⊹ aia 3/normal-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 3/normal-slidertick.wav b/Skins/- ⊹ aia 3/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/- ⊹ aia 3/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/- ⊹ aia 3/normal-sliderwhistle.wav b/Skins/- ⊹ aia 3/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 3/normal-sliderwhistle2.wav b/Skins/- ⊹ aia 3/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- ⊹ aia 3/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- ⊹ aia 3/pause-back.png b/Skins/- ⊹ aia 3/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/- ⊹ aia 3/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/- ⊹ aia 3/pause-continue.png b/Skins/- ⊹ aia 3/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/- ⊹ aia 3/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/- ⊹ aia 3/pause-loop.mp3 b/Skins/- ⊹ aia 3/pause-loop.mp3 new file mode 100644 index 00000000..ae5defbb --- /dev/null +++ b/Skins/- ⊹ aia 3/pause-loop.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:328ba0a82bca9a49f8f92307e1e411f5422f5ca19e77cce5287281838092fb01 +size 7595928 diff --git a/Skins/- ⊹ aia 3/pause-replay.png b/Skins/- ⊹ aia 3/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/- ⊹ aia 3/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/- ⊹ aia 3/pause-retry.png b/Skins/- ⊹ aia 3/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/- ⊹ aia 3/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/- ⊹ aia 3/ranking-A-small.png b/Skins/- ⊹ aia 3/ranking-A-small.png new file mode 100644 index 00000000..1f031d7c --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50870a7551614721716fcdf59901a1b7c5320ae83ba6a0f34b55d2a899a5adcf +size 4703 diff --git a/Skins/- ⊹ aia 3/ranking-B-small.png b/Skins/- ⊹ aia 3/ranking-B-small.png new file mode 100644 index 00000000..47cbeb6c --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febbeb30e8b5e76cf402a997797edfa35faa35aa8308ab7eb822a91a0daa9410 +size 4490 diff --git a/Skins/- ⊹ aia 3/ranking-C-small.png b/Skins/- ⊹ aia 3/ranking-C-small.png new file mode 100644 index 00000000..741b51fd --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241c1833fc5daf588ebaab8e1e487d30e1670065a4eee5f633d2dbf1aedaec06 +size 4555 diff --git a/Skins/- ⊹ aia 3/ranking-D-small.png b/Skins/- ⊹ aia 3/ranking-D-small.png new file mode 100644 index 00000000..4dd50ac2 --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60553c613ebb581bfc535daaa805c3250c753ec2ce6e13e8c07444c73e8c14 +size 4365 diff --git a/Skins/- ⊹ aia 3/ranking-S-small.png b/Skins/- ⊹ aia 3/ranking-S-small.png new file mode 100644 index 00000000..46824491 --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b57053a2015070c2e7d305f50e15368eeb311acad7c7be4eb7a1c4fa5f2af3 +size 4768 diff --git a/Skins/- ⊹ aia 3/ranking-SH-small.png b/Skins/- ⊹ aia 3/ranking-SH-small.png new file mode 100644 index 00000000..9874a6eb --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dfd8fd78d8b2a32b7992cf987cc0dd8b86cdfb46c1fd9286379c658e7219a3 +size 4547 diff --git a/Skins/- ⊹ aia 3/ranking-X-small.png b/Skins/- ⊹ aia 3/ranking-X-small.png new file mode 100644 index 00000000..6401b38b --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc163849993b7a223529b496163782fe172f9c1e5fb4585973260eb3618b1744 +size 5563 diff --git a/Skins/- ⊹ aia 3/ranking-XH-small.png b/Skins/- ⊹ aia 3/ranking-XH-small.png new file mode 100644 index 00000000..2e6a8046 --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b002b5c666212d5e7435332ac24f6c0e354666e9f69e13ecb41d7ace30dd0a +size 5313 diff --git a/Skins/- ⊹ aia 3/ranking-accuracy.png b/Skins/- ⊹ aia 3/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 3/ranking-graph.png b/Skins/- ⊹ aia 3/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/- ⊹ aia 3/ranking-graph@2x.png b/Skins/- ⊹ aia 3/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/- ⊹ aia 3/ranking-maxcombo.png b/Skins/- ⊹ aia 3/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/- ⊹ aia 3/ranking-panel.png b/Skins/- ⊹ aia 3/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/- ⊹ aia 3/ranking-panel@2x.png b/Skins/- ⊹ aia 3/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/- ⊹ aia 3/ranking-perfect.png b/Skins/- ⊹ aia 3/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 3/ranking-title.png b/Skins/- ⊹ aia 3/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 3/ranking-winner.png b/Skins/- ⊹ aia 3/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 3/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 3/reversearrow@2x.png b/Skins/- ⊹ aia 3/reversearrow@2x.png new file mode 100644 index 00000000..5c3570ca --- /dev/null +++ b/Skins/- ⊹ aia 3/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5e33cb132d50a2aed4a1df5212d7188e522994520056b7996c8d91822e22bd +size 28524 diff --git a/Skins/- ⊹ aia 3/scorebar-bg@2x1.png b/Skins/- ⊹ aia 3/scorebar-bg@2x1.png new file mode 100644 index 00000000..8e670c40 --- /dev/null +++ b/Skins/- ⊹ aia 3/scorebar-bg@2x1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae447449bfbd9690bad9ec7dd3d379e09f69ca2ec6d844f8604c85b95913b12 +size 79912 diff --git a/Skins/- ⊹ aia 3/scorebar-bg@2x3.png b/Skins/- ⊹ aia 3/scorebar-bg@2x3.png new file mode 100644 index 00000000..d3dbb43c --- /dev/null +++ b/Skins/- ⊹ aia 3/scorebar-bg@2x3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676d68a5b4291069c5762533ed15ec4d0cadfe714f7c6c3caef86931627f7ae8 +size 293621 diff --git a/Skins/- ⊹ aia 3/sectionfail.wav b/Skins/- ⊹ aia 3/sectionfail.wav new file mode 100644 index 00000000..42e93f4e --- /dev/null +++ b/Skins/- ⊹ aia 3/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379f51530fb9dd710bde552a77011aed2006724f876d364f2b3f0571575a2f9d +size 313040 diff --git a/Skins/- ⊹ aia 3/sectionpass.wav b/Skins/- ⊹ aia 3/sectionpass.wav new file mode 100644 index 00000000..ee3f1f2c --- /dev/null +++ b/Skins/- ⊹ aia 3/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459a48175ab86d7eecfe5932c74d8abadb817c64611f6ddeab762abccd7d845b +size 208480 diff --git a/Skins/- ⊹ aia 3/seeya.wav b/Skins/- ⊹ aia 3/seeya.wav new file mode 100644 index 00000000..3e2e96d7 --- /dev/null +++ b/Skins/- ⊹ aia 3/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ec8987340d444cc7d069d0738bfc948de9bd11ac397d5c0056d3bb88275da6 +size 449560 diff --git a/Skins/- ⊹ aia 3/selection-mod-autoplay@2x.png b/Skins/- ⊹ aia 3/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..ed189d6e --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d16303be865ce02feede1845dcdefbc115f2f9fbd8b3dc3baff1ba650997724 +size 13667 diff --git a/Skins/- ⊹ aia 3/selection-mod-cinema@2x.png b/Skins/- ⊹ aia 3/selection-mod-cinema@2x.png new file mode 100644 index 00000000..db84c414 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45df8def051cfbbb31115a28ab9c02c0a20bd8b426f19900f337a7816acfebd6 +size 22259 diff --git a/Skins/- ⊹ aia 3/selection-mod-doubletime@2x.png b/Skins/- ⊹ aia 3/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6f471799 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b579edd7458a28dc8063e5ab01ce9be32ee0dd94388aad6f2c0189ac216c3c +size 21202 diff --git a/Skins/- ⊹ aia 3/selection-mod-easy@2x.png b/Skins/- ⊹ aia 3/selection-mod-easy@2x.png new file mode 100644 index 00000000..52fa94c8 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb4dadafd8964a3bfd702763cf675917453afe4dc3a4abafe72896beb02e7bc +size 13043 diff --git a/Skins/- ⊹ aia 3/selection-mod-flashlight@2x.png b/Skins/- ⊹ aia 3/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..bd178b55 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bf5cc4153a4c77e1eb4208c7ef6020e47c49fcb014567139dc3e79be3f5900 +size 15503 diff --git a/Skins/- ⊹ aia 3/selection-mod-halftime@2x.png b/Skins/- ⊹ aia 3/selection-mod-halftime@2x.png new file mode 100644 index 00000000..595b8452 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f8a011ceb3082ee82f0ea40d2750cab07ba3e066208f28f62fd56d62551d70 +size 12853 diff --git a/Skins/- ⊹ aia 3/selection-mod-hardrock@2x.png b/Skins/- ⊹ aia 3/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..d78a8b5c --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2398e0471f2ad18083bad94f1d78c5ddccdb24a9d44586bcda0ea23551cc3e +size 17560 diff --git a/Skins/- ⊹ aia 3/selection-mod-hidden@2x.png b/Skins/- ⊹ aia 3/selection-mod-hidden@2x.png new file mode 100644 index 00000000..b4cbf002 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e0c218610a22452283aeb7976391cb6164f9a69f454736bea7a42dc9763ac4 +size 22127 diff --git a/Skins/- ⊹ aia 3/selection-mod-nightcore@2x.png b/Skins/- ⊹ aia 3/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..aeaba637 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876ba95cb756fa07b2920afde80b3c13a1c1afab29eed2d95c3658e92daccab5 +size 16358 diff --git a/Skins/- ⊹ aia 3/selection-mod-nofail@2x.png b/Skins/- ⊹ aia 3/selection-mod-nofail@2x.png new file mode 100644 index 00000000..7812d0f7 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e50c010bc36bcbd5feee98ae3808425482715ddb4954364891e21468513842 +size 20945 diff --git a/Skins/- ⊹ aia 3/selection-mod-perfect@2x.png b/Skins/- ⊹ aia 3/selection-mod-perfect@2x.png new file mode 100644 index 00000000..1fadb52f --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8e6fa28838f08e3b9768642aa3766e4f16d0800a242b6de2139006534d9592 +size 16077 diff --git a/Skins/- ⊹ aia 3/selection-mod-relax2@2x.png b/Skins/- ⊹ aia 3/selection-mod-relax2@2x.png new file mode 100644 index 00000000..4f87a207 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703d9ceb29648ae8ced917353b79c337a3bf384fc974176b2bbdeea979ba98f3 +size 17362 diff --git a/Skins/- ⊹ aia 3/selection-mod-relax@2x.png b/Skins/- ⊹ aia 3/selection-mod-relax@2x.png new file mode 100644 index 00000000..9ce08619 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b30631a4296e085afdeadb5d413ba489350078bb723af445d65931ad6d1e19 +size 13251 diff --git a/Skins/- ⊹ aia 3/selection-mod-spunout@2x.png b/Skins/- ⊹ aia 3/selection-mod-spunout@2x.png new file mode 100644 index 00000000..c902b31e --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e98f9b2ea1464b96ae7d6ef6a375a6490d2e5473d08e61221a785c1a52e387 +size 19156 diff --git a/Skins/- ⊹ aia 3/selection-mod-suddendeath@2x.png b/Skins/- ⊹ aia 3/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..ca40518a --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069e192fcfff644c94134100d1493c1b81c7f166a42db0d45c080fa938c9029c +size 22918 diff --git a/Skins/- ⊹ aia 3/selection-mod-target@2x.png b/Skins/- ⊹ aia 3/selection-mod-target@2x.png new file mode 100644 index 00000000..629cd028 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d502463c96d96daaf96e7d68276e209c4afe3a33d5289a6eca14280da5edf7ec +size 27959 diff --git a/Skins/- ⊹ aia 3/selection-mode.png b/Skins/- ⊹ aia 3/selection-mode.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/- ⊹ aia 3/selection-mods-over@2x.png b/Skins/- ⊹ aia 3/selection-mods-over@2x.png new file mode 100644 index 00000000..4c9a1741 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:518939e383bcd09e3c60c0bac1e664aa550b6d3712b79caf6fcc91e9ddf6391c +size 53674 diff --git a/Skins/- ⊹ aia 3/selection-mods@2x.png b/Skins/- ⊹ aia 3/selection-mods@2x.png new file mode 100644 index 00000000..62f4bd5f --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbe2aa613333daf72cbe1f9b2d7cc8f7e9bbb5727447e49f5d7e09b93b48c25 +size 31901 diff --git a/Skins/- ⊹ aia 3/selection-options-over@2x.png b/Skins/- ⊹ aia 3/selection-options-over@2x.png new file mode 100644 index 00000000..f85ed91e --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ebf1eaf2fde5fd500b2fd49da09134bb8f3272cf111127b765defaf611684ac +size 57104 diff --git a/Skins/- ⊹ aia 3/selection-options@2x.png b/Skins/- ⊹ aia 3/selection-options@2x.png new file mode 100644 index 00000000..b3a61bc4 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4c7eadce33948af9ca8ab37e69ec65c740ac217c62e867a9d25f5f43187cef +size 31809 diff --git a/Skins/- ⊹ aia 3/selection-random-over@2x.png b/Skins/- ⊹ aia 3/selection-random-over@2x.png new file mode 100644 index 00000000..a5c04022 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f501a7dcf11ee1a2611ddb448efb4084b3673e5581b7973764815b740eb25bb6 +size 55799 diff --git a/Skins/- ⊹ aia 3/selection-random@2x.png b/Skins/- ⊹ aia 3/selection-random@2x.png new file mode 100644 index 00000000..1f9432fc --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc2b91a1d908454550ad8e7ac2a06fc25e5d4964e99b4bf027158df25e23da6 +size 31897 diff --git a/Skins/- ⊹ aia 3/selection-selectoptions-over@2x.png b/Skins/- ⊹ aia 3/selection-selectoptions-over@2x.png new file mode 100644 index 00000000..f6a6914e --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-selectoptions-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0950e08aebcf095d7bf5f9aa4f580c08a79c0476fc1a2cb036c06d8a6df9db +size 55620 diff --git a/Skins/- ⊹ aia 3/selection-selectoptions@2x.png b/Skins/- ⊹ aia 3/selection-selectoptions@2x.png new file mode 100644 index 00000000..42c12965 --- /dev/null +++ b/Skins/- ⊹ aia 3/selection-selectoptions@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a7ac041c8d6c7b75581b87580e901940253fa5e609291f5d44c3a83a1c985d +size 32893 diff --git a/Skins/- ⊹ aia 3/skin.ini b/Skins/- ⊹ aia 3/skin.ini new file mode 100644 index 00000000..198ad8c2 --- /dev/null +++ b/Skins/- ⊹ aia 3/skin.ini @@ -0,0 +1,28 @@ +// skin.ini generated by osu! skin mixer v2.8.1 + +[General] +Name: aia edit 3 +Author: Skellers +Version: 2.2 +SliderBallFlip: 1 +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 60 +SpinnerFadePlayfield: 1 +HitCircleOverlayAboveNumer: 75 +AllowSliderBallTint: 0 + +[Colours] +Combo1: 128,0,255 +Combo2: 106,129,166 +Combo3: 255,0,255 +SliderBorder: 255, 0, 0 +SliderTrackOverride: 0,0,0 +SpinnerApproachCircle: 0,0,0 +SongSelectActiveText: 255,153,153 +SongSelectInactiveText: 255,153,153 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 20 diff --git a/Skins/- ⊹ aia 3/sliderb0@2x.png b/Skins/- ⊹ aia 3/sliderb0@2x.png new file mode 100644 index 00000000..2f1595cf --- /dev/null +++ b/Skins/- ⊹ aia 3/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adcd5ed345c40142a5b097fc1e896b9897c1ab6f419e3211afcd6f5ed7ec183 +size 23267 diff --git a/Skins/- ⊹ aia 3/sliderendcircle.png b/Skins/- ⊹ aia 3/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/sliderfollowcircle@2x.png b/Skins/- ⊹ aia 3/sliderfollowcircle@2x.png new file mode 100644 index 00000000..1be696a9 --- /dev/null +++ b/Skins/- ⊹ aia 3/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3c665d87e8a537410e05652904a8184f16992d57133befd66b1f3b0c32906c +size 42710 diff --git a/Skins/- ⊹ aia 3/sliderscorepoint.png b/Skins/- ⊹ aia 3/sliderscorepoint.png new file mode 100644 index 00000000..de722095 --- /dev/null +++ b/Skins/- ⊹ aia 3/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832ef1a71e6e42a33c91be02300624d774313d01d135f24b8ba59b4d4ec3e79f +size 1472 diff --git a/Skins/- ⊹ aia 3/soft-hitclap.wav b/Skins/- ⊹ aia 3/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/- ⊹ aia 3/soft-hitclap2.wav b/Skins/- ⊹ aia 3/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/- ⊹ aia 3/soft-hitfinish.wav b/Skins/- ⊹ aia 3/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/- ⊹ aia 3/soft-hitfinish2.wav b/Skins/- ⊹ aia 3/soft-hitfinish2.wav new file mode 100644 index 00000000..3e8856c5 --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3708a5decda6b05082c11e4edd9bc03e80acbb6e32759feecc98636e9f2b797b +size 25804 diff --git a/Skins/- ⊹ aia 3/soft-hitnormal.wav b/Skins/- ⊹ aia 3/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/- ⊹ aia 3/soft-hitnormal1.wav b/Skins/- ⊹ aia 3/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/- ⊹ aia 3/soft-hitnormal2.wav b/Skins/- ⊹ aia 3/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/- ⊹ aia 3/soft-hitsoft.wav b/Skins/- ⊹ aia 3/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/- ⊹ aia 3/soft-hitwhistle.wav b/Skins/- ⊹ aia 3/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/- ⊹ aia 3/soft-hitwhistle2.wav b/Skins/- ⊹ aia 3/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/- ⊹ aia 3/soft-sliderslide.wav b/Skins/- ⊹ aia 3/soft-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/- ⊹ aia 3/soft-slidertick.wav b/Skins/- ⊹ aia 3/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/- ⊹ aia 3/soft-sliderwhistle.wav b/Skins/- ⊹ aia 3/soft-sliderwhistle.wav new file mode 100644 index 00000000..cfc0314c --- /dev/null +++ b/Skins/- ⊹ aia 3/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b80e132dd7adf41d45f7e21352dc3420599474382dc87a3b1772f603ce32a81 +size 67256 diff --git a/Skins/- ⊹ aia 3/songselect-bottom.png b/Skins/- ⊹ aia 3/songselect-bottom.png new file mode 100644 index 00000000..e07b7878 --- /dev/null +++ b/Skins/- ⊹ aia 3/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d4e6d6587728d1727cf4c0c41cd03aaf2049b7dc719c2e22591b3dab04df11 +size 3104 diff --git a/Skins/- ⊹ aia 3/songselect-bottom@2x.png b/Skins/- ⊹ aia 3/songselect-bottom@2x.png new file mode 100644 index 00000000..6d0ed78d --- /dev/null +++ b/Skins/- ⊹ aia 3/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a9acf3afbf4ed86fb3b9627c3bd6a886d634a3f7f7cd426d097eba3d02f8cb +size 3598 diff --git a/Skins/- ⊹ aia 3/spinner-approachcircle.png b/Skins/- ⊹ aia 3/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/- ⊹ aia 3/spinner-background.png b/Skins/- ⊹ aia 3/spinner-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/spinner-bottom.png b/Skins/- ⊹ aia 3/spinner-bottom.png new file mode 100644 index 00000000..6804aa0d --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b506f9b2202e76c8ff060df170d4221243e2e137481759898dfbd64847338c9a +size 5456 diff --git a/Skins/- ⊹ aia 3/spinner-circle.png b/Skins/- ⊹ aia 3/spinner-circle.png new file mode 100644 index 00000000..5662bf01 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a04f938d4447d116eff8660a1d6099ecab1035e9796f28d6685ad8dd5d5f6c +size 13169 diff --git a/Skins/- ⊹ aia 3/spinner-clear.png b/Skins/- ⊹ aia 3/spinner-clear.png new file mode 100644 index 00000000..01097a68 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c6b7619a9165c6b1d7973a8706466289c332ab75ae2c19e1ea9d35041409ca +size 5226 diff --git a/Skins/- ⊹ aia 3/spinner-glow.png b/Skins/- ⊹ aia 3/spinner-glow.png new file mode 100644 index 00000000..27dfebe6 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beca027a9e8ccae72b4dde4be32b6fef240f1160778784d81a7445a2a62b451e +size 6797 diff --git a/Skins/- ⊹ aia 3/spinner-middle.png b/Skins/- ⊹ aia 3/spinner-middle.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 3/spinner-middle2.png b/Skins/- ⊹ aia 3/spinner-middle2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 3/spinner-middle2@2x.png b/Skins/- ⊹ aia 3/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 3/spinner-osu.png b/Skins/- ⊹ aia 3/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/spinner-spin.png b/Skins/- ⊹ aia 3/spinner-spin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/spinner-top.png b/Skins/- ⊹ aia 3/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/- ⊹ aia 3/spinnerbonus.wav b/Skins/- ⊹ aia 3/spinnerbonus.wav new file mode 100644 index 00000000..6e901ec0 --- /dev/null +++ b/Skins/- ⊹ aia 3/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea3774c20fb4a84c33ab6e08b7db0042e2494173e26ca210ec6171c20da9c4 +size 178600 diff --git a/Skins/- ⊹ aia 3/spinnerspin.wav b/Skins/- ⊹ aia 3/spinnerspin.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/- ⊹ aia 3/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/- ⊹ aia 3/star2.png b/Skins/- ⊹ aia 3/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/triangle.png b/Skins/- ⊹ aia 3/triangle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/- ⊹ aia 3/triangle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/- ⊹ aia 3/welcome.wav b/Skins/- ⊹ aia 3/welcome.wav new file mode 100644 index 00000000..daf2b4a6 --- /dev/null +++ b/Skins/- ⊹ aia 3/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ccda7c2298bd87ff8e5e4d17c6651e8c7af707a1030bfecd753871e3345e3e +size 242400 diff --git a/Skins/- ⊹ aia 3/whoosh.wav b/Skins/- ⊹ aia 3/whoosh.wav new file mode 100644 index 00000000..9c7d6314 --- /dev/null +++ b/Skins/- ⊹ aia 3/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85b2d6a3b96fd189a16b6198b05c261eb9ce60f1fb419cda96b8ad15c779d34 +size 44546 diff --git a/Skins/--/Thumbs.db b/Skins/--/Thumbs.db new file mode 100644 index 00000000..387662c2 --- /dev/null +++ b/Skins/--/Thumbs.db @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d79cf20582a0d3b12eda1e2355380080ddfe6c4f1877177ac1f5be01259771 +size 9216 diff --git a/Skins/--/applause.wav b/Skins/--/applause.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/--/applause.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/--/approachcircle.png b/Skins/--/approachcircle.png new file mode 100644 index 00000000..1560273c --- /dev/null +++ b/Skins/--/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61185f7ae6095fc7e79501981948a4ce254f998b5c416203098afbd66a9d5cb +size 8741 diff --git a/Skins/--/button-left.png b/Skins/--/button-left.png new file mode 100644 index 00000000..1888b66c --- /dev/null +++ b/Skins/--/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb3d532ec5ebafc879a921e1c51c6b017ce4979b171da1db4072ec56e26bb10 +size 3206 diff --git a/Skins/--/button-middle.png b/Skins/--/button-middle.png new file mode 100644 index 00000000..902f409e --- /dev/null +++ b/Skins/--/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08267317da1b1e888727c3225a69c56a0d7fd5e79528473a6d5da26c7d8cdf2c +size 3035 diff --git a/Skins/--/button-right.png b/Skins/--/button-right.png new file mode 100644 index 00000000..030e892b --- /dev/null +++ b/Skins/--/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21bc819b19961a149047578b8b8c8f806ab43eb09f98514c5a8e12da29de5997 +size 3233 diff --git a/Skins/--/combo-0.png b/Skins/--/combo-0.png new file mode 100644 index 00000000..1101fee6 --- /dev/null +++ b/Skins/--/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3614841ba5d39d840e8974262fb8d6836b9d13d6ca79d15ea7243ed56ed58426 +size 429 diff --git a/Skins/--/combo-1.png b/Skins/--/combo-1.png new file mode 100644 index 00000000..c10de4f3 --- /dev/null +++ b/Skins/--/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32433cf92bc4aeb87d8b9160e585dce49d3c6358d1e4a5ecf201878b854fdd92 +size 257 diff --git a/Skins/--/combo-2.png b/Skins/--/combo-2.png new file mode 100644 index 00000000..a9680ad7 --- /dev/null +++ b/Skins/--/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ccb89753c8118f2758730598c8207770bf7e7e4c04bd488d5a5533f1538634 +size 525 diff --git a/Skins/--/combo-3.png b/Skins/--/combo-3.png new file mode 100644 index 00000000..1152a613 --- /dev/null +++ b/Skins/--/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e202621db272e57e9e71ca8e4c388680ba1c7b5afff1920d24160c55bb4827d1 +size 487 diff --git a/Skins/--/combo-4.png b/Skins/--/combo-4.png new file mode 100644 index 00000000..e5bc122b --- /dev/null +++ b/Skins/--/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4cc5ca98d272249838848ed7111808c6b95a72b3cfd83c2e1623dda0f50469c +size 451 diff --git a/Skins/--/combo-5.png b/Skins/--/combo-5.png new file mode 100644 index 00000000..e4aef82a --- /dev/null +++ b/Skins/--/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f7a9c9033a742f7fb8614b46d56f897cd1efe8037f0e94acd4796c5b62798c +size 519 diff --git a/Skins/--/combo-6.png b/Skins/--/combo-6.png new file mode 100644 index 00000000..af37b474 --- /dev/null +++ b/Skins/--/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702e971c12cc1ea4ab0e8f04e4d860c80019f5611a2f7de9a749b8216602771a +size 469 diff --git a/Skins/--/combo-7.png b/Skins/--/combo-7.png new file mode 100644 index 00000000..3983b0e5 --- /dev/null +++ b/Skins/--/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee2b82d72dc74f7cab6036f76cbcc1a8f661d0fa7c3999664f149d4b5a1684a +size 334 diff --git a/Skins/--/combo-8.png b/Skins/--/combo-8.png new file mode 100644 index 00000000..c6fdedb5 --- /dev/null +++ b/Skins/--/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96ccbb19641ce62f54d881af4f83695926d5f895173b7f21744674f8f85c0229 +size 519 diff --git a/Skins/--/combo-9.png b/Skins/--/combo-9.png new file mode 100644 index 00000000..1d8667f2 --- /dev/null +++ b/Skins/--/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc4fa6c52e92be6ddf31b2a1cadbf89a4576a4f2bd7f04b9f63271fb90bc667 +size 461 diff --git a/Skins/--/combo-x.png b/Skins/--/combo-x.png new file mode 100644 index 00000000..866ce570 --- /dev/null +++ b/Skins/--/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337900c5193acde055f7d77530d1673564639a6bbe3f5ff45b7b1736f615cfb9 +size 502 diff --git a/Skins/--/combobreak.mp3 b/Skins/--/combobreak.mp3 new file mode 100644 index 00000000..d6ab1f10 --- /dev/null +++ b/Skins/--/combobreak.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eed722df7def25e09fff243bff8e6ab5854071067166c739b91fbc0380ee889 +size 10896 diff --git a/Skins/--/comboburst.png b/Skins/--/comboburst.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/--/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/--/count1.png b/Skins/--/count1.png new file mode 100644 index 00000000..2aa2e0ae --- /dev/null +++ b/Skins/--/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23feea7fd9bd5af96d3c5bfe6afb56dce8d09aa683b5c149ccfa359d8e08599e +size 3330 diff --git a/Skins/--/count1s.wav b/Skins/--/count1s.wav new file mode 100644 index 00000000..3cf0305d --- /dev/null +++ b/Skins/--/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f58e393817058cde0036a5b5bd33485572c21633511570aa12ee9f5b50a8fd0f +size 41970 diff --git a/Skins/--/count2.png b/Skins/--/count2.png new file mode 100644 index 00000000..d69411fe --- /dev/null +++ b/Skins/--/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d359095fd50d208e874bcbabf9eb1a5e5d718d4325c0810d8baa859f38e815fc +size 3444 diff --git a/Skins/--/count2s .wav b/Skins/--/count2s .wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/--/count2s .wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/--/count2s.wav b/Skins/--/count2s.wav new file mode 100644 index 00000000..f7960801 --- /dev/null +++ b/Skins/--/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6948b88cb4374d0bd0fbdc1432c995adac3a87cc10d26f51f21ead01a05bdd70 +size 38000 diff --git a/Skins/--/count3.png b/Skins/--/count3.png new file mode 100644 index 00000000..1303af31 --- /dev/null +++ b/Skins/--/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3cd315bbb750d77583310d02fd3159596c80b4d8530e480374a375b4ad4d690 +size 3460 diff --git a/Skins/--/count3s.wav b/Skins/--/count3s.wav new file mode 100644 index 00000000..8e227037 --- /dev/null +++ b/Skins/--/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92cbd8a026d1850c0c874cea90ed4d0af856061b87e05c0788ccfcf64ae8468a +size 40666 diff --git a/Skins/--/cursor-smoke.png b/Skins/--/cursor-smoke.png new file mode 100644 index 00000000..40db0c71 --- /dev/null +++ b/Skins/--/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74071b1017e4eafdaa3ae1359d00e6a4b5da164d258ac0845c5a6182bc57c5b5 +size 1430 diff --git a/Skins/--/cursor-smoke@2x.png b/Skins/--/cursor-smoke@2x.png new file mode 100644 index 00000000..bc58cbf3 --- /dev/null +++ b/Skins/--/cursor-smoke@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7015983e65fa0ced7080a727b6c2278a9ff70272ca0719fbe184ca78505ed1ea +size 18745 diff --git a/Skins/--/cursor.png b/Skins/--/cursor.png new file mode 100644 index 00000000..0656f348 --- /dev/null +++ b/Skins/--/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640ff2e2a6c517c3618af60082f6e245c9ff24027941fa5b3896c4341609fa2b +size 5742 diff --git a/Skins/--/cursortrail.png b/Skins/--/cursortrail.png new file mode 100644 index 00000000..0f00980a --- /dev/null +++ b/Skins/--/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e1a807ac6bd43b0c9cf64f9c6da0e56b6e86f757908da41c3a1115c47ef9c1 +size 1666 diff --git a/Skins/--/default-0.png b/Skins/--/default-0.png new file mode 100644 index 00000000..95607db5 --- /dev/null +++ b/Skins/--/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:947835850fd4bc7da7ccf92f5aad629a83a30506622818a8acd04ab6455eb8e4 +size 20296 diff --git a/Skins/--/default-1.png b/Skins/--/default-1.png new file mode 100644 index 00000000..2dbc1e8b --- /dev/null +++ b/Skins/--/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4348c500a7a5c99b33f752477c4b0e8b7f32f1e6c0497733a8ae5ef00eef302b +size 45229 diff --git a/Skins/--/default-2.png b/Skins/--/default-2.png new file mode 100644 index 00000000..e93cb68f --- /dev/null +++ b/Skins/--/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772cbb9ff483e68cd112ef25312ff9b99dcf9ec99f4a669097c0d559f0fd4293 +size 48796 diff --git a/Skins/--/default-3.png b/Skins/--/default-3.png new file mode 100644 index 00000000..56310888 --- /dev/null +++ b/Skins/--/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6f283b7172bbf03c02db75b1db0afbba04a8b0f34c0b4a0fd99563b5cef6c92 +size 49001 diff --git a/Skins/--/default-4.png b/Skins/--/default-4.png new file mode 100644 index 00000000..b2432008 --- /dev/null +++ b/Skins/--/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4225fd20017c588c4fcdd701ec3ef8e00f7ce389c14efc2b3946afdba16dcf +size 47945 diff --git a/Skins/--/default-5.png b/Skins/--/default-5.png new file mode 100644 index 00000000..f19e7781 --- /dev/null +++ b/Skins/--/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b839c5c7d8891173fa0445a2bff5af835048cd94b887c635c078236c10fc8be +size 48550 diff --git a/Skins/--/default-6.png b/Skins/--/default-6.png new file mode 100644 index 00000000..c34f699c --- /dev/null +++ b/Skins/--/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db8f4923a19b2f3af66f2a70e1384212936607dd3b34ed6b8dea710c325e2b8 +size 49218 diff --git a/Skins/--/default-7.png b/Skins/--/default-7.png new file mode 100644 index 00000000..737170cb --- /dev/null +++ b/Skins/--/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf3ad8fc6861ec0384c67c93027969b723c259f6d56eb1821166f0b8a0b5569 +size 48064 diff --git a/Skins/--/default-8.png b/Skins/--/default-8.png new file mode 100644 index 00000000..23091283 --- /dev/null +++ b/Skins/--/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28481a23849a4fe23d695f8d66ad79355786473b323222dd8adb2fdbb2f4bcaf +size 49623 diff --git a/Skins/--/default-9.png b/Skins/--/default-9.png new file mode 100644 index 00000000..fbe3d6e1 --- /dev/null +++ b/Skins/--/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfac75d997736240ff3fae4af95c663a6ca4dff5c2c3d6c8b323c12ca2356213 +size 49277 diff --git a/Skins/--/drum-hitclap.wav b/Skins/--/drum-hitclap.wav new file mode 100644 index 00000000..44db7324 --- /dev/null +++ b/Skins/--/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6f08efde686ab3613bdfacc31148253e77864e715ddf18cc6f7030d5d10c4f +size 18220 diff --git a/Skins/--/drum-hitfinish.wav b/Skins/--/drum-hitfinish.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/--/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/--/drum-hitnormal.wav b/Skins/--/drum-hitnormal.wav new file mode 100644 index 00000000..44db7324 --- /dev/null +++ b/Skins/--/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6f08efde686ab3613bdfacc31148253e77864e715ddf18cc6f7030d5d10c4f +size 18220 diff --git a/Skins/--/drum-hitwhistle.wav b/Skins/--/drum-hitwhistle.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/--/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/--/drum-sliderslide.wav b/Skins/--/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/--/drum-slidertick.wav b/Skins/--/drum-slidertick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/--/drum-sliderwhistle.wav b/Skins/--/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/--/fail-background.png b/Skins/--/fail-background.png new file mode 100644 index 00000000..76d873bd --- /dev/null +++ b/Skins/--/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90a1db866cb5f9bf9207adb4ecfa77e07f40939365ccb7833f6c0c7d5658dde8 +size 16712 diff --git a/Skins/--/failsound.mp3 b/Skins/--/failsound.mp3 new file mode 100644 index 00000000..04d4e477 --- /dev/null +++ b/Skins/--/failsound.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81d51bffd0bdc61a383d97aedfdc6aacfe72ea0cf2cc6ff8162ed4d5cd581251 +size 32784 diff --git a/Skins/--/followpoint-0.png b/Skins/--/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/followpoint-1.png b/Skins/--/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/followpoint-2.png b/Skins/--/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/followpoint-3.png b/Skins/--/followpoint-3.png new file mode 100644 index 00000000..6421dc02 --- /dev/null +++ b/Skins/--/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241b0d5b2f0a2e4f6af5dd4fca171f5b9d874a942664e307dcf3778d0c3a4d6b +size 17909 diff --git a/Skins/--/followpoint-4.png b/Skins/--/followpoint-4.png new file mode 100644 index 00000000..10dd4ff1 --- /dev/null +++ b/Skins/--/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30152211cc1ebc99932c2927d63cb72ac04bc832409f13768a61196000f27da0 +size 17909 diff --git a/Skins/--/followpoint-5.png b/Skins/--/followpoint-5.png new file mode 100644 index 00000000..b8c89d5f --- /dev/null +++ b/Skins/--/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d952307f09be2a5f9d8be21caab701897175e29af9ca08a72869be1ae269d9a +size 17909 diff --git a/Skins/--/followpoint-6.png b/Skins/--/followpoint-6.png new file mode 100644 index 00000000..2f409621 --- /dev/null +++ b/Skins/--/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e17916c331592fd3960853cfdb1cca7a5494abbc995349590da3411f07c7e32 +size 17909 diff --git a/Skins/--/followpoint-7.png b/Skins/--/followpoint-7.png new file mode 100644 index 00000000..42daec62 --- /dev/null +++ b/Skins/--/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b2120441441118bd25ae3c92879eba728141ae4db0d08240ef167ad98b6cd8 +size 17909 diff --git a/Skins/--/followpoint-8.png b/Skins/--/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/followpoint-9.png b/Skins/--/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/followpoint.png b/Skins/--/followpoint.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/go.png b/Skins/--/go.png new file mode 100644 index 00000000..8212a476 --- /dev/null +++ b/Skins/--/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b558d2995746d795e4e1358cd32c897609e9bb64548dcd108c326599bcfbc24b +size 4258 diff --git a/Skins/--/gos.wav b/Skins/--/gos.wav new file mode 100644 index 00000000..20ea557a --- /dev/null +++ b/Skins/--/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9552f2d9a913436d1845567224f43f36fd34fd69888b75a3a6424fb11824f9 +size 35140 diff --git a/Skins/--/hit0-0.png b/Skins/--/hit0-0.png new file mode 100644 index 00000000..a2527fdf --- /dev/null +++ b/Skins/--/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cee1a053b18511d1106d3e2e0265ee368b8e097d60b7413cb5160116b1d276 +size 5681 diff --git a/Skins/--/hit0-0@2x.png b/Skins/--/hit0-0@2x.png new file mode 100644 index 00000000..b2812682 --- /dev/null +++ b/Skins/--/hit0-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5217183000e6156336895bdc171c5e45077f9fe23a0ea1e1b47dc489e3c0c3 +size 6868 diff --git a/Skins/--/hit0-1.png b/Skins/--/hit0-1.png new file mode 100644 index 00000000..a2527fdf --- /dev/null +++ b/Skins/--/hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cee1a053b18511d1106d3e2e0265ee368b8e097d60b7413cb5160116b1d276 +size 5681 diff --git a/Skins/--/hit0-2.png b/Skins/--/hit0-2.png new file mode 100644 index 00000000..a2527fdf --- /dev/null +++ b/Skins/--/hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cee1a053b18511d1106d3e2e0265ee368b8e097d60b7413cb5160116b1d276 +size 5681 diff --git a/Skins/--/hit0-3.png b/Skins/--/hit0-3.png new file mode 100644 index 00000000..a2527fdf --- /dev/null +++ b/Skins/--/hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cee1a053b18511d1106d3e2e0265ee368b8e097d60b7413cb5160116b1d276 +size 5681 diff --git a/Skins/--/hit0-4.png b/Skins/--/hit0-4.png new file mode 100644 index 00000000..a2527fdf --- /dev/null +++ b/Skins/--/hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cee1a053b18511d1106d3e2e0265ee368b8e097d60b7413cb5160116b1d276 +size 5681 diff --git a/Skins/--/hit0-5.png b/Skins/--/hit0-5.png new file mode 100644 index 00000000..a2527fdf --- /dev/null +++ b/Skins/--/hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cee1a053b18511d1106d3e2e0265ee368b8e097d60b7413cb5160116b1d276 +size 5681 diff --git a/Skins/--/hit0-6.png b/Skins/--/hit0-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/hit0.png b/Skins/--/hit0.png new file mode 100644 index 00000000..a2527fdf --- /dev/null +++ b/Skins/--/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cee1a053b18511d1106d3e2e0265ee368b8e097d60b7413cb5160116b1d276 +size 5681 diff --git a/Skins/--/hit100-0.png b/Skins/--/hit100-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100-0@2x.png b/Skins/--/hit100-0@2x.png new file mode 100644 index 00000000..ff7c8d07 --- /dev/null +++ b/Skins/--/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6510013a6b14a44c4d636ae5e93a9523bd691729f1a72ec30716bcf6f1e81b40 +size 8605 diff --git a/Skins/--/hit100-1.png b/Skins/--/hit100-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100-2.png b/Skins/--/hit100-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100-3.png b/Skins/--/hit100-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100-4.png b/Skins/--/hit100-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100-5.png b/Skins/--/hit100-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/--/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/--/hit100-6.png b/Skins/--/hit100-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/--/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/--/hit100-7.png b/Skins/--/hit100-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/--/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/--/hit100-8.png b/Skins/--/hit100-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/--/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/--/hit100-9.png b/Skins/--/hit100-9.png new file mode 100644 index 00000000..e348d160 --- /dev/null +++ b/Skins/--/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337b44fd7a2c886bcda8331664ae474423c9fbb866dabacb74379dbff9d130e1 +size 3086 diff --git a/Skins/--/hit100.png b/Skins/--/hit100.png new file mode 100644 index 00000000..ec49b006 --- /dev/null +++ b/Skins/--/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fff41b38dc2212ae78a442c0056d3328e5b9df4eb9e1b7cd8d0d3bce9121ae8 +size 31956 diff --git a/Skins/--/hit100@2x.png b/Skins/--/hit100@2x.png new file mode 100644 index 00000000..bba7b227 --- /dev/null +++ b/Skins/--/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a9da8e394a24d18c2fa3d043f9c50302fae48530f2d011070bb6c8190f3c94b +size 8596 diff --git a/Skins/--/hit100g-0@2x.png b/Skins/--/hit100g-0@2x.png new file mode 100644 index 00000000..1a0f69e4 --- /dev/null +++ b/Skins/--/hit100g-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69bfe040e0b173f4cbb89e0a6f49320fda610590fa2034f007abd1a3216ac7e6 +size 8605 diff --git a/Skins/--/hit100k-0.png b/Skins/--/hit100k-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100k-0@2x.png b/Skins/--/hit100k-0@2x.png new file mode 100644 index 00000000..d58fc41e --- /dev/null +++ b/Skins/--/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e75e2af2f59f7c9cb984178455dae57182534a23fa583cc0afb0cdecb2287d0 +size 8605 diff --git a/Skins/--/hit100k-1.png b/Skins/--/hit100k-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100k-2.png b/Skins/--/hit100k-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100k-3.png b/Skins/--/hit100k-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100k-4.png b/Skins/--/hit100k-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/--/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/--/hit100k-5.png b/Skins/--/hit100k-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/--/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/--/hit100k-6.png b/Skins/--/hit100k-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/--/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/--/hit100k-7.png b/Skins/--/hit100k-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/--/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/--/hit100k-8.png b/Skins/--/hit100k-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/--/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/--/hit100k-9.png b/Skins/--/hit100k-9.png new file mode 100644 index 00000000..e348d160 --- /dev/null +++ b/Skins/--/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337b44fd7a2c886bcda8331664ae474423c9fbb866dabacb74379dbff9d130e1 +size 3086 diff --git a/Skins/--/hit100k.png b/Skins/--/hit100k.png new file mode 100644 index 00000000..52523f52 --- /dev/null +++ b/Skins/--/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7298f3e3f4feccb4e98892533e6969040368b0d5075961596c027b1a8c3e1e +size 33322 diff --git a/Skins/--/hit100k@2x.png b/Skins/--/hit100k@2x.png new file mode 100644 index 00000000..f4cd829c --- /dev/null +++ b/Skins/--/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11991ed2bca9276d1e3765aafd2d4294c868a201267f78a11a2465d41c7d7d58 +size 8605 diff --git a/Skins/--/hit300-0.png b/Skins/--/hit300-0.png new file mode 100644 index 00000000..e2b93dc2 --- /dev/null +++ b/Skins/--/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7a60fc267b1154c05a62f472daca86d42e7b145c09b674db604569fa303d9c +size 2792 diff --git a/Skins/--/hit300-1.png b/Skins/--/hit300-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/hit300.png b/Skins/--/hit300.png new file mode 100644 index 00000000..be610688 --- /dev/null +++ b/Skins/--/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e2d24135101bff9777a8f5f52f1b4866273161aa128518e097fb4234b730a1 +size 10220 diff --git a/Skins/--/hit300@2x.png b/Skins/--/hit300@2x.png new file mode 100644 index 00000000..be610688 --- /dev/null +++ b/Skins/--/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e2d24135101bff9777a8f5f52f1b4866273161aa128518e097fb4234b730a1 +size 10220 diff --git a/Skins/--/hit300g-0.png b/Skins/--/hit300g-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/hit300g-1.png b/Skins/--/hit300g-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/hit300g.png b/Skins/--/hit300g.png new file mode 100644 index 00000000..8a74f9a3 --- /dev/null +++ b/Skins/--/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28864315c02beb32eb3205ee52e9e08612af7d7e6c1f2b9d187bf97004aa1003 +size 39135 diff --git a/Skins/--/hit300g@2x.png b/Skins/--/hit300g@2x.png new file mode 100644 index 00000000..7347c6fd --- /dev/null +++ b/Skins/--/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62ba5a863340fa496babdfc6cf55a8edbd3e8adac5547a0a2e8662420a4e0d5 +size 10220 diff --git a/Skins/--/hit300k-0.png b/Skins/--/hit300k-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/hit300k-1.png b/Skins/--/hit300k-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/hit300k.png b/Skins/--/hit300k.png new file mode 100644 index 00000000..6da83340 --- /dev/null +++ b/Skins/--/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f1a97709b091b4aa475a89ccf23d76ea8662604e74781d46aac8397adc9d682 +size 9271 diff --git a/Skins/--/hit50-0.png b/Skins/--/hit50-0.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/--/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/--/hit50-0@2x.png b/Skins/--/hit50-0@2x.png new file mode 100644 index 00000000..d8f6efe8 --- /dev/null +++ b/Skins/--/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23bebbd6a19beb9c277f527f7666f506004a8b95693bffb97587504efc15479 +size 8545 diff --git a/Skins/--/hit50-1.png b/Skins/--/hit50-1.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/--/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/--/hit50-2.png b/Skins/--/hit50-2.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/--/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/--/hit50-3.png b/Skins/--/hit50-3.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/--/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/--/hit50-4.png b/Skins/--/hit50-4.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/--/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/--/hit50-5.png b/Skins/--/hit50-5.png new file mode 100644 index 00000000..20a02ca4 --- /dev/null +++ b/Skins/--/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c4a4dd32579364796cb6a07d967a70a104a87f218d2698a7742283e196b05f +size 4355 diff --git a/Skins/--/hit50-6.png b/Skins/--/hit50-6.png new file mode 100644 index 00000000..a2d49156 --- /dev/null +++ b/Skins/--/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aedd7127330e73764c01eba26b22425ddb1d7ae0eadf308eefc088244d4d6f9e +size 4291 diff --git a/Skins/--/hit50-7.png b/Skins/--/hit50-7.png new file mode 100644 index 00000000..af67a916 --- /dev/null +++ b/Skins/--/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49acfe7551db09fb0ac188424367cfc1b4a3b7bfff0e37bb2ea18fcac07a990 +size 4218 diff --git a/Skins/--/hit50-8.png b/Skins/--/hit50-8.png new file mode 100644 index 00000000..96590513 --- /dev/null +++ b/Skins/--/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9965e2df444e56b320169e51621143f39be211971bf5e79ade8e82217bbfbc71 +size 4061 diff --git a/Skins/--/hit50-9.png b/Skins/--/hit50-9.png new file mode 100644 index 00000000..e348d160 --- /dev/null +++ b/Skins/--/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337b44fd7a2c886bcda8331664ae474423c9fbb866dabacb74379dbff9d130e1 +size 3086 diff --git a/Skins/--/hit50.png b/Skins/--/hit50.png new file mode 100644 index 00000000..a6f94927 --- /dev/null +++ b/Skins/--/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc73d4d0c58b0eb4b9409638563502e6f29e1c13fde81295a6a3a2cf57dcf78f +size 30495 diff --git a/Skins/--/hit50@2x.png b/Skins/--/hit50@2x.png new file mode 100644 index 00000000..15cd3968 --- /dev/null +++ b/Skins/--/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620c118137f4e59873d9feb610b679d331b5374be4e9973ca1127de68349eda0 +size 8545 diff --git a/Skins/--/hit50k.png b/Skins/--/hit50k.png new file mode 100644 index 00000000..4e61a596 --- /dev/null +++ b/Skins/--/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe22426c0cb91924966d4ecf6ddf91c1c0ac710d7da1b988c9d0d7d4061b6784 +size 6619 diff --git a/Skins/--/hitcircle.png b/Skins/--/hitcircle.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/--/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/--/hitcircleoverlay.png b/Skins/--/hitcircleoverlay.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/--/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/--/hitcircleselect.png b/Skins/--/hitcircleselect.png new file mode 100644 index 00000000..d8271622 --- /dev/null +++ b/Skins/--/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8e03cd30f94d4afd3eaf219f1801bc783130e1b4566d2b4035103ac98b8e895 +size 6957 diff --git a/Skins/--/inputoverlay-background.png b/Skins/--/inputoverlay-background.png new file mode 100644 index 00000000..909131e2 --- /dev/null +++ b/Skins/--/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb2ffd98d2c37cebd1104a533d589e75b7175720dbf45efe79300bb65bb7c8c9 +size 35122 diff --git a/Skins/--/inputoverlay-key.png b/Skins/--/inputoverlay-key.png new file mode 100644 index 00000000..1319abab --- /dev/null +++ b/Skins/--/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ffd206b7216ed8ee8bfedb41a0a04efb140e29ad511be5a30a0046338ae392 +size 3670 diff --git a/Skins/--/match-confirm.wav b/Skins/--/match-confirm.wav new file mode 100644 index 00000000..71822eb6 --- /dev/null +++ b/Skins/--/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f591b088715c93908bcc77f6eadf1c41f1b7ef8e752bcf5c33b4fa689e38814c +size 153194 diff --git a/Skins/--/match-join.wav b/Skins/--/match-join.wav new file mode 100644 index 00000000..322ffda2 --- /dev/null +++ b/Skins/--/match-join.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a248ab0264d2cd8592d89cbf29b1bf6c14abe840b5642e3d3c7d671ab5b42e7a +size 147500 diff --git a/Skins/--/match-leave.wav b/Skins/--/match-leave.wav new file mode 100644 index 00000000..6c1d853e --- /dev/null +++ b/Skins/--/match-leave.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d20d2e6bc22c0cf400e18a67db8d7091f961a7b67b6f2a98421d67fd5d041d +size 128812 diff --git a/Skins/--/match-notready.wav b/Skins/--/match-notready.wav new file mode 100644 index 00000000..b36568a0 --- /dev/null +++ b/Skins/--/match-notready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9659079811a4736b3f96f015987b1d759d9d733a1b0bfe73400c594ddc462b0 +size 23054 diff --git a/Skins/--/menu-back.png b/Skins/--/menu-back.png new file mode 100644 index 00000000..449bc001 --- /dev/null +++ b/Skins/--/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b2a6c15e6ee471186a9e5976e7cf50a35bfc22574e291a7f73d6d9b20ea256 +size 31969 diff --git a/Skins/--/menu-snow.png b/Skins/--/menu-snow.png new file mode 100644 index 00000000..ba683bf9 --- /dev/null +++ b/Skins/--/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982da3c5b90a37dc42bfa66fd06ba29db54665c2ffdae9e1f66efea7b1012a5c +size 8082 diff --git a/Skins/--/menuback.wav b/Skins/--/menuback.wav new file mode 100644 index 00000000..1d93f8c3 --- /dev/null +++ b/Skins/--/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc356bc181a238d69a2933714a0cb77f7f8ca70e3860dc7fa1eec292b2f7a205 +size 132064 diff --git a/Skins/--/menuclick.wav b/Skins/--/menuclick.wav new file mode 100644 index 00000000..73eb6559 --- /dev/null +++ b/Skins/--/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3402b54bb933e2b1cbf4e33dcdd605e584c58bce90f51810a9fffeac4ecd49fe +size 9208 diff --git a/Skins/--/menuhit.wav b/Skins/--/menuhit.wav new file mode 100644 index 00000000..b93ca1c6 --- /dev/null +++ b/Skins/--/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29fac62a341c517f99428f961ad3e34d72d9ba0a4d87eb969078ae620310ea32 +size 64694 diff --git a/Skins/--/nightcore-clap.wav b/Skins/--/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/--/nightcore-finish.wav b/Skins/--/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/--/nightcore-hat.wav b/Skins/--/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/--/nightcore-kick.wav b/Skins/--/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/--/normal-hitclap.wav b/Skins/--/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/--/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/--/normal-hitclap2.wav b/Skins/--/normal-hitclap2.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/--/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/--/normal-hitfinish.wav b/Skins/--/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/--/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/--/normal-hitfinish2.wav b/Skins/--/normal-hitfinish2.wav new file mode 100644 index 00000000..ce87097b --- /dev/null +++ b/Skins/--/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f08f44fb21bf8b838f4a5e4d030464470c30ab8c5e8acab18e79f47f0263ea4 +size 291392 diff --git a/Skins/--/normal-hitnormal.wav b/Skins/--/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/--/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/--/normal-hitnormal1.wav b/Skins/--/normal-hitnormal1.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/--/normal-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/--/normal-hitnormal2.wav b/Skins/--/normal-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/--/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/--/normal-hitnormalh.wav b/Skins/--/normal-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/--/normal-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/--/normal-hitwhistle.wav b/Skins/--/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/--/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/--/normal-hitwhistle2.wav b/Skins/--/normal-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/--/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/--/normal-hitwistle.wav b/Skins/--/normal-hitwistle.wav new file mode 100644 index 00000000..7ca41433 --- /dev/null +++ b/Skins/--/normal-hitwistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f770d06b30853c8ed6b25464af6cf7b7f3f68c332dc8bcfa4ea23076f5445965 +size 13185 diff --git a/Skins/--/normal-sliderslide.wav b/Skins/--/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/normal-sliderslide2.wav b/Skins/--/normal-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/normal-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/normal-slidertick.wav b/Skins/--/normal-slidertick.wav new file mode 100644 index 00000000..79f13679 --- /dev/null +++ b/Skins/--/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd98c971c995213648f9b57f7ffbf2ac3655f98105019e8bbb47591c61d1771c +size 57608 diff --git a/Skins/--/normal-slidertick2.wav b/Skins/--/normal-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/normal-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/normal-sliderwhistle.wav b/Skins/--/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/normal-sliderwhistle2.wav b/Skins/--/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/pause-back.png b/Skins/--/pause-back.png new file mode 100644 index 00000000..75d26b2c --- /dev/null +++ b/Skins/--/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65832a30d984d24124b2711fa68cd8619e6fce2ca0f9175df9b7e8b5c84b607 +size 7114 diff --git a/Skins/--/pause-continue.png b/Skins/--/pause-continue.png new file mode 100644 index 00000000..c4d58774 --- /dev/null +++ b/Skins/--/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1867f883084b4066ce223f129ed96c8c984c634eb3db403d00b244f82bdbc692 +size 5461 diff --git a/Skins/--/pause-overlay.png b/Skins/--/pause-overlay.png new file mode 100644 index 00000000..69b80b8b --- /dev/null +++ b/Skins/--/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:821690b7a6022182f2ac03c8acdccb85b36df2c6e431ac681ecb68b013b0110e +size 59222 diff --git a/Skins/--/pause-replay.png b/Skins/--/pause-replay.png new file mode 100644 index 00000000..a1137ffa --- /dev/null +++ b/Skins/--/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0a2b29a0ce2cdb6d86543a0ef6fd01d011636357d34bebd14a2889513d6927 +size 7061 diff --git a/Skins/--/pause-retry.png b/Skins/--/pause-retry.png new file mode 100644 index 00000000..6c9d3218 --- /dev/null +++ b/Skins/--/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb30ac36989c4c4e6f4739a22cc60bc289e54f8652b3d7ec021188debd6d5548 +size 6852 diff --git a/Skins/--/play-skip-0.png b/Skins/--/play-skip-0.png new file mode 100644 index 00000000..7f4fea01 --- /dev/null +++ b/Skins/--/play-skip-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53c8b4cf7bb8d02b0cad60b7dc0104b746c5b011670ac5e96207d642689dda7 +size 65605 diff --git a/Skins/--/play-skip-1.png b/Skins/--/play-skip-1.png new file mode 100644 index 00000000..f4d21afe --- /dev/null +++ b/Skins/--/play-skip-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b422366a6e409a41d44008975af48a2947f4dde5e4565e6bb4cd550b88d0b2d5 +size 62461 diff --git a/Skins/--/play-skip-2.png b/Skins/--/play-skip-2.png new file mode 100644 index 00000000..fbc2e134 --- /dev/null +++ b/Skins/--/play-skip-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbc2dbc391d78ef602a80804eaf2bb73572d85bc59a57f40e3d9a2e723fdbe8 +size 62315 diff --git a/Skins/--/play-skip-3.png b/Skins/--/play-skip-3.png new file mode 100644 index 00000000..bc1ad885 --- /dev/null +++ b/Skins/--/play-skip-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27bd41ec87298c7df3fef372c948646dd9fc72382594229a3fdd3e42dc5503cc +size 61312 diff --git a/Skins/--/play-skip-4.png b/Skins/--/play-skip-4.png new file mode 100644 index 00000000..8e31e638 --- /dev/null +++ b/Skins/--/play-skip-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c922807142d30d3a2aa1e2b9056d3555dfada9125a08e5fd05b06eb0e243e91 +size 62401 diff --git a/Skins/--/play-skip-5.png b/Skins/--/play-skip-5.png new file mode 100644 index 00000000..e6fc5ed0 --- /dev/null +++ b/Skins/--/play-skip-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22897e433bef5a393d426294464e6577375517f0bd698b77ecc59dc30853051 +size 62670 diff --git a/Skins/--/play-skip-6.png b/Skins/--/play-skip-6.png new file mode 100644 index 00000000..83ca030e --- /dev/null +++ b/Skins/--/play-skip-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f46e3a3142aaa085ba1e309fc35e7e8744a81b1086ec2aa76e07f2770ca761 +size 62634 diff --git a/Skins/--/play-skip-7.png b/Skins/--/play-skip-7.png new file mode 100644 index 00000000..c00f8af4 --- /dev/null +++ b/Skins/--/play-skip-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fbcb47d9e20aeb3aba8d9addbc4d3ceaadb001885a67fbeb9be0df18204e3f4 +size 64347 diff --git a/Skins/--/play-skip-8.png b/Skins/--/play-skip-8.png new file mode 100644 index 00000000..a3ac2804 --- /dev/null +++ b/Skins/--/play-skip-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1ceab26b5ce64efcc14fcdceee2da082d65dde638d37bd6e47772c6afe3fe9 +size 63637 diff --git a/Skins/--/play-skip-9.png b/Skins/--/play-skip-9.png new file mode 100644 index 00000000..4fb65586 --- /dev/null +++ b/Skins/--/play-skip-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e914fc906231b546a5f6caa8b3161372f9d039e9ee740a6fe8d296499faebc +size 63259 diff --git a/Skins/--/play-unranked.png b/Skins/--/play-unranked.png new file mode 100644 index 00000000..364b66a1 --- /dev/null +++ b/Skins/--/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9cd35dee32676cb844ac1920a360859e0e5cadd8ae545ce093e0282ff5d638 +size 5663 diff --git a/Skins/--/play-warningarrow.png b/Skins/--/play-warningarrow.png new file mode 100644 index 00000000..51dfbae2 --- /dev/null +++ b/Skins/--/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc937d17ecadba20e9b1de9dd22eb5698ee99b5d90978b6124f08efc298cfa2c +size 3328 diff --git a/Skins/--/playfield.png b/Skins/--/playfield.png new file mode 100644 index 00000000..7de50d4e --- /dev/null +++ b/Skins/--/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3318510627a67e5d2d1f0e95ce4eda4faf51622c92bfefd27cc7492b6c0560f +size 1112190 diff --git a/Skins/--/ranking-A-small.png b/Skins/--/ranking-A-small.png new file mode 100644 index 00000000..f9c359df --- /dev/null +++ b/Skins/--/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6979b5338f2ccf47a8e06b510f051623fa425431d64998731075e4add332621e +size 2199 diff --git a/Skins/--/ranking-A.png b/Skins/--/ranking-A.png new file mode 100644 index 00000000..fd3c8ac5 --- /dev/null +++ b/Skins/--/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ef416c7dfd99cc42aaac9f40f69cfabbf385ecb8647198e2d9e26506fff7dc +size 103299 diff --git a/Skins/--/ranking-B-small.png b/Skins/--/ranking-B-small.png new file mode 100644 index 00000000..a95366e6 --- /dev/null +++ b/Skins/--/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf196721fa6982fd6241e6b3fa741f5ecf81ad0cfdee4e0a916045c5486f13ea +size 2826 diff --git a/Skins/--/ranking-B.png b/Skins/--/ranking-B.png new file mode 100644 index 00000000..c1308dcb --- /dev/null +++ b/Skins/--/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a30cc33c41195f54a3e33e86866bcc64259a0523e3c9fb89579969a42d5fdf83 +size 93845 diff --git a/Skins/--/ranking-C-small.png b/Skins/--/ranking-C-small.png new file mode 100644 index 00000000..792c14b3 --- /dev/null +++ b/Skins/--/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5137b0cff16ebe7c4e9d3ef833c1206e73877f68fecb4612a3a344caf5a1e20b +size 1977 diff --git a/Skins/--/ranking-C.png b/Skins/--/ranking-C.png new file mode 100644 index 00000000..4058da12 --- /dev/null +++ b/Skins/--/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b6e6f63f1ec73132403c3e652c3086a2889ea449347904fe4ed7b23cb61967 +size 103003 diff --git a/Skins/--/ranking-D-small.png b/Skins/--/ranking-D-small.png new file mode 100644 index 00000000..f558c4fa --- /dev/null +++ b/Skins/--/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e309e39984c521ffe3ca56947dd46acd6eefe10e4f99705d3b1222d95d28d945 +size 2093 diff --git a/Skins/--/ranking-D.png b/Skins/--/ranking-D.png new file mode 100644 index 00000000..328705a6 --- /dev/null +++ b/Skins/--/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834f96808675d0a2e8b94a003b893486bca5515aa8a9affb8f61e7d7fa50a4f4 +size 91863 diff --git a/Skins/--/ranking-S-small.png b/Skins/--/ranking-S-small.png new file mode 100644 index 00000000..2df2a751 --- /dev/null +++ b/Skins/--/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13686357cd761993e762186700575a06e6280c65defa97724e1b844bde738b18 +size 2192 diff --git a/Skins/--/ranking-S.png b/Skins/--/ranking-S.png new file mode 100644 index 00000000..feda560c --- /dev/null +++ b/Skins/--/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64f97c08c764cfadf355eeffb9582c8d05592baeadc461af9a28d592333fe9c +size 104849 diff --git a/Skins/--/ranking-SH-small.png b/Skins/--/ranking-SH-small.png new file mode 100644 index 00000000..00670886 --- /dev/null +++ b/Skins/--/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377d643be84e27e71033b9e4fd5aaf1c9554e1b5c908b6abe2f207c2ab7bdc3e +size 2202 diff --git a/Skins/--/ranking-SH.png b/Skins/--/ranking-SH.png new file mode 100644 index 00000000..d9d5d8d0 --- /dev/null +++ b/Skins/--/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7ac4e08ef3258c4cf54b02397fd9689db9e2a7b099119a7f14670007437541 +size 112649 diff --git a/Skins/--/ranking-X-small.png b/Skins/--/ranking-X-small.png new file mode 100644 index 00000000..fe891f33 --- /dev/null +++ b/Skins/--/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ec896f239a442c77bf5b4aae7daa7ec69bd8bdc9082024e207a3b02994466f +size 4168 diff --git a/Skins/--/ranking-X.png b/Skins/--/ranking-X.png new file mode 100644 index 00000000..0df2ae1d --- /dev/null +++ b/Skins/--/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d4a76832affb5249c3257335e6a67491c58abb22ed68080a4f891cf3bc5d58 +size 112432 diff --git a/Skins/--/ranking-XH-small.png b/Skins/--/ranking-XH-small.png new file mode 100644 index 00000000..ea32edc7 --- /dev/null +++ b/Skins/--/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b184cfa4dffbac0f9966db7d9d09a1cce12f9d4a833a7ee3dcf26d1882adc75 +size 3828 diff --git a/Skins/--/ranking-XH.png b/Skins/--/ranking-XH.png new file mode 100644 index 00000000..c4230c0d --- /dev/null +++ b/Skins/--/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94da1aafc583dbe73c120f485a5558a96b0cdfb97149e5e8306fea49e7e51a9d +size 120171 diff --git a/Skins/--/ranking-accuracy.png b/Skins/--/ranking-accuracy.png new file mode 100644 index 00000000..8c5ce784 --- /dev/null +++ b/Skins/--/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da07b6fba2838b430b53fd710478d4800bd7ab5bee1ddd41a798f29f30a62a7c +size 4327 diff --git a/Skins/--/ranking-graph.png b/Skins/--/ranking-graph.png new file mode 100644 index 00000000..76bce038 --- /dev/null +++ b/Skins/--/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806776547b3c5b016dfbf30d3b69c6f1781d8da56ad1e5b216a4b684a484eecc +size 3062 diff --git a/Skins/--/ranking-maxcombo.png b/Skins/--/ranking-maxcombo.png new file mode 100644 index 00000000..fa76834b --- /dev/null +++ b/Skins/--/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9352acfab73e06cae3c344b9267ffcb4fa2b014da49119994601ca51fa2d8e5a +size 3819 diff --git a/Skins/--/ranking-panel.png b/Skins/--/ranking-panel.png new file mode 100644 index 00000000..04a1faf7 --- /dev/null +++ b/Skins/--/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00844b8bed555ed22d92bc3e08c345d27a968c9f8e0ff57bc21c756423eead08 +size 9405 diff --git a/Skins/--/ranking-perfect.png b/Skins/--/ranking-perfect.png new file mode 100644 index 00000000..9df95f38 --- /dev/null +++ b/Skins/--/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef51968a7951a213488de4f67f988c69899a8fce6a5ebd69ad05a620bdb6418 +size 17410 diff --git a/Skins/--/ranking-title.png b/Skins/--/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/--/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/--/ready.png b/Skins/--/ready.png new file mode 100644 index 00000000..31519bcb --- /dev/null +++ b/Skins/--/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a07074513e4adaf9642a1b4c228b7fbbf24cbd3b97a6fb3c60b20d0ac3e5c14 +size 21047 diff --git a/Skins/--/ready.wav b/Skins/--/ready.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/--/ready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/--/readys.wav b/Skins/--/readys.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/--/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/--/reversearrow.png b/Skins/--/reversearrow.png new file mode 100644 index 00000000..e28c8a08 --- /dev/null +++ b/Skins/--/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0beba5e48c03f407edab8c2617beeff27a0b450c3358a9a82993ca4dfe5b4beb +size 8998 diff --git a/Skins/--/score-0.png b/Skins/--/score-0.png new file mode 100644 index 00000000..246e54d7 --- /dev/null +++ b/Skins/--/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:debd96217b35ffe21494413790e470ab11c330fcf16fe2e9f471671663b8a06c +size 841 diff --git a/Skins/--/score-0@2x.png b/Skins/--/score-0@2x.png new file mode 100644 index 00000000..d4f6a7d7 --- /dev/null +++ b/Skins/--/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f5b4cc6a6f346c27ecac0f469ad0c5a8f6234c5b6c93394f9aed6a2d57c9d0 +size 1333 diff --git a/Skins/--/score-1.png b/Skins/--/score-1.png new file mode 100644 index 00000000..4bbd6df0 --- /dev/null +++ b/Skins/--/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fda64bc08fd3d606c19bb816b5af7e930313656909191f3b54c9a08c683bd53 +size 531 diff --git a/Skins/--/score-1@2x.png b/Skins/--/score-1@2x.png new file mode 100644 index 00000000..f35719a8 --- /dev/null +++ b/Skins/--/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298d36d0b74ee65a4786d4ed4f958d04c5deeb98de147d9d5db7f0ff9559c53a +size 605 diff --git a/Skins/--/score-2.png b/Skins/--/score-2.png new file mode 100644 index 00000000..1b617fd6 --- /dev/null +++ b/Skins/--/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b524d4fc8db3794415cafaa9a5e01ec7311e7ecb9fae3d07a7b4e62fa5ed827 +size 854 diff --git a/Skins/--/score-2@2x.png b/Skins/--/score-2@2x.png new file mode 100644 index 00000000..2d64d180 --- /dev/null +++ b/Skins/--/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b2f08db7d886c1390fa0c04dd33fca574f759ec7231eb0a86c3844f65f0289 +size 1350 diff --git a/Skins/--/score-3.png b/Skins/--/score-3.png new file mode 100644 index 00000000..1735277b --- /dev/null +++ b/Skins/--/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb897c38e6619f169b752b9d32c618044ac2ec1d3fff6a150358ef805928701 +size 935 diff --git a/Skins/--/score-3@2x.png b/Skins/--/score-3@2x.png new file mode 100644 index 00000000..7cba6674 --- /dev/null +++ b/Skins/--/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f486d2e65c9af5e65733bf075a5f67eb7bf33d187109c8785ae32b3050ecd8c1 +size 1495 diff --git a/Skins/--/score-4.png b/Skins/--/score-4.png new file mode 100644 index 00000000..67d9c00a --- /dev/null +++ b/Skins/--/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbbf39f87b9964dfb3a2153f3d9ac016ccd63c8154ef4e8d0b8ba3e7921e6ae9 +size 803 diff --git a/Skins/--/score-4@2x.png b/Skins/--/score-4@2x.png new file mode 100644 index 00000000..6ef331dd --- /dev/null +++ b/Skins/--/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2063960529061715953e5549202ceb10ac4a1277e357ce750b9597c927a8bb39 +size 1080 diff --git a/Skins/--/score-5.png b/Skins/--/score-5.png new file mode 100644 index 00000000..15dfa86e --- /dev/null +++ b/Skins/--/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2fa59b3eb7633050105bd856915cb4c0deb6457dbbf525f77bd32999eb6601 +size 886 diff --git a/Skins/--/score-5@2x.png b/Skins/--/score-5@2x.png new file mode 100644 index 00000000..ca536f1e --- /dev/null +++ b/Skins/--/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da60bf314f5a322fde083b090acff9b3293f58a996373522739f78b23847c399 +size 1290 diff --git a/Skins/--/score-6.png b/Skins/--/score-6.png new file mode 100644 index 00000000..c0d5ce69 --- /dev/null +++ b/Skins/--/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b98ac942b6ca480b5ca8f7d627ccc97238b23848c13c8d3522800e700f4d83 +size 879 diff --git a/Skins/--/score-6@2x.png b/Skins/--/score-6@2x.png new file mode 100644 index 00000000..271c8b8e --- /dev/null +++ b/Skins/--/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77423f8e46c976327300e82bdc7713367643979bdf101f2e70b52bfd3f59e88 +size 1371 diff --git a/Skins/--/score-7.png b/Skins/--/score-7.png new file mode 100644 index 00000000..47544c33 --- /dev/null +++ b/Skins/--/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:158a6bd0a2e72957c922ba4194af11b3978624fa46fb467bed1ab864c06e3173 +size 737 diff --git a/Skins/--/score-7@2x.png b/Skins/--/score-7@2x.png new file mode 100644 index 00000000..07d769fc --- /dev/null +++ b/Skins/--/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d80c27be065afd43dbefb42b5c478c64c813286d04fc4b2732336cc443894d +size 1111 diff --git a/Skins/--/score-8.png b/Skins/--/score-8.png new file mode 100644 index 00000000..671fc6b8 --- /dev/null +++ b/Skins/--/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982c2fd775fa5989d0a0aa4cc360245a9399f6c83f06880377e7b8e67783dcde +size 940 diff --git a/Skins/--/score-8@2x.png b/Skins/--/score-8@2x.png new file mode 100644 index 00000000..17d05be6 --- /dev/null +++ b/Skins/--/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df955cf293a5b24de804fb6af55de2e2b837b8c7fe308a23dd8a52921eabe7cb +size 1485 diff --git a/Skins/--/score-9.png b/Skins/--/score-9.png new file mode 100644 index 00000000..554dc86a --- /dev/null +++ b/Skins/--/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b44401821ebd50831d72b8322b858caea238a2f266bf8d0024be5fa9f02bfa2d +size 874 diff --git a/Skins/--/score-9@2x.png b/Skins/--/score-9@2x.png new file mode 100644 index 00000000..d9eabae7 --- /dev/null +++ b/Skins/--/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d43fc53f6a2329158a20863f06f200649253bb8ba118372fe8ac60ced1c604a +size 1389 diff --git a/Skins/--/score-comma.png b/Skins/--/score-comma.png new file mode 100644 index 00000000..5df5254a --- /dev/null +++ b/Skins/--/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7dd8ba93a0c4c95524b85f32ec99264756c6d0a6cd9c506d596a9829ae03eb8 +size 429 diff --git a/Skins/--/score-comma@2x.png b/Skins/--/score-comma@2x.png new file mode 100644 index 00000000..bfddad8e --- /dev/null +++ b/Skins/--/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f012b9c8f9e007454e0f0faaf9a88d311b4ba28b5af2ca41d0617c84bc649daf +size 346 diff --git a/Skins/--/score-dot.png b/Skins/--/score-dot.png new file mode 100644 index 00000000..5df5254a --- /dev/null +++ b/Skins/--/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7dd8ba93a0c4c95524b85f32ec99264756c6d0a6cd9c506d596a9829ae03eb8 +size 429 diff --git a/Skins/--/score-dot@2x.png b/Skins/--/score-dot@2x.png new file mode 100644 index 00000000..bfddad8e --- /dev/null +++ b/Skins/--/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f012b9c8f9e007454e0f0faaf9a88d311b4ba28b5af2ca41d0617c84bc649daf +size 346 diff --git a/Skins/--/score-percent.png b/Skins/--/score-percent.png new file mode 100644 index 00000000..323c6e0d --- /dev/null +++ b/Skins/--/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2f250aee05d1809990038b85e0bbb9ffa3d934123b9580e14b83568c9cc27a +size 137 diff --git a/Skins/--/score-x.png b/Skins/--/score-x.png new file mode 100644 index 00000000..6cbe4d69 --- /dev/null +++ b/Skins/--/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a6b1dd1a904b933731154e657d2458d96986344c48e8f90cf9fb09d94c3452 +size 868 diff --git a/Skins/--/scorebar-bg.png b/Skins/--/scorebar-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/scorebar-colour.png b/Skins/--/scorebar-colour.png new file mode 100644 index 00000000..183559df --- /dev/null +++ b/Skins/--/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f80b09bb9f361b5f6de571647c54d6737b4f7551f6501a4b1e055a820b26fd1 +size 347 diff --git a/Skins/--/scorebar-ki.png b/Skins/--/scorebar-ki.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/scorebar-kidanger.png b/Skins/--/scorebar-kidanger.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/scorebar-kidanger2.png b/Skins/--/scorebar-kidanger2.png new file mode 100644 index 00000000..b3c00434 --- /dev/null +++ b/Skins/--/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c018f0ac91cfc0e9804b19a2488fa4f5cad6a96866c217036ca0f68cfa31d0 +size 2799 diff --git a/Skins/--/scorebar-marker.png b/Skins/--/scorebar-marker.png new file mode 100644 index 00000000..40a61d93 --- /dev/null +++ b/Skins/--/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d3fbf590a584138bb563319747dbef0c9e41db91f19ff45d41e785a5f4f98 +size 2808 diff --git a/Skins/--/section-fail.png b/Skins/--/section-fail.png new file mode 100644 index 00000000..b76933de --- /dev/null +++ b/Skins/--/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2726149b898138c29e0505dc3f73e8dcc96630a4444d47bf6e662b56f3e5e23f +size 182 diff --git a/Skins/--/section-pass.png b/Skins/--/section-pass.png new file mode 100644 index 00000000..b76933de --- /dev/null +++ b/Skins/--/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2726149b898138c29e0505dc3f73e8dcc96630a4444d47bf6e662b56f3e5e23f +size 182 diff --git a/Skins/--/sectionfail.mp3 b/Skins/--/sectionfail.mp3 new file mode 100644 index 00000000..e73a3e0f --- /dev/null +++ b/Skins/--/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa306a7c3ac8dc98900667ebfec9933038911fefa93876d19e65d05781009581 +size 326542 diff --git a/Skins/--/sectionfail.wav b/Skins/--/sectionfail.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/--/sectionpass.mp3 b/Skins/--/sectionpass.mp3 new file mode 100644 index 00000000..84e482b7 --- /dev/null +++ b/Skins/--/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c6920312a42ac998694c72fcb7ed2f2f5a30a03891af7a82091688a53797f7 +size 240026 diff --git a/Skins/--/sectionpass.wav b/Skins/--/sectionpass.wav new file mode 100644 index 00000000..ef6ce18c --- /dev/null +++ b/Skins/--/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4112fd390cfa369b537fe38fec5ba762402b7410f0f7bbaa79660be6a49176f2 +size 405766 diff --git a/Skins/--/selection-mod-autoplay.png b/Skins/--/selection-mod-autoplay.png new file mode 100644 index 00000000..a5d24520 --- /dev/null +++ b/Skins/--/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c8a3acd7e90a27e3b3566b64c702bc1ac6a38d69dd3bb200868bfa156c6ce1 +size 16453 diff --git a/Skins/--/selection-mod-autoplay@2x.png b/Skins/--/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..d3ae0f1f --- /dev/null +++ b/Skins/--/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b376ec4efb73874e6e31bfb0d1df42c3cd238c7bbf12802831cd375edaaa90c +size 44154 diff --git a/Skins/--/selection-mod-cinema.png b/Skins/--/selection-mod-cinema.png new file mode 100644 index 00000000..dca29bae --- /dev/null +++ b/Skins/--/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae3fec75a9eca933626f9f7948096eeff9bc7b2c2d3b454f1d6d12b737fbec0 +size 16252 diff --git a/Skins/--/selection-mod-cinema@2x.png b/Skins/--/selection-mod-cinema@2x.png new file mode 100644 index 00000000..83d296e1 --- /dev/null +++ b/Skins/--/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5060a965a1051001bf7fc1294ea47707a67a28955ef88561e3ae69df5a0f1afb +size 41993 diff --git a/Skins/--/selection-mod-doubletime.png b/Skins/--/selection-mod-doubletime.png new file mode 100644 index 00000000..2c7bb209 --- /dev/null +++ b/Skins/--/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11268d9600ed88f35a814fea24602cc0c7c7f9bf48190169de6e163521bb9469 +size 15670 diff --git a/Skins/--/selection-mod-doubletime@2x.png b/Skins/--/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..768f600e --- /dev/null +++ b/Skins/--/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e63759e47d9a57f82455da8533de813ad03295c3d9bec826f36b857146abe6 +size 38329 diff --git a/Skins/--/selection-mod-easy.png b/Skins/--/selection-mod-easy.png new file mode 100644 index 00000000..f0e6771a --- /dev/null +++ b/Skins/--/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caef502a2ea4ce499aa7010a8cde03603f4189e2ff2449c48f358286cee65b81 +size 15749 diff --git a/Skins/--/selection-mod-easy@2x.png b/Skins/--/selection-mod-easy@2x.png new file mode 100644 index 00000000..02811bf4 --- /dev/null +++ b/Skins/--/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfb945997baf39447665c97abe167041333992f60b5f350ae43f9b2cc5e8c52 +size 38957 diff --git a/Skins/--/selection-mod-fadein.png b/Skins/--/selection-mod-fadein.png new file mode 100644 index 00000000..301e8136 --- /dev/null +++ b/Skins/--/selection-mod-fadein.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446da214b7eb21f16a80fd25beeb4a622a0629a35e0f4b772d62c9fc80fea1a6 +size 12597 diff --git a/Skins/--/selection-mod-flashlight.png b/Skins/--/selection-mod-flashlight.png new file mode 100644 index 00000000..a683793b --- /dev/null +++ b/Skins/--/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c0b8f86adfcaab8f251ccfab8699e693a454a6ff5bbe068dbd3dc54e855437 +size 16560 diff --git a/Skins/--/selection-mod-flashlight@2x.png b/Skins/--/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..5f7aff15 --- /dev/null +++ b/Skins/--/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8452e89b14ab3c8bb5a0ad92616e7ccd02cd8e1a2256efc74c6d0674c291815 +size 43741 diff --git a/Skins/--/selection-mod-halftime.png b/Skins/--/selection-mod-halftime.png new file mode 100644 index 00000000..6d22cc09 --- /dev/null +++ b/Skins/--/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb5d3b2e3361fff730a1326617bab8804cc65d6b468775e97cb164951f5bffd +size 15966 diff --git a/Skins/--/selection-mod-halftime@2x.png b/Skins/--/selection-mod-halftime@2x.png new file mode 100644 index 00000000..faf610d4 --- /dev/null +++ b/Skins/--/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1bcb4894142566451fce904c525e2c1b1080f2e594c61b9f6fd03d63c66051 +size 37762 diff --git a/Skins/--/selection-mod-hardrock.png b/Skins/--/selection-mod-hardrock.png new file mode 100644 index 00000000..c0f7c44b --- /dev/null +++ b/Skins/--/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7325d6e1e01afc997303e99809928111ec2e657bfe1f7b4dc60249f1eac0390 +size 14855 diff --git a/Skins/--/selection-mod-hardrock@2x.png b/Skins/--/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..c96741ee --- /dev/null +++ b/Skins/--/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6146cadf027ea1581fa8994a4371db3ff6ee5063add9945bca5a54605b4f14a9 +size 34900 diff --git a/Skins/--/selection-mod-hidden.png b/Skins/--/selection-mod-hidden.png new file mode 100644 index 00000000..003ee835 --- /dev/null +++ b/Skins/--/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbab11e5e36b63b5b79ba347830918ec530a027c2269288e3b6d1980000943f8 +size 13947 diff --git a/Skins/--/selection-mod-hidden@2x.png b/Skins/--/selection-mod-hidden@2x.png new file mode 100644 index 00000000..e0f5a39e --- /dev/null +++ b/Skins/--/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d409fd95b50edae93bcfdd13c616d95f5c7489d16a36eca5da23e31bfacf04b +size 37594 diff --git a/Skins/--/selection-mod-key1.png b/Skins/--/selection-mod-key1.png new file mode 100644 index 00000000..78c6c186 --- /dev/null +++ b/Skins/--/selection-mod-key1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bca039a4392e0d80f543b1114a588d7550575cef6ba9a86efdacccaafe54a40b +size 13415 diff --git a/Skins/--/selection-mod-key2.png b/Skins/--/selection-mod-key2.png new file mode 100644 index 00000000..743f1988 --- /dev/null +++ b/Skins/--/selection-mod-key2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72acdd5e6d16e4326e1e5feec0a98b6b627b8d01c98807162a1b13bf8cdb2c3 +size 13421 diff --git a/Skins/--/selection-mod-key3.png b/Skins/--/selection-mod-key3.png new file mode 100644 index 00000000..2877e6a6 --- /dev/null +++ b/Skins/--/selection-mod-key3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c2a01b11c6cd996437115285dc8c6a9147b2a1dbc086c765d7029b1310354d +size 13371 diff --git a/Skins/--/selection-mod-key4.png b/Skins/--/selection-mod-key4.png new file mode 100644 index 00000000..67caae78 --- /dev/null +++ b/Skins/--/selection-mod-key4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e244b69039742ee8e5c5af770a13cbf9e9b3824d8f60922b10a91245b65b922d +size 13398 diff --git a/Skins/--/selection-mod-key5.png b/Skins/--/selection-mod-key5.png new file mode 100644 index 00000000..6f23c768 --- /dev/null +++ b/Skins/--/selection-mod-key5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498e67415025a50350089628b8fbf4c90d764f67adee2f898a8ad1fce4dedd40 +size 13411 diff --git a/Skins/--/selection-mod-key6.png b/Skins/--/selection-mod-key6.png new file mode 100644 index 00000000..e61a84aa --- /dev/null +++ b/Skins/--/selection-mod-key6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12e48463909604313e51e72a02f8d279987240cf1b4c1a53dfe43d43dc0569d +size 13364 diff --git a/Skins/--/selection-mod-key7.png b/Skins/--/selection-mod-key7.png new file mode 100644 index 00000000..0089de43 --- /dev/null +++ b/Skins/--/selection-mod-key7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f95d996f4d52dfd313f6d1c0db15acc8af58f968ecfc750e36d8488ba6ee2c5 +size 13422 diff --git a/Skins/--/selection-mod-key8.png b/Skins/--/selection-mod-key8.png new file mode 100644 index 00000000..7359aa54 --- /dev/null +++ b/Skins/--/selection-mod-key8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa2bc374c3309e8f3fecfe31159418a315de02ac96c2fe6912aab057eea0ae8 +size 13377 diff --git a/Skins/--/selection-mod-key9.png b/Skins/--/selection-mod-key9.png new file mode 100644 index 00000000..cc9e8118 --- /dev/null +++ b/Skins/--/selection-mod-key9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1216e4ea7831189c6ff7411799de01e3d14e3f4c4582680529bf6a961356fc21 +size 13308 diff --git a/Skins/--/selection-mod-keycoop.png b/Skins/--/selection-mod-keycoop.png new file mode 100644 index 00000000..53135711 --- /dev/null +++ b/Skins/--/selection-mod-keycoop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c51cfb92090be59ec8a7b1929ce3daa8066a4c30f9b07d5c6bb4bf909914e20 +size 12508 diff --git a/Skins/--/selection-mod-nightcore.png b/Skins/--/selection-mod-nightcore.png new file mode 100644 index 00000000..4e9da61e --- /dev/null +++ b/Skins/--/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9fc58bc2a23814e671e57877931347ff8a4a0e8ed89b9c8d305ecc0a02b64f9 +size 15954 diff --git a/Skins/--/selection-mod-nightcore@2x.png b/Skins/--/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..64b13ec6 --- /dev/null +++ b/Skins/--/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f926ea0bffa7ac6d0af925f1f159b0e9091f34c9c9be315b4c49b84e836b5ab5 +size 41038 diff --git a/Skins/--/selection-mod-nofail.png b/Skins/--/selection-mod-nofail.png new file mode 100644 index 00000000..1960365a --- /dev/null +++ b/Skins/--/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36918d07fcd0d945f4cf3b0a59a10f36afbd49c277e9d07539d06cb5640a73f +size 14780 diff --git a/Skins/--/selection-mod-nofail@2x.png b/Skins/--/selection-mod-nofail@2x.png new file mode 100644 index 00000000..24516278 --- /dev/null +++ b/Skins/--/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c21534ec4ec4d44b10db6abe40a92ccc82d1fb268ac8641cc4a7c0438db7c5 +size 33304 diff --git a/Skins/--/selection-mod-perfect.png b/Skins/--/selection-mod-perfect.png new file mode 100644 index 00000000..01c6f9e0 --- /dev/null +++ b/Skins/--/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de05596c920da5ed6e1d00cca47a6f2d8d64da66f75bc7912d18328cf882d668 +size 15976 diff --git a/Skins/--/selection-mod-perfect@2x.png b/Skins/--/selection-mod-perfect@2x.png new file mode 100644 index 00000000..fc155f1c --- /dev/null +++ b/Skins/--/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb616342d4b6b0a930f18a66ddb8d457d09ee31c050b75a79616da2bfedbad65 +size 40499 diff --git a/Skins/--/selection-mod-random.png b/Skins/--/selection-mod-random.png new file mode 100644 index 00000000..a116a44c --- /dev/null +++ b/Skins/--/selection-mod-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8687108f51f4c9d877bb7f08138e0ea4d447aeb3c6686b06741195819b67e0b +size 15040 diff --git a/Skins/--/selection-mod-random@2x.png b/Skins/--/selection-mod-random@2x.png new file mode 100644 index 00000000..1f761382 --- /dev/null +++ b/Skins/--/selection-mod-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85a57ce857bf4dca81810af05d1e560d04f09f39507849d7313d8f2c524a48db +size 35379 diff --git a/Skins/--/selection-mod-relax.png b/Skins/--/selection-mod-relax.png new file mode 100644 index 00000000..b08587f8 --- /dev/null +++ b/Skins/--/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee255f8e743ef9c22c6aaf521a9583517ca1c52e970f187ce478ad9cbd221fe +size 14689 diff --git a/Skins/--/selection-mod-relax2.png b/Skins/--/selection-mod-relax2.png new file mode 100644 index 00000000..c3f91da7 --- /dev/null +++ b/Skins/--/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78f4f1ff614d0aa317f90474b48c0002bd61aab181ec0211afbf1fecd96cc7f +size 14291 diff --git a/Skins/--/selection-mod-relax2@2x.png b/Skins/--/selection-mod-relax2@2x.png new file mode 100644 index 00000000..bc06a743 --- /dev/null +++ b/Skins/--/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34220a73fdf8626213630ebde5120d3c4012ba9408bb8616420d13168b96a97c +size 31355 diff --git a/Skins/--/selection-mod-relax@2x.png b/Skins/--/selection-mod-relax@2x.png new file mode 100644 index 00000000..4075edfa --- /dev/null +++ b/Skins/--/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e695cc584f7d3efb0f328933ec2859defe41d3cb313237f02f1bf0869ca13075 +size 37392 diff --git a/Skins/--/selection-mod-scorev2.png b/Skins/--/selection-mod-scorev2.png new file mode 100644 index 00000000..dfd3b3a4 --- /dev/null +++ b/Skins/--/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef4e201e9383b137f9c374997484d49e7a3d069a6262d872cd094f991c3e0cc +size 16659 diff --git a/Skins/--/selection-mod-scorev2@2x.png b/Skins/--/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..2caadca9 --- /dev/null +++ b/Skins/--/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d1498682b9f3d240138200ffd0812fc2ccee0a49e477522f09e7dabf8e86d5 +size 39319 diff --git a/Skins/--/selection-mod-spunout.png b/Skins/--/selection-mod-spunout.png new file mode 100644 index 00000000..5e8b0def --- /dev/null +++ b/Skins/--/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10101df16fc3030d272ee3accb23de4f0f36f792cd30f31a386fd7e3182c6e8 +size 15468 diff --git a/Skins/--/selection-mod-spunout@2x.png b/Skins/--/selection-mod-spunout@2x.png new file mode 100644 index 00000000..4a8c90b9 --- /dev/null +++ b/Skins/--/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58114904652e90292617774ed444d7fa16b9570443794122053dfb390ee499a6 +size 35059 diff --git a/Skins/--/selection-mod-suddendeath.png b/Skins/--/selection-mod-suddendeath.png new file mode 100644 index 00000000..1c940143 --- /dev/null +++ b/Skins/--/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32008e8ee536beff1a916c71d919019f8a7668005b781df6d095748640ac4b29 +size 14730 diff --git a/Skins/--/selection-mod-suddendeath@2x.png b/Skins/--/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..477f75e1 --- /dev/null +++ b/Skins/--/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87c38a28080810d9b3bd18a361b4ebdc55e4de3617565336954877eb31c86dd +size 34323 diff --git a/Skins/--/selection-mod-target.png b/Skins/--/selection-mod-target.png new file mode 100644 index 00000000..8776bc1a --- /dev/null +++ b/Skins/--/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f1d1459e707294dcac401abbd37a09f43d1de21b2e508ee4fb674e343af596 +size 14281 diff --git a/Skins/--/selection-mod-target@2x.png b/Skins/--/selection-mod-target@2x.png new file mode 100644 index 00000000..172cf1b4 --- /dev/null +++ b/Skins/--/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8415d70d9fdce91f352d671018de1f127dd7e9a9e66759097ae4f5dc5c1f17b5 +size 34941 diff --git a/Skins/--/selection-mode-over.png b/Skins/--/selection-mode-over.png new file mode 100644 index 00000000..e82d312f --- /dev/null +++ b/Skins/--/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c808d63fc384086e85b73b5815a602d7a13f830b6390d574adfb1f055e8e99 +size 8459 diff --git a/Skins/--/selection-mode.png b/Skins/--/selection-mode.png new file mode 100644 index 00000000..7f92bcc7 --- /dev/null +++ b/Skins/--/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5e9ab3bd1ddc5cd54e78cbbba4088bf1334158fa5bf1cb724f4c90bdb1c92b +size 6354 diff --git a/Skins/--/selection-mods-over.png b/Skins/--/selection-mods-over.png new file mode 100644 index 00000000..38a070a7 --- /dev/null +++ b/Skins/--/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab314096f5ccba81e9547a632a64bd844c767c3ad3979608913c9ad17ea4e830 +size 4294 diff --git a/Skins/--/selection-mods.png b/Skins/--/selection-mods.png new file mode 100644 index 00000000..305605a2 --- /dev/null +++ b/Skins/--/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4792b5f372cdd1bbd9c85e48800f500fa916ef21b111b7d5871332674bcc0445 +size 2736 diff --git a/Skins/--/selection-options-over.png b/Skins/--/selection-options-over.png new file mode 100644 index 00000000..1d05f084 --- /dev/null +++ b/Skins/--/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d745828809a2147a686a69cb045a46063bcbb5a153c8e4f2f3cad267ea25015 +size 6352 diff --git a/Skins/--/selection-options.png b/Skins/--/selection-options.png new file mode 100644 index 00000000..346a0b99 --- /dev/null +++ b/Skins/--/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd59b6aa04444a76f049cb1b69d6da2247c1f4a043d3bcd8e6b1ad984ec0ed1a +size 4576 diff --git a/Skins/--/selection-random-over.png b/Skins/--/selection-random-over.png new file mode 100644 index 00000000..b949fefc --- /dev/null +++ b/Skins/--/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb00fdcd4dfbf705c5a14289d930f66ccc9368a5f87d73b212c2114cae256fe9 +size 6640 diff --git a/Skins/--/selection-random.png b/Skins/--/selection-random.png new file mode 100644 index 00000000..7ae19afb --- /dev/null +++ b/Skins/--/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7bff50dce2cea241a03b5ada12b086dd98c6049ca3c29a286ab08f36d613213 +size 4638 diff --git a/Skins/--/selection-tab.png b/Skins/--/selection-tab.png new file mode 100644 index 00000000..f1d2b405 --- /dev/null +++ b/Skins/--/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe30e3af692e8c1e186ff26327c0b1d259c1610c3fa5af91801988860c5b0c7 +size 4269 diff --git a/Skins/--/skin.ini b/Skins/--/skin.ini new file mode 100644 index 00000000..f2353a89 --- /dev/null +++ b/Skins/--/skin.ini @@ -0,0 +1,49 @@ +[General] +Name: Utami (WubWoofWolf) +Author: Various Artists + +//Fatal3ty creator of mod selection, warning arrow, fail bg, pause bg, miss, ranking mark, menu options and input overlay; + + +Version: latest +SliderBallFlip: 0 +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 1 +HitCircleOverlayAboveNumer: 0 +ComboBurstRandom: 0 +SliderStyle: 2 + +[Colours] +Combo1: 255,255,255 +Combo2: 255,255,255 +Combo3: 255,255,255 +Combo4: 255,255,255 +InputOverlayText: 255,255,255 +SliderBorder: 255,255,255 +SliderTrackOverride: 0,0,0 +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 230,230,230 +SpinnerApproachCircle: 255,255,255 +ApproachCircle: 255,255,255 +MenuGlow: 100,100,100 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 178 +ScorePrefix: score +ScoreOverlap: 2 + +[CatchTheBeat] +//The colour of the hyper dash catcher +HyperDash: 255,255,255 + + +//The colour of the hyper dash catcher afterimages +//Defaults to the same as HyperDash (above) if not present +HyperDashAfterImage: 0,0,0,0 + +//The colour of the hyper dash fruit outline +//Defaults to the same as HyperDash (above) if not present +HyperDashFruit: 255,0,0 \ No newline at end of file diff --git a/Skins/--/slider-followpoint.png b/Skins/--/slider-followpoint.png new file mode 100644 index 00000000..1b033dda --- /dev/null +++ b/Skins/--/slider-followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06330803ff43d43473b886526f64d26994986ffd125f776818490c603974bb83 +size 2869 diff --git a/Skins/--/sliderb.png b/Skins/--/sliderb.png new file mode 100644 index 00000000..6f10d2d6 --- /dev/null +++ b/Skins/--/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875f795161a0f0296c1cc74e6365b8ac60f795caecd0776f1eecb484bfcb755e +size 9485 diff --git a/Skins/--/sliderendcircle.png b/Skins/--/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/sliderfollowcircle.png b/Skins/--/sliderfollowcircle.png new file mode 100644 index 00000000..bcce2d99 --- /dev/null +++ b/Skins/--/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e7989b0fa6a60f7a10a068b0ec98b5c5dc0e5285dd99f8fc33ae06472c711d +size 2779 diff --git a/Skins/--/sliderfollowpoint.png b/Skins/--/sliderfollowpoint.png new file mode 100644 index 00000000..bcce2d99 --- /dev/null +++ b/Skins/--/sliderfollowpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e7989b0fa6a60f7a10a068b0ec98b5c5dc0e5285dd99f8fc33ae06472c711d +size 2779 diff --git a/Skins/--/sliderpoint10.png b/Skins/--/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/sliderpoint30.png b/Skins/--/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/--/sliderscorepoint.png b/Skins/--/sliderscorepoint.png new file mode 100644 index 00000000..122b7836 --- /dev/null +++ b/Skins/--/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6840aeafbee63a277a8933c89f4b59d8c2f80edef9a4fbcd6a971f7e5abb1cae +size 4166 diff --git a/Skins/--/soft-hitclap.wav b/Skins/--/soft-hitclap.wav new file mode 100644 index 00000000..ba0577bd --- /dev/null +++ b/Skins/--/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d41d2409a443714d2afda3e6745288e4a699422d8248a70ffd8a9d4ebc71d1 +size 4548 diff --git a/Skins/--/soft-hitclap2.wav b/Skins/--/soft-hitclap2.wav new file mode 100644 index 00000000..3d8aaa60 --- /dev/null +++ b/Skins/--/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c6bc82e55b02266241dcc1d2095e33205c0e899a72bf22e5f3c00c7d05797b +size 42468 diff --git a/Skins/--/soft-hitfinish.wav b/Skins/--/soft-hitfinish.wav new file mode 100644 index 00000000..1ddf64f1 --- /dev/null +++ b/Skins/--/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c1bfbbda81efa42b5b936562fa0f17c05fdd53af4e56bba649a8aebab59a7d +size 52780 diff --git a/Skins/--/soft-hitfinish2.wav b/Skins/--/soft-hitfinish2.wav new file mode 100644 index 00000000..1ddf64f1 --- /dev/null +++ b/Skins/--/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c1bfbbda81efa42b5b936562fa0f17c05fdd53af4e56bba649a8aebab59a7d +size 52780 diff --git a/Skins/--/soft-hitnormal.wav b/Skins/--/soft-hitnormal.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/--/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/--/soft-hitnormal1.wav b/Skins/--/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/--/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/--/soft-hitnormal2.wav b/Skins/--/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/--/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/--/soft-hitwhistle.wav b/Skins/--/soft-hitwhistle.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/--/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/--/soft-hitwhistle2.wav b/Skins/--/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/--/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/--/soft-sliderslide.wav b/Skins/--/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/soft-sliderslide2.wav b/Skins/--/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/soft-slidertick.wav b/Skins/--/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/--/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/--/soft-slidertick2.wav b/Skins/--/soft-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/soft-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/soft-sliderwhistle.wav b/Skins/--/soft-sliderwhistle.wav new file mode 100644 index 00000000..ca81266f --- /dev/null +++ b/Skins/--/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e9fc47debfdff56028ea82a0de24403187ddd7e3cccd61c538ca20ba81f427 +size 47580 diff --git a/Skins/--/softl-hitwhistle.wav b/Skins/--/softl-hitwhistle.wav new file mode 100644 index 00000000..b2ead5b1 --- /dev/null +++ b/Skins/--/softl-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0bf4803858de71662a0d497d789a4d24d5c3cee7d0976377abf47156578018 +size 20428 diff --git a/Skins/--/songselect-bottom.png b/Skins/--/songselect-bottom.png new file mode 100644 index 00000000..e07b7878 --- /dev/null +++ b/Skins/--/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d4e6d6587728d1727cf4c0c41cd03aaf2049b7dc719c2e22591b3dab04df11 +size 3104 diff --git a/Skins/--/spinner-approachcircle.png b/Skins/--/spinner-approachcircle.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinner-background.png b/Skins/--/spinner-background.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinner-bottom.png b/Skins/--/spinner-bottom.png new file mode 100644 index 00000000..72323a18 --- /dev/null +++ b/Skins/--/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f329711d26ae5c876821ddeb6df776937205426461dd40e98ae7dd80b8664e4 +size 8090 diff --git a/Skins/--/spinner-circle.png b/Skins/--/spinner-circle.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/--/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/--/spinner-clear.png b/Skins/--/spinner-clear.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinner-glow.png b/Skins/--/spinner-glow.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinner-metre.png b/Skins/--/spinner-metre.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinner-middle.png b/Skins/--/spinner-middle.png new file mode 100644 index 00000000..95f33189 --- /dev/null +++ b/Skins/--/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c581cfab3bce30352233131a4cbc18385b63982e86a0d9c97172ea12b188b282 +size 95 diff --git a/Skins/--/spinner-middle2.png b/Skins/--/spinner-middle2.png new file mode 100644 index 00000000..95f33189 --- /dev/null +++ b/Skins/--/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c581cfab3bce30352233131a4cbc18385b63982e86a0d9c97172ea12b188b282 +size 95 diff --git a/Skins/--/spinner-osu.png b/Skins/--/spinner-osu.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinner-rpm.png b/Skins/--/spinner-rpm.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinner-spin.png b/Skins/--/spinner-spin.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinner-top.png b/Skins/--/spinner-top.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinner-warning.png b/Skins/--/spinner-warning.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/--/spinner-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/--/spinnerbonus.wav b/Skins/--/spinnerbonus.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/spinnerspin.mp3 b/Skins/--/spinnerspin.mp3 new file mode 100644 index 00000000..fc4609de --- /dev/null +++ b/Skins/--/spinnerspin.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bffd9f5731212e90c5611e16027c3ae4c890c2f068edf9972f02ec7db77bff99 +size 29573 diff --git a/Skins/--/spinnerspin.wav b/Skins/--/spinnerspin.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/--/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/--/star.png b/Skins/--/star.png new file mode 100644 index 00000000..57cc86e3 --- /dev/null +++ b/Skins/--/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0923dba4b00cd7e9a694d731db281bf87da06a8a5bb51c7bf59f889c630f69 +size 17316 diff --git a/Skins/--/star2.png b/Skins/--/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/--/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/approachcircle.png b/Skins/7lqdv4/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/7lqdv4/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/7lqdv4/button-left.png b/Skins/7lqdv4/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/button-middle.png b/Skins/7lqdv4/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/button-right.png b/Skins/7lqdv4/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/combobreak.mp3 b/Skins/7lqdv4/combobreak.mp3 new file mode 100644 index 00000000..f34a77d5 --- /dev/null +++ b/Skins/7lqdv4/combobreak.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3d678d4fa0b2925f1990917e030ac5add425f3aa9cf3bdeed1447981e96d7e +size 2817 diff --git a/Skins/7lqdv4/comboburst.png b/Skins/7lqdv4/comboburst.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/7lqdv4/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/7lqdv4/count1.png b/Skins/7lqdv4/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/count2.png b/Skins/7lqdv4/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/count3.png b/Skins/7lqdv4/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/cursor.png b/Skins/7lqdv4/cursor.png new file mode 100644 index 00000000..7b2df16f --- /dev/null +++ b/Skins/7lqdv4/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120083976b2f212593a739239fbd362f0f3d7c4df89afbbb67e95b23ef47bf69 +size 21435 diff --git a/Skins/7lqdv4/cursortrail.png b/Skins/7lqdv4/cursortrail.png new file mode 100644 index 00000000..1a98fd0f --- /dev/null +++ b/Skins/7lqdv4/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f46164437212804634ef86d2571c80e4047e577b0f582a1934e221103ed63f1 +size 2806 diff --git a/Skins/7lqdv4/default-0.png b/Skins/7lqdv4/default-0.png new file mode 100644 index 00000000..aa28ab0b --- /dev/null +++ b/Skins/7lqdv4/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2a1371655d38d5d6556324587ce7e641331cc0a939c5592080cadbeeba35cc +size 2296 diff --git a/Skins/7lqdv4/default-1.png b/Skins/7lqdv4/default-1.png new file mode 100644 index 00000000..8bd9bc87 --- /dev/null +++ b/Skins/7lqdv4/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e85e780e626d21ed6a67a83e9487d4aa457b8eadfd2850cbaea9690ade08a1 +size 870 diff --git a/Skins/7lqdv4/default-2.png b/Skins/7lqdv4/default-2.png new file mode 100644 index 00000000..83ebddf5 --- /dev/null +++ b/Skins/7lqdv4/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa1ba658fdb9450043a0fdfb4959bb49791141a9970c8339f88770e25e94bbd +size 2259 diff --git a/Skins/7lqdv4/default-3.png b/Skins/7lqdv4/default-3.png new file mode 100644 index 00000000..87091954 --- /dev/null +++ b/Skins/7lqdv4/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806637db7e584d0ca13abccc95b89ac40b66629945a4f0c12e32dfb0ae14bd2b +size 2600 diff --git a/Skins/7lqdv4/default-4.png b/Skins/7lqdv4/default-4.png new file mode 100644 index 00000000..3525ebfe --- /dev/null +++ b/Skins/7lqdv4/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ae038137fb0e0dd7c9ce6f2eedebf5f54b03eb20128a1ae75d2a16961baf3f +size 1668 diff --git a/Skins/7lqdv4/default-5.png b/Skins/7lqdv4/default-5.png new file mode 100644 index 00000000..8069fa50 --- /dev/null +++ b/Skins/7lqdv4/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581eec904b3bf33091b17f4f23fc68b5652484fb9194020b3bfc658a14d0ab6e +size 2172 diff --git a/Skins/7lqdv4/default-6.png b/Skins/7lqdv4/default-6.png new file mode 100644 index 00000000..1e4bb9ac --- /dev/null +++ b/Skins/7lqdv4/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a88aecdde29c07e847c5a20647f4dde0e9a5c404c7435794d2f4be97d915b7 +size 2152 diff --git a/Skins/7lqdv4/default-7.png b/Skins/7lqdv4/default-7.png new file mode 100644 index 00000000..9ba04da9 --- /dev/null +++ b/Skins/7lqdv4/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2eba1ceeebe31921d47d272490fc24659dc7d4ce4941d39dfe571643e3a64ba +size 1711 diff --git a/Skins/7lqdv4/default-8.png b/Skins/7lqdv4/default-8.png new file mode 100644 index 00000000..c092861b --- /dev/null +++ b/Skins/7lqdv4/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dc6d5187cedd1701bf84c11871ac885951c2712edf3ce0876d6498f2770d7a +size 2555 diff --git a/Skins/7lqdv4/default-9.png b/Skins/7lqdv4/default-9.png new file mode 100644 index 00000000..ad0038a9 --- /dev/null +++ b/Skins/7lqdv4/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445243872032ef35afd20b507e5e4ae3d3412a1dfd0d6cce96d8a68b3f004939 +size 2271 diff --git a/Skins/7lqdv4/drum-hitclap.ogg b/Skins/7lqdv4/drum-hitclap.ogg new file mode 100644 index 00000000..a8df52df --- /dev/null +++ b/Skins/7lqdv4/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705576d643bae20658405e742c207f531f8c009e2996c057ac456abf5a77d39d +size 4211 diff --git a/Skins/7lqdv4/drum-hitfinish.ogg b/Skins/7lqdv4/drum-hitfinish.ogg new file mode 100644 index 00000000..b2d8546c --- /dev/null +++ b/Skins/7lqdv4/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b35a3042002f2f4b4117ee1a6466924b144402a2a379668ce2c68f59b027169 +size 19540 diff --git a/Skins/7lqdv4/drum-hitnormal.ogg b/Skins/7lqdv4/drum-hitnormal.ogg new file mode 100644 index 00000000..1003b2bb --- /dev/null +++ b/Skins/7lqdv4/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb5bd3763dfa3c093afad95558618d7b53de0d333de2c3e916d0f7496198b6f +size 6462 diff --git a/Skins/7lqdv4/drum-hitwhistle.ogg b/Skins/7lqdv4/drum-hitwhistle.ogg new file mode 100644 index 00000000..5e41fcfb --- /dev/null +++ b/Skins/7lqdv4/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4b59dc49da640359d22a312c27f2e27793abad088335073cacb57f5d09ea70 +size 7257 diff --git a/Skins/7lqdv4/drum-sliderslide.wav b/Skins/7lqdv4/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/7lqdv4/drum-slidertick.ogg b/Skins/7lqdv4/drum-slidertick.ogg new file mode 100644 index 00000000..4995f2f7 --- /dev/null +++ b/Skins/7lqdv4/drum-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702a02b920ec758b5f287edcefab370a3f4f55320565e643e48463ce06d5aa27 +size 6882 diff --git a/Skins/7lqdv4/drum-sliderwhistle.ogg b/Skins/7lqdv4/drum-sliderwhistle.ogg new file mode 100644 index 00000000..9ed11d2a --- /dev/null +++ b/Skins/7lqdv4/drum-sliderwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c431ef12ce257cea58cd4f4d1c42ba6f5197ecd6bfdb2bce54c072296d0be6 +size 4426 diff --git a/Skins/7lqdv4/drum-sliderwhistle.wav b/Skins/7lqdv4/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/7lqdv4/followpoint-0.png b/Skins/7lqdv4/followpoint-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/7lqdv4/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/7lqdv4/followpoint-1.png b/Skins/7lqdv4/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/followpoint-2.png b/Skins/7lqdv4/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/followpoint-3.png b/Skins/7lqdv4/followpoint-3.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/7lqdv4/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/7lqdv4/followpoint-4.png b/Skins/7lqdv4/followpoint-4.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/7lqdv4/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/7lqdv4/followpoint-5.png b/Skins/7lqdv4/followpoint-5.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/7lqdv4/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/7lqdv4/followpoint-6.png b/Skins/7lqdv4/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/followpoint-7.png b/Skins/7lqdv4/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/followpoint-8.png b/Skins/7lqdv4/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/followpoint-9.png b/Skins/7lqdv4/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/followpoint.png b/Skins/7lqdv4/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/7lqdv4/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/7lqdv4/go.png b/Skins/7lqdv4/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/hit0.png b/Skins/7lqdv4/hit0.png new file mode 100644 index 00000000..6ba2f7f1 --- /dev/null +++ b/Skins/7lqdv4/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e98c599526ebf43842184aff41ebe4af9f95fe25a1736089b6a578cf266731e +size 2150 diff --git a/Skins/7lqdv4/hit100.png b/Skins/7lqdv4/hit100.png new file mode 100644 index 00000000..e26c586e --- /dev/null +++ b/Skins/7lqdv4/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e326b0e71b951ca210565296914645358f48b37579b43e0fd9171b0ad92a0f +size 2182 diff --git a/Skins/7lqdv4/hit100k.png b/Skins/7lqdv4/hit100k.png new file mode 100644 index 00000000..e26c586e --- /dev/null +++ b/Skins/7lqdv4/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e326b0e71b951ca210565296914645358f48b37579b43e0fd9171b0ad92a0f +size 2182 diff --git a/Skins/7lqdv4/hit300-0.png b/Skins/7lqdv4/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/7lqdv4/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/7lqdv4/hit300.png b/Skins/7lqdv4/hit300.png new file mode 100644 index 00000000..30999678 --- /dev/null +++ b/Skins/7lqdv4/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e88eb018358df9e5e4498192b483d8703b0c6a095db695c270903b7a6216672 +size 2256 diff --git a/Skins/7lqdv4/hit300g-0.png b/Skins/7lqdv4/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/7lqdv4/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/7lqdv4/hit300g.png b/Skins/7lqdv4/hit300g.png new file mode 100644 index 00000000..30999678 --- /dev/null +++ b/Skins/7lqdv4/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e88eb018358df9e5e4498192b483d8703b0c6a095db695c270903b7a6216672 +size 2256 diff --git a/Skins/7lqdv4/hit300k-0.png b/Skins/7lqdv4/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/7lqdv4/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/7lqdv4/hit300k.png b/Skins/7lqdv4/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/7lqdv4/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/7lqdv4/hit50.png b/Skins/7lqdv4/hit50.png new file mode 100644 index 00000000..a4d3a5b1 --- /dev/null +++ b/Skins/7lqdv4/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb14f383a258431bd21b2e7170d54324c47c266d7a8efb081eeac0688b77b992 +size 2201 diff --git a/Skins/7lqdv4/hitcircle.png b/Skins/7lqdv4/hitcircle.png new file mode 100644 index 00000000..8e534b60 --- /dev/null +++ b/Skins/7lqdv4/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc199baa157557e3b0785beaa2cfac4955013b79feadc0b7580bfdb5375a1ab +size 11731 diff --git a/Skins/7lqdv4/hitcircle@2x.png b/Skins/7lqdv4/hitcircle@2x.png new file mode 100644 index 00000000..36cc08d8 --- /dev/null +++ b/Skins/7lqdv4/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8ad3b26ed669dd9eb1951ecf4a8f18b97c727716fb94440e11d0a850eaacb2 +size 28144 diff --git a/Skins/7lqdv4/hitcircleoverlay.png b/Skins/7lqdv4/hitcircleoverlay.png new file mode 100644 index 00000000..fcdb3a71 --- /dev/null +++ b/Skins/7lqdv4/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbac39a2b7e4219c5d7edcbe4153700f569964cd7458a9c464f67af00cbcd2e8 +size 12822 diff --git a/Skins/7lqdv4/hitcircleoverlay@2x.png b/Skins/7lqdv4/hitcircleoverlay@2x.png new file mode 100644 index 00000000..e49a0305 --- /dev/null +++ b/Skins/7lqdv4/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a20a50a4d294df25e9ddd92b3ef460945e41bc0d2d45aa59909f2b44a37fe4 +size 30284 diff --git a/Skins/7lqdv4/hitcircleselect.png b/Skins/7lqdv4/hitcircleselect.png new file mode 100644 index 00000000..016ce9fc --- /dev/null +++ b/Skins/7lqdv4/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d2d6ea62c23d370b06640e82c190d995ebdcd97a11d4daad2813630442d2d4 +size 6957 diff --git a/Skins/7lqdv4/hitcircleselect@2x.png b/Skins/7lqdv4/hitcircleselect@2x.png new file mode 100644 index 00000000..796fa239 --- /dev/null +++ b/Skins/7lqdv4/hitcircleselect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948dc3875aea0743ff0c5e79cc4dea2d38e73909620296371c52e341af91e05 +size 10181 diff --git a/Skins/7lqdv4/inputoverlay-key.png b/Skins/7lqdv4/inputoverlay-key.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/7lqdv4/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/7lqdv4/menu-back.png b/Skins/7lqdv4/menu-back.png new file mode 100644 index 00000000..300f7590 --- /dev/null +++ b/Skins/7lqdv4/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1598a9715f4d7d15c5ceb714468e1e6992f9f559f44de14b423d9b3b451a626 +size 110 diff --git a/Skins/7lqdv4/menu-button-background.png b/Skins/7lqdv4/menu-button-background.png new file mode 100644 index 00000000..3221697b --- /dev/null +++ b/Skins/7lqdv4/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a12068e501ea4ed8abebf4ab0736ff1a87d64a6c9cd32827a54cf78b4c6bd8 +size 114 diff --git a/Skins/7lqdv4/mode-osu-small.png b/Skins/7lqdv4/mode-osu-small.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/7lqdv4/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/7lqdv4/mode-osu.png b/Skins/7lqdv4/mode-osu.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/7lqdv4/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/7lqdv4/nightcore-clap.ogg b/Skins/7lqdv4/nightcore-clap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/7lqdv4/nightcore-finish.ogg b/Skins/7lqdv4/nightcore-finish.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/7lqdv4/normal-hitclap.wav b/Skins/7lqdv4/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/7lqdv4/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/7lqdv4/normal-hitfinish.wav b/Skins/7lqdv4/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/7lqdv4/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/7lqdv4/normal-hitnormal.wav b/Skins/7lqdv4/normal-hitnormal.wav new file mode 100644 index 00000000..5b939b61 --- /dev/null +++ b/Skins/7lqdv4/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c60eacffa79b724bb677cc88e2b14e83afe59a220b434c38679f3eaa237112 +size 79628 diff --git a/Skins/7lqdv4/normal-hitwhistle.wav b/Skins/7lqdv4/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/7lqdv4/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/7lqdv4/normal-sliderslide.wav b/Skins/7lqdv4/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/7lqdv4/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/7lqdv4/normal-slidertick.wav b/Skins/7lqdv4/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/7lqdv4/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/7lqdv4/pause-back.png b/Skins/7lqdv4/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/7lqdv4/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/7lqdv4/pause-continue.png b/Skins/7lqdv4/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/7lqdv4/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/7lqdv4/pause-replay.png b/Skins/7lqdv4/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/7lqdv4/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/7lqdv4/pause-retry.png b/Skins/7lqdv4/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/7lqdv4/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/7lqdv4/play-skip.png b/Skins/7lqdv4/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/play-unranked.png b/Skins/7lqdv4/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/play-warningarrow.png b/Skins/7lqdv4/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/7lqdv4/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/7lqdv4/ranking-a-small.png b/Skins/7lqdv4/ranking-a-small.png new file mode 100644 index 00000000..1abceff4 --- /dev/null +++ b/Skins/7lqdv4/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5edf1aebbef7a8f8a9a919cc524aa89451a63606b27b341e7b9354319408a0 +size 1204 diff --git a/Skins/7lqdv4/ranking-a.png b/Skins/7lqdv4/ranking-a.png new file mode 100644 index 00000000..393836df --- /dev/null +++ b/Skins/7lqdv4/ranking-a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478a68dde7e61114c3f9c1629dc86b2539129aecdcc24ab4ccd3294d4be08f85 +size 3074 diff --git a/Skins/7lqdv4/ranking-accuracy.png b/Skins/7lqdv4/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/7lqdv4/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/7lqdv4/ranking-b-small.png b/Skins/7lqdv4/ranking-b-small.png new file mode 100644 index 00000000..621ca5ea --- /dev/null +++ b/Skins/7lqdv4/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dabd351de7c3b472cd59e4011399cec86e4392b9ae8a5436ace32367e61378d +size 1151 diff --git a/Skins/7lqdv4/ranking-b.png b/Skins/7lqdv4/ranking-b.png new file mode 100644 index 00000000..8e281c78 --- /dev/null +++ b/Skins/7lqdv4/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e9abeac11db88cad3edf87e08831dbe101173f436f80b4b88b42beeffa4c95 +size 2492 diff --git a/Skins/7lqdv4/ranking-c-small.png b/Skins/7lqdv4/ranking-c-small.png new file mode 100644 index 00000000..5bbd6542 --- /dev/null +++ b/Skins/7lqdv4/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81031c0b34b43a74bbedeaa2af97dc3037177f9d755116217eae8c82d31bccd6 +size 1240 diff --git a/Skins/7lqdv4/ranking-c.png b/Skins/7lqdv4/ranking-c.png new file mode 100644 index 00000000..13b8d602 --- /dev/null +++ b/Skins/7lqdv4/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b476ddbe05492af887ed326b84a6f1d1c26f54e7114b1991a9ce601d48075dca +size 3532 diff --git a/Skins/7lqdv4/ranking-d-small.png b/Skins/7lqdv4/ranking-d-small.png new file mode 100644 index 00000000..e4c87d31 --- /dev/null +++ b/Skins/7lqdv4/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384a428b2f3426a1f2fbfeca46a4c76d436182cd96d53f124582fe12f7947a1b +size 1179 diff --git a/Skins/7lqdv4/ranking-d.png b/Skins/7lqdv4/ranking-d.png new file mode 100644 index 00000000..3dec68b9 --- /dev/null +++ b/Skins/7lqdv4/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cae61380ce97a24f7b89dbfe0b7780afe5d3aaebb3135747d7d90e53482791 +size 2530 diff --git a/Skins/7lqdv4/ranking-graph.png b/Skins/7lqdv4/ranking-graph.png new file mode 100644 index 00000000..d4af6b34 --- /dev/null +++ b/Skins/7lqdv4/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52616bdb820538196240182a81d2a7d5b3c88dab87c1a53109baf97903089e32 +size 114 diff --git a/Skins/7lqdv4/ranking-maxcombo.png b/Skins/7lqdv4/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/7lqdv4/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/7lqdv4/ranking-panel.png b/Skins/7lqdv4/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/7lqdv4/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/7lqdv4/ranking-perfect.png b/Skins/7lqdv4/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/7lqdv4/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/7lqdv4/ranking-s-small.png b/Skins/7lqdv4/ranking-s-small.png new file mode 100644 index 00000000..14770353 --- /dev/null +++ b/Skins/7lqdv4/ranking-s-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d94bb0957794e607b6dcbc81064801c7c90e3a4c62db0cc7b22d000115c61ae +size 1262 diff --git a/Skins/7lqdv4/ranking-s.png b/Skins/7lqdv4/ranking-s.png new file mode 100644 index 00000000..46cce7d1 --- /dev/null +++ b/Skins/7lqdv4/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176b4c8e1e3c4a0cd22b811efb0cc8b34bc991332fbb68e488e4a8ac64280669 +size 3401 diff --git a/Skins/7lqdv4/ranking-sh-small.png b/Skins/7lqdv4/ranking-sh-small.png new file mode 100644 index 00000000..7ab0217f --- /dev/null +++ b/Skins/7lqdv4/ranking-sh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5badb979f6852f020387b7dffc6abb3a68af842c15f35022e077e2ae472c4b19 +size 1262 diff --git a/Skins/7lqdv4/ranking-sh.png b/Skins/7lqdv4/ranking-sh.png new file mode 100644 index 00000000..04593acb --- /dev/null +++ b/Skins/7lqdv4/ranking-sh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e145c88c81556f7d5ff3ad5a363265d8699a8dfc1482524c32516aa3f9dde60a +size 3401 diff --git a/Skins/7lqdv4/ranking-title.png b/Skins/7lqdv4/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/7lqdv4/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/7lqdv4/ranking-winner.png b/Skins/7lqdv4/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/7lqdv4/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/7lqdv4/ranking-x-small.png b/Skins/7lqdv4/ranking-x-small.png new file mode 100644 index 00000000..fa3cc7d3 --- /dev/null +++ b/Skins/7lqdv4/ranking-x-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258b404bbf040770dc30e0124bed33bd865cfb5b57cb317d491c90b10171640d +size 1199 diff --git a/Skins/7lqdv4/ranking-x.png b/Skins/7lqdv4/ranking-x.png new file mode 100644 index 00000000..43c8b765 --- /dev/null +++ b/Skins/7lqdv4/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b0d1e8c788dff20f4340dbc58b01d32055c66b9d3441ba8e924a453997ff11 +size 2864 diff --git a/Skins/7lqdv4/ranking-xh-small.png b/Skins/7lqdv4/ranking-xh-small.png new file mode 100644 index 00000000..3039873b --- /dev/null +++ b/Skins/7lqdv4/ranking-xh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98646b05fdeeeabb7b98c19c4d957bd81e4bd91317061136a1b052cc920e655 +size 1199 diff --git a/Skins/7lqdv4/ranking-xh.png b/Skins/7lqdv4/ranking-xh.png new file mode 100644 index 00000000..f7c7e7ea --- /dev/null +++ b/Skins/7lqdv4/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95651000313a174438bc4f09184c34143d9245ce8ed7a4f0813164260c17aad +size 2864 diff --git a/Skins/7lqdv4/ready.png b/Skins/7lqdv4/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/reversearrow.png b/Skins/7lqdv4/reversearrow.png new file mode 100644 index 00000000..250877e0 --- /dev/null +++ b/Skins/7lqdv4/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa769b0de4c2bae0713427dff5f94efda9825d09b096df0b49c217502913a13 +size 4853 diff --git a/Skins/7lqdv4/score-0.png b/Skins/7lqdv4/score-0.png new file mode 100644 index 00000000..855c8e71 --- /dev/null +++ b/Skins/7lqdv4/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7170a4bced5520f101074bf05ba7bfcfa240ee6d0024dde437c97b167cf3902 +size 530 diff --git a/Skins/7lqdv4/score-1.png b/Skins/7lqdv4/score-1.png new file mode 100644 index 00000000..70878031 --- /dev/null +++ b/Skins/7lqdv4/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595b96e50ba6a1c465fbebb37155946a3079ed3e40ea2c368d1f816b34b69803 +size 284 diff --git a/Skins/7lqdv4/score-2.png b/Skins/7lqdv4/score-2.png new file mode 100644 index 00000000..892a7cb6 --- /dev/null +++ b/Skins/7lqdv4/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d22ebbcec0d8124c61f2035c5298c04a905cf293769c9c3728efa0e1f00166 +size 465 diff --git a/Skins/7lqdv4/score-3.png b/Skins/7lqdv4/score-3.png new file mode 100644 index 00000000..d06a275a --- /dev/null +++ b/Skins/7lqdv4/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d8e7dd630fce143b22e6f2366eae27779aba36f2f327f7b21919f63c96c11e +size 525 diff --git a/Skins/7lqdv4/score-4.png b/Skins/7lqdv4/score-4.png new file mode 100644 index 00000000..12e11a93 --- /dev/null +++ b/Skins/7lqdv4/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681db845b3a800c7ba924c694a8de925a38aeb66f5d71cb9a46622fdcbcfd736 +size 433 diff --git a/Skins/7lqdv4/score-5.png b/Skins/7lqdv4/score-5.png new file mode 100644 index 00000000..2d75f7d7 --- /dev/null +++ b/Skins/7lqdv4/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8819f5f0101099bb01631e9bd405c157a4345f57cd9cb69013df1fa29abde895 +size 491 diff --git a/Skins/7lqdv4/score-6.png b/Skins/7lqdv4/score-6.png new file mode 100644 index 00000000..fab1e0be --- /dev/null +++ b/Skins/7lqdv4/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ef287a30f81fe6c72e06b09ae10ccf529ee80f026389268018f4bcca87e74b +size 545 diff --git a/Skins/7lqdv4/score-7.png b/Skins/7lqdv4/score-7.png new file mode 100644 index 00000000..f6a6efe1 --- /dev/null +++ b/Skins/7lqdv4/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2684c2d794f6f6ddb0172e5c6dc62a14c441186c5310debbd1f06e16f3e9fd1a +size 378 diff --git a/Skins/7lqdv4/score-8.png b/Skins/7lqdv4/score-8.png new file mode 100644 index 00000000..bb5af047 --- /dev/null +++ b/Skins/7lqdv4/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc655c3def011471916f520dab0e9e5f97c924b905d8af838f16d1878ac0980a +size 517 diff --git a/Skins/7lqdv4/score-9.png b/Skins/7lqdv4/score-9.png new file mode 100644 index 00000000..4679ed1a --- /dev/null +++ b/Skins/7lqdv4/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea51b6d119aa6c25435748ed2f685ef0e75fae500b5d84f58975f9169325e69 +size 552 diff --git a/Skins/7lqdv4/score-comma.png b/Skins/7lqdv4/score-comma.png new file mode 100644 index 00000000..2a675b76 --- /dev/null +++ b/Skins/7lqdv4/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3ab83160dddd23fc3a762ea79653b5256fa8ba03c695b76a658846cff9de57 +size 253 diff --git a/Skins/7lqdv4/score-dot.png b/Skins/7lqdv4/score-dot.png new file mode 100644 index 00000000..8932c22e --- /dev/null +++ b/Skins/7lqdv4/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0bf1654e55dd0ad97bbdeb25c955cd249bd3c8ac11b478deef94c1c41de20e +size 190 diff --git a/Skins/7lqdv4/score-percent.png b/Skins/7lqdv4/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/score-x.png b/Skins/7lqdv4/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scorebar-bg.png b/Skins/7lqdv4/scorebar-bg.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scorebar-colour.png b/Skins/7lqdv4/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scorebar-marker.png b/Skins/7lqdv4/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-0.png b/Skins/7lqdv4/scoreentry-0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-1.png b/Skins/7lqdv4/scoreentry-1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-2.png b/Skins/7lqdv4/scoreentry-2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-3.png b/Skins/7lqdv4/scoreentry-3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-4.png b/Skins/7lqdv4/scoreentry-4.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-5.png b/Skins/7lqdv4/scoreentry-5.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-6.png b/Skins/7lqdv4/scoreentry-6.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-7.png b/Skins/7lqdv4/scoreentry-7.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-8.png b/Skins/7lqdv4/scoreentry-8.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-9.png b/Skins/7lqdv4/scoreentry-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-comma.png b/Skins/7lqdv4/scoreentry-comma.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-dot.png b/Skins/7lqdv4/scoreentry-dot.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-percent.png b/Skins/7lqdv4/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/scoreentry-x.png b/Skins/7lqdv4/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/selection-mod-autoplay.png b/Skins/7lqdv4/selection-mod-autoplay.png new file mode 100644 index 00000000..d038b109 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91323b06f800618e6ec4f03e15b8446853c3910663e7e358e3e91554a9092fbb +size 1434 diff --git a/Skins/7lqdv4/selection-mod-cinema.png b/Skins/7lqdv4/selection-mod-cinema.png new file mode 100644 index 00000000..a07e288a --- /dev/null +++ b/Skins/7lqdv4/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f93d840e63b2f389041d1205146cd6b4ac14046b67318abbf3f7fe13c359388 +size 1516 diff --git a/Skins/7lqdv4/selection-mod-doubletime.png b/Skins/7lqdv4/selection-mod-doubletime.png new file mode 100644 index 00000000..dc096498 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbcc499d6675e2c7869c339418148606b4215f4da6a10be03d84c0cdfbe4ff0 +size 1406 diff --git a/Skins/7lqdv4/selection-mod-easy.png b/Skins/7lqdv4/selection-mod-easy.png new file mode 100644 index 00000000..5582ec7d --- /dev/null +++ b/Skins/7lqdv4/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef93fba675b676f4fb378287175067d6e0d2b1bca10a57ae15778fa57c3c463 +size 1496 diff --git a/Skins/7lqdv4/selection-mod-flashlight.png b/Skins/7lqdv4/selection-mod-flashlight.png new file mode 100644 index 00000000..9af77228 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee4b3d556784214720d3a63f38b1e0f995eaa10805ec87ae7d86c40e852ca36 +size 1201 diff --git a/Skins/7lqdv4/selection-mod-halftime.png b/Skins/7lqdv4/selection-mod-halftime.png new file mode 100644 index 00000000..8cdca48f --- /dev/null +++ b/Skins/7lqdv4/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95975b94940934c336ecb449b473a6d14b61c40be2763c589344078b7c8601f9 +size 1331 diff --git a/Skins/7lqdv4/selection-mod-hardrock.png b/Skins/7lqdv4/selection-mod-hardrock.png new file mode 100644 index 00000000..f51b8da7 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb51fabe6571d18deb33bed0686aab54a34fd78bdf6255b4e62fe290d803110a +size 1313 diff --git a/Skins/7lqdv4/selection-mod-hidden.png b/Skins/7lqdv4/selection-mod-hidden.png new file mode 100644 index 00000000..c7102859 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a902784c8869bb928c703ab8fe24eaa8fa7019fc4f3b979060d430fc378d0f52 +size 1489 diff --git a/Skins/7lqdv4/selection-mod-nightcore.png b/Skins/7lqdv4/selection-mod-nightcore.png new file mode 100644 index 00000000..7ace5501 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b0494682ae955c4d824f00bea65974cc3547a2005ceed343d3a3cb63fc5a5b +size 1471 diff --git a/Skins/7lqdv4/selection-mod-nofail.png b/Skins/7lqdv4/selection-mod-nofail.png new file mode 100644 index 00000000..4e9d1a69 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3445da66df2285326ba74b9d2f79706b66a449016b48bd659406f705c10af9f5 +size 1321 diff --git a/Skins/7lqdv4/selection-mod-perfect.png b/Skins/7lqdv4/selection-mod-perfect.png new file mode 100644 index 00000000..3635467e --- /dev/null +++ b/Skins/7lqdv4/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00550bf913681dec3733deaef5dad846eae7910574dfe3c47a9f813c588a2db1 +size 1455 diff --git a/Skins/7lqdv4/selection-mod-relax.png b/Skins/7lqdv4/selection-mod-relax.png new file mode 100644 index 00000000..9bee0c0d --- /dev/null +++ b/Skins/7lqdv4/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6de3d4522d6e4376a9af4e44fba549d46a55b6d73f3e4a8c0254f513aa2aaef +size 1179 diff --git a/Skins/7lqdv4/selection-mod-relax2.png b/Skins/7lqdv4/selection-mod-relax2.png new file mode 100644 index 00000000..a748970c --- /dev/null +++ b/Skins/7lqdv4/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa07cb1d208df5197d020fd82781e6d6a2ee43d59ab8ff8d54bfe4c31f15973 +size 1527 diff --git a/Skins/7lqdv4/selection-mod-scorev2.png b/Skins/7lqdv4/selection-mod-scorev2.png new file mode 100644 index 00000000..2a742f72 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ba7578bda14a99bf40bd3f05e7be442064603ebd68209f8dac91acbc457529 +size 1557 diff --git a/Skins/7lqdv4/selection-mod-spunout.png b/Skins/7lqdv4/selection-mod-spunout.png new file mode 100644 index 00000000..85e2f1f4 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17d429cb8c259d6f529c80a29747d899e34cb102b306c80615cacf11334b6af +size 1662 diff --git a/Skins/7lqdv4/selection-mod-suddendeath.png b/Skins/7lqdv4/selection-mod-suddendeath.png new file mode 100644 index 00000000..24ba5617 --- /dev/null +++ b/Skins/7lqdv4/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a5abd369689d03ff574851aafca1e99ecb5649a190e710fa08908529acd6af +size 1657 diff --git a/Skins/7lqdv4/selection-mode-over.png b/Skins/7lqdv4/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/selection-mode.png b/Skins/7lqdv4/selection-mode.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/selection-mods-over.png b/Skins/7lqdv4/selection-mods-over.png new file mode 100644 index 00000000..af719a71 --- /dev/null +++ b/Skins/7lqdv4/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc7fee41f735417ff72e799bce3fe3ac584b46f7f5befb2e33abb935643d910 +size 111 diff --git a/Skins/7lqdv4/selection-mods.png b/Skins/7lqdv4/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/selection-options-over.png b/Skins/7lqdv4/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/selection-options.png b/Skins/7lqdv4/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/selection-random-over.png b/Skins/7lqdv4/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/selection-random.png b/Skins/7lqdv4/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/selection-tab.png b/Skins/7lqdv4/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/7lqdv4/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/7lqdv4/skin.ini b/Skins/7lqdv4/skin.ini new file mode 100644 index 00000000..9a34f038 --- /dev/null +++ b/Skins/7lqdv4/skin.ini @@ -0,0 +1,24 @@ +// skin.ini generated by osu! skin mixer v2.9.0 + +[General] +Name: 33 +Author: osu! skin mixer by rednir +Version: latest +SliderBallFlip: 0 +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 1 + +[Colours] +SongSelectActiveText: 255,255,255 +SliderBorder: 255, 255, 255 +SliderTrackOverride: 0,0,0 +Combo1: 255,255,255 + +[Fonts] +ScoreOverlap: 7 +ComboPrefix: hide +HitCirclePrefix: default +HitCircleOverlap: 3 + +[CatchTheBeat] diff --git a/Skins/7lqdv4/sliderb0.png b/Skins/7lqdv4/sliderb0.png new file mode 100644 index 00000000..4b9f9a1b --- /dev/null +++ b/Skins/7lqdv4/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b2d2995d72ccf0ff13347158a16be5ffeb9b423d6d87ac680d3dae4cffe56c +size 8212 diff --git a/Skins/7lqdv4/sliderendcircle.png b/Skins/7lqdv4/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/7lqdv4/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/7lqdv4/sliderfollowcircle.png b/Skins/7lqdv4/sliderfollowcircle.png new file mode 100644 index 00000000..bcce2d99 --- /dev/null +++ b/Skins/7lqdv4/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e7989b0fa6a60f7a10a068b0ec98b5c5dc0e5285dd99f8fc33ae06472c711d +size 2779 diff --git a/Skins/7lqdv4/sliderpoint10.png b/Skins/7lqdv4/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/sliderpoint30.png b/Skins/7lqdv4/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/sliderscorepoint.png b/Skins/7lqdv4/sliderscorepoint.png new file mode 100644 index 00000000..1e53cf17 --- /dev/null +++ b/Skins/7lqdv4/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1816441d3d1589160925762fd6ba36cc7d3f949b4d795edf567d2cabcea051 +size 1426 diff --git a/Skins/7lqdv4/sliderscorepoint@2x.png b/Skins/7lqdv4/sliderscorepoint@2x.png new file mode 100644 index 00000000..e3c4a631 --- /dev/null +++ b/Skins/7lqdv4/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3402f9043cff21c8693995e92ea6df3f11e024ba368151004c6ef8b23de3f524 +size 3899 diff --git a/Skins/7lqdv4/soft-hitclap.wav b/Skins/7lqdv4/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/7lqdv4/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/7lqdv4/soft-hitfinish.wav b/Skins/7lqdv4/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/7lqdv4/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/7lqdv4/soft-hitnormal.wav b/Skins/7lqdv4/soft-hitnormal.wav new file mode 100644 index 00000000..d26e6c9d --- /dev/null +++ b/Skins/7lqdv4/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24b4b6fb8c45831611a811b4ef7cbe521ab807a7c60cee82a9873f3a60a5a20 +size 39922 diff --git a/Skins/7lqdv4/soft-hitwhistle.wav b/Skins/7lqdv4/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/7lqdv4/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/7lqdv4/soft-sliderslide.wav b/Skins/7lqdv4/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/7lqdv4/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/7lqdv4/soft-slidertick.wav b/Skins/7lqdv4/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/7lqdv4/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/7lqdv4/soft-sliderwhistle.wav b/Skins/7lqdv4/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/7lqdv4/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/7lqdv4/spinner-approachcircle.png b/Skins/7lqdv4/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/7lqdv4/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/7lqdv4/spinner-approachcircle@2x.png b/Skins/7lqdv4/spinner-approachcircle@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/7lqdv4/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/7lqdv4/spinner-background.png b/Skins/7lqdv4/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/7lqdv4/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/7lqdv4/spinner-bottom.png b/Skins/7lqdv4/spinner-bottom.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/spinner-bottom@2x.png b/Skins/7lqdv4/spinner-bottom@2x.png new file mode 100644 index 00000000..76e175fb --- /dev/null +++ b/Skins/7lqdv4/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04d400f0b6d1e0d390ade101df3877b8c6bcec8a7f21b2308f3e56c59b8b03b +size 3836 diff --git a/Skins/7lqdv4/spinner-circle.png b/Skins/7lqdv4/spinner-circle.png new file mode 100644 index 00000000..b313729e --- /dev/null +++ b/Skins/7lqdv4/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ea51d5598e295b8fedfaef75463641fa1cabc3bc0b6b4528bfd996cf3ed6b5 +size 474510 diff --git a/Skins/7lqdv4/spinner-circle@2x.png b/Skins/7lqdv4/spinner-circle@2x.png new file mode 100644 index 00000000..ada7e3ab --- /dev/null +++ b/Skins/7lqdv4/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1111404bb7e81be3f4c9a34fd59f0a27eaa8af1b045dab7692c34810620fc10 +size 46092 diff --git a/Skins/7lqdv4/spinner-clear.png b/Skins/7lqdv4/spinner-clear.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/spinner-glow.png b/Skins/7lqdv4/spinner-glow.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/spinner-metre.png b/Skins/7lqdv4/spinner-metre.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/spinner-middle.png b/Skins/7lqdv4/spinner-middle.png new file mode 100644 index 00000000..f63798c4 --- /dev/null +++ b/Skins/7lqdv4/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5248604685eb1a9cef617236135ebaf6e56142f51383eecc27b06bcd15fd5ae +size 105477 diff --git a/Skins/7lqdv4/spinner-middle2.png b/Skins/7lqdv4/spinner-middle2.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/7lqdv4/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/7lqdv4/spinner-middle2@2x.png b/Skins/7lqdv4/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/7lqdv4/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/7lqdv4/spinner-middle@2x.png b/Skins/7lqdv4/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/7lqdv4/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/7lqdv4/spinner-osu.png b/Skins/7lqdv4/spinner-osu.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/7lqdv4/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/7lqdv4/spinner-rpm.png b/Skins/7lqdv4/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/spinner-spin.png b/Skins/7lqdv4/spinner-spin.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/7lqdv4/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/7lqdv4/spinner-top.png b/Skins/7lqdv4/spinner-top.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/7lqdv4/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/7lqdv4/spinnerbonus.ogg b/Skins/7lqdv4/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/7lqdv4/spinnerspin.ogg b/Skins/7lqdv4/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/7lqdv4/star.png b/Skins/7lqdv4/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/7lqdv4/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/7lqdv4/star2.png b/Skins/7lqdv4/star2.png new file mode 100644 index 00000000..44472fb5 --- /dev/null +++ b/Skins/7lqdv4/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e6e4ac15645a4ebc64dd27b1fee370d81151ce769f3b68376f60c00b3b4bc6 +size 201 diff --git a/Skins/Aleph DT/ASSets/default/default-0@2x.png b/Skins/Aleph DT/ASSets/default/default-0@2x.png new file mode 100644 index 00000000..32ad765e --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31218a6a187aabad96b229cd3ba1076a32469cca9f1a7f3140961d7452319be2 +size 913 diff --git a/Skins/Aleph DT/ASSets/default/default-1@2x.png b/Skins/Aleph DT/ASSets/default/default-1@2x.png new file mode 100644 index 00000000..aeae5a84 --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9bd63a5d2e02f4cb62c8deb5e8a71e54dc203fac6ca452f89da2c7d2b02663 +size 40614 diff --git a/Skins/Aleph DT/ASSets/default/default-2@2x.png b/Skins/Aleph DT/ASSets/default/default-2@2x.png new file mode 100644 index 00000000..089029b8 --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a957f123bf52e808c934360761dbf7a43c41631bf47d62c54bdd93b2f8469ed4 +size 42815 diff --git a/Skins/Aleph DT/ASSets/default/default-3@2x.png b/Skins/Aleph DT/ASSets/default/default-3@2x.png new file mode 100644 index 00000000..939aef73 --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4af56a5cd72181126dd54a262ad0026c49b84ae4826cec57d0a3e37b43a1d8a +size 43009 diff --git a/Skins/Aleph DT/ASSets/default/default-4@2x.png b/Skins/Aleph DT/ASSets/default/default-4@2x.png new file mode 100644 index 00000000..2565b9a1 --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70f4fa97825d47662f9138119643719feae688d849e44a8309c99411c62b29d +size 41783 diff --git a/Skins/Aleph DT/ASSets/default/default-5@2x.png b/Skins/Aleph DT/ASSets/default/default-5@2x.png new file mode 100644 index 00000000..a71ce610 --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d5c747ca6bda90814a0d33b9a5a60c199a22c6d782878faa06eaa2c7ddac46 +size 42779 diff --git a/Skins/Aleph DT/ASSets/default/default-6@2x.png b/Skins/Aleph DT/ASSets/default/default-6@2x.png new file mode 100644 index 00000000..89a6c6b7 --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bdd1aa7c6a0fc8611ddbf8946772626ce793d66d30ec36296733f204457e7b +size 43096 diff --git a/Skins/Aleph DT/ASSets/default/default-7@2x.png b/Skins/Aleph DT/ASSets/default/default-7@2x.png new file mode 100644 index 00000000..a6b79f14 --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3de77d27a53fb89b80919ac428ebf11326e07e180d734104019f486763114a +size 41867 diff --git a/Skins/Aleph DT/ASSets/default/default-8@2x.png b/Skins/Aleph DT/ASSets/default/default-8@2x.png new file mode 100644 index 00000000..452bff3d --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07de31fc8c54bbb39ba78fe19841a27df23a5079ff2eab0ccf96f9a1d314b293 +size 43240 diff --git a/Skins/Aleph DT/ASSets/default/default-9@2x.png b/Skins/Aleph DT/ASSets/default/default-9@2x.png new file mode 100644 index 00000000..bddf75f5 --- /dev/null +++ b/Skins/Aleph DT/ASSets/default/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e51a68ce12f28706420f0a51c2462855d8c33aee00c3f92481a65388b224e872 +size 42721 diff --git a/Skins/Aleph DT/ASSets/nightcore-kick.wav b/Skins/Aleph DT/ASSets/nightcore-kick.wav new file mode 100644 index 00000000..8ba57ea0 --- /dev/null +++ b/Skins/Aleph DT/ASSets/nightcore-kick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2aa882e13ea4a500dc611461905731041aae6ed793c1319c93928be2af4e06 +size 302548 diff --git a/Skins/Aleph DT/ASSets/score/score-0.png b/Skins/Aleph DT/ASSets/score/score-0.png new file mode 100644 index 00000000..b0d97ed3 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394197cdee2bf3ec3a87019a6a29d10a085e56021f54099c8fcce50e3ddacebc +size 3433 diff --git a/Skins/Aleph DT/ASSets/score/score-0@2x.png b/Skins/Aleph DT/ASSets/score/score-0@2x.png new file mode 100644 index 00000000..49c53af7 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2640126dfd8541ba7de7de1933c8e4261829a2012adcbb08578b7f90c6787270 +size 3101 diff --git a/Skins/Aleph DT/ASSets/score/score-1.png b/Skins/Aleph DT/ASSets/score/score-1.png new file mode 100644 index 00000000..0d1ebe0d --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d113cfde1f6f8cc8a2bbfa52bb0ad35a5d85e259ee0bc3a15e03f4c7b74c6e90 +size 2926 diff --git a/Skins/Aleph DT/ASSets/score/score-1@2x.png b/Skins/Aleph DT/ASSets/score/score-1@2x.png new file mode 100644 index 00000000..2155b475 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b29446858ac4c5c592aaf5d6af7893bcb69f18004532dbba911e572208088dc +size 2020 diff --git a/Skins/Aleph DT/ASSets/score/score-2.png b/Skins/Aleph DT/ASSets/score/score-2.png new file mode 100644 index 00000000..408e1cdb --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2782ad0951a15087a845367afa8f2cba7473c284a68f2ff85aeb6c517e9f6c6 +size 3414 diff --git a/Skins/Aleph DT/ASSets/score/score-2@2x.png b/Skins/Aleph DT/ASSets/score/score-2@2x.png new file mode 100644 index 00000000..e410c7be --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4ee1bc834d5a37b1d1116ce74f4ecd42583ce336cc7bb8e58361f116330c78 +size 2882 diff --git a/Skins/Aleph DT/ASSets/score/score-3.png b/Skins/Aleph DT/ASSets/score/score-3.png new file mode 100644 index 00000000..86177a14 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf66868678715dbb35d4fa05bdec44967a86a79c6182e8b4b1080fe6c5bb817 +size 3439 diff --git a/Skins/Aleph DT/ASSets/score/score-3@2x.png b/Skins/Aleph DT/ASSets/score/score-3@2x.png new file mode 100644 index 00000000..05f89a25 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae7513ffb0802742ada9bef8c755dbe1dd8e53d19c2bce3a8b66473c0c24960 +size 3105 diff --git a/Skins/Aleph DT/ASSets/score/score-4.png b/Skins/Aleph DT/ASSets/score/score-4.png new file mode 100644 index 00000000..245c95ee --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90311b953c402d7351eb6fff11c42e71f47e0113fc5533e19845570a251b6e53 +size 3334 diff --git a/Skins/Aleph DT/ASSets/score/score-4@2x.png b/Skins/Aleph DT/ASSets/score/score-4@2x.png new file mode 100644 index 00000000..5a8db75e --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41a2e9737cac8ac64ffeeaf004b401d6a863ee461664e50e11ffb7f58f69730 +size 2772 diff --git a/Skins/Aleph DT/ASSets/score/score-5.png b/Skins/Aleph DT/ASSets/score/score-5.png new file mode 100644 index 00000000..725ce736 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ad9cb986cf1c8e7ec73f11052c7f80cb44f6155a267c177ca874183651e63a +size 3323 diff --git a/Skins/Aleph DT/ASSets/score/score-5@2x.png b/Skins/Aleph DT/ASSets/score/score-5@2x.png new file mode 100644 index 00000000..b4a0ab1e --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970b23213b42db05fd553be6f8cb32776b5c32e4926d9c5fbbb9281a82d3ee04 +size 2856 diff --git a/Skins/Aleph DT/ASSets/score/score-6.png b/Skins/Aleph DT/ASSets/score/score-6.png new file mode 100644 index 00000000..9213868c --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cfc4cd71cd6f602d4765cd7a4f77739c20499b5803ff685e95636bb5f56fa3 +size 3541 diff --git a/Skins/Aleph DT/ASSets/score/score-6@2x.png b/Skins/Aleph DT/ASSets/score/score-6@2x.png new file mode 100644 index 00000000..70626677 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06d6ace2d9f79bccf4e0542a922fc6c968a069f45dd2835aa2419bd911adc71 +size 3274 diff --git a/Skins/Aleph DT/ASSets/score/score-7.png b/Skins/Aleph DT/ASSets/score/score-7.png new file mode 100644 index 00000000..b3895d5b --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbec68017836b68bae612827f74a8a0356c2c4f877e99e274cd7d619c3d66117 +size 3287 diff --git a/Skins/Aleph DT/ASSets/score/score-7@2x.png b/Skins/Aleph DT/ASSets/score/score-7@2x.png new file mode 100644 index 00000000..5827341c --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04758d2f5b105548c1d5da23064a6626194c6ac175a1bc04a18ac0c4c1bdd840 +size 3109 diff --git a/Skins/Aleph DT/ASSets/score/score-8.png b/Skins/Aleph DT/ASSets/score/score-8.png new file mode 100644 index 00000000..c31c805b --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33dfd72a1c67a7ea68dfe103227dd6962371a91882d62735f4132f04e64dc57b +size 3667 diff --git a/Skins/Aleph DT/ASSets/score/score-8@2x.png b/Skins/Aleph DT/ASSets/score/score-8@2x.png new file mode 100644 index 00000000..1ca9a3ea --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80cc75fa9d2c34ce46209d3f5ff0aa65e1d52ef23dc724e3b370a32cc97e6e5 +size 3906 diff --git a/Skins/Aleph DT/ASSets/score/score-9.png b/Skins/Aleph DT/ASSets/score/score-9.png new file mode 100644 index 00000000..aeaaf0c4 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d1a5ebc31a64edff85c84a28b9a7da2297acd516e4047649df9fdf1b5a20d4 +size 3534 diff --git a/Skins/Aleph DT/ASSets/score/score-9@2x.png b/Skins/Aleph DT/ASSets/score/score-9@2x.png new file mode 100644 index 00000000..bab882f0 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45352d9439a91c82a4bbd228b506432f120f41f91ab0d3a09196cbf26ac5f274 +size 4319 diff --git a/Skins/Aleph DT/ASSets/score/score-comma.png b/Skins/Aleph DT/ASSets/score/score-comma.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/Aleph DT/ASSets/score/score-comma@2x.png b/Skins/Aleph DT/ASSets/score/score-comma@2x.png new file mode 100644 index 00000000..492d6fdf --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a02a013ad0a7cd51e9f0a0b6b439d1e40a3c899448caef835ea8682ad628d7a +size 1951 diff --git a/Skins/Aleph DT/ASSets/score/score-dot.png b/Skins/Aleph DT/ASSets/score/score-dot.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/Aleph DT/ASSets/score/score-dot@2x.png b/Skins/Aleph DT/ASSets/score/score-dot@2x.png new file mode 100644 index 00000000..06378df0 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c7883503cef0767abfdf774afd4db6eb00f8aa56409524e5cc01016daffbe5 +size 484 diff --git a/Skins/Aleph DT/ASSets/score/score-percent.png b/Skins/Aleph DT/ASSets/score/score-percent.png new file mode 100644 index 00000000..69be85f4 --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463688b71d33f4c476deddd20df83dfcffbb450f7a5277704442f494fbc49570 +size 3038 diff --git a/Skins/Aleph DT/ASSets/score/score-percent@2x.png b/Skins/Aleph DT/ASSets/score/score-percent@2x.png new file mode 100644 index 00000000..e52d451d --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dad4571ac0ca3092d63b18a879cd57b73dae83445ae28ab63639b92da0bf0db +size 439 diff --git a/Skins/Aleph DT/ASSets/score/score-x.png b/Skins/Aleph DT/ASSets/score/score-x.png new file mode 100644 index 00000000..906648fa --- /dev/null +++ b/Skins/Aleph DT/ASSets/score/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ff24028255e3787e38390106f32b20bb8c6af2943c418f3436b584ce9d5674 +size 2810 diff --git a/Skins/Aleph DT/AntiTilt/combobreak.wav b/Skins/Aleph DT/AntiTilt/combobreak.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aleph DT/AntiTilt/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aleph DT/AntiTilt/hit0.png b/Skins/Aleph DT/AntiTilt/hit0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/Aleph DT/AntiTilt/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/Aleph DT/Cursor/Yellow Tjrail/cursor.png b/Skins/Aleph DT/Cursor/Yellow Tjrail/cursor.png new file mode 100644 index 00000000..819f5cea --- /dev/null +++ b/Skins/Aleph DT/Cursor/Yellow Tjrail/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ffce54742589a5ca180941c4bcd0b12553979a0ea452c19bc765b6f8b2f7acc +size 4559 diff --git a/Skins/Aleph DT/Cursor/Yellow Tjrail/cursortrail.png b/Skins/Aleph DT/Cursor/Yellow Tjrail/cursortrail.png new file mode 100644 index 00000000..e5a3bc68 --- /dev/null +++ b/Skins/Aleph DT/Cursor/Yellow Tjrail/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c671e6edea228c904df8ded56293de5b53a18b4289f94f4a264138421d3ff04 +size 3981 diff --git a/Skins/Aleph DT/Miss/combobreak.wav b/Skins/Aleph DT/Miss/combobreak.wav new file mode 100644 index 00000000..836a0ccb --- /dev/null +++ b/Skins/Aleph DT/Miss/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73300d013afdafa2f074e857c0d0f86988450208204a89926942f28314cd9f00 +size 397636 diff --git a/Skins/Aleph DT/Miss/hit0.png b/Skins/Aleph DT/Miss/hit0.png new file mode 100644 index 00000000..17c41542 --- /dev/null +++ b/Skins/Aleph DT/Miss/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f017e2570518d07860b2fe03f3245323f8b04972ccf82d9800a90eb83d04d48 +size 1872 diff --git a/Skins/Aleph DT/Miss/hit0@2x.png b/Skins/Aleph DT/Miss/hit0@2x.png new file mode 100644 index 00000000..0506a05a --- /dev/null +++ b/Skins/Aleph DT/Miss/hit0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c92282e57d3e776e48198f4e18d98ccfdbfb7c5a6f4c77000fe08dafe2578e +size 15795 diff --git a/Skins/Aleph DT/applause.mp3 b/Skins/Aleph DT/applause.mp3 new file mode 100644 index 00000000..9c50a29f --- /dev/null +++ b/Skins/Aleph DT/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d072b609d5953904ea545a8272d45e7db7a15c14976f393c45f4512c125154 +size 21165 diff --git a/Skins/Aleph DT/approachcircle.png b/Skins/Aleph DT/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/Aleph DT/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/Aleph DT/button-left.png b/Skins/Aleph DT/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/button-middle.png b/Skins/Aleph DT/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/button-right.png b/Skins/Aleph DT/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/click-short-confirm.wav b/Skins/Aleph DT/click-short-confirm.wav new file mode 100644 index 00000000..9c77fcd4 --- /dev/null +++ b/Skins/Aleph DT/click-short-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4131e6c5e331609e617372f7a2b04702faaefe6bbaf1ee801b7c3621b75609a0 +size 35150 diff --git a/Skins/Aleph DT/click-short.wav b/Skins/Aleph DT/click-short.wav new file mode 100644 index 00000000..e1581362 --- /dev/null +++ b/Skins/Aleph DT/click-short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a601929366be9e3847e3a0ae8b0e7b45f140a13a038ad314209598b48726abcc +size 19278 diff --git a/Skins/Aleph DT/combo-0@2x.png b/Skins/Aleph DT/combo-0@2x.png new file mode 100644 index 00000000..53836426 --- /dev/null +++ b/Skins/Aleph DT/combo-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4af794a0ddcb141390a0145b49158dc383451ce3395657298e56af54f204e6 +size 3464 diff --git a/Skins/Aleph DT/combo-1@2x.png b/Skins/Aleph DT/combo-1@2x.png new file mode 100644 index 00000000..9cdf9f8a --- /dev/null +++ b/Skins/Aleph DT/combo-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4050f2430cdf33482ab7c77e88473b1666b50cca188969e02acec021d07c7a8 +size 2230 diff --git a/Skins/Aleph DT/combo-2@2x.png b/Skins/Aleph DT/combo-2@2x.png new file mode 100644 index 00000000..08c49b49 --- /dev/null +++ b/Skins/Aleph DT/combo-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3158636859a1cfbdd93476a6ed1bf16d1d1523c5170adb682710d58497d17066 +size 5054 diff --git a/Skins/Aleph DT/combo-3@2x.png b/Skins/Aleph DT/combo-3@2x.png new file mode 100644 index 00000000..8f358645 --- /dev/null +++ b/Skins/Aleph DT/combo-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed469efc6897c9b9b4b6e1a213c041c6d4d87712b7b695673f55f2d2f2b9b023 +size 4864 diff --git a/Skins/Aleph DT/combo-4@2x.png b/Skins/Aleph DT/combo-4@2x.png new file mode 100644 index 00000000..a9d6d899 --- /dev/null +++ b/Skins/Aleph DT/combo-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09455808805e03eff964100b647cbc066c697529c5fb14a7f11246721ce89c09 +size 4170 diff --git a/Skins/Aleph DT/combo-5@2x.png b/Skins/Aleph DT/combo-5@2x.png new file mode 100644 index 00000000..bd114c39 --- /dev/null +++ b/Skins/Aleph DT/combo-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce5a950131ae4eb5d5a2d53562c41450125414e805899c5cf5bd9f5bf1a3dce +size 4387 diff --git a/Skins/Aleph DT/combo-6@2x.png b/Skins/Aleph DT/combo-6@2x.png new file mode 100644 index 00000000..287e923c --- /dev/null +++ b/Skins/Aleph DT/combo-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d54e08d877fa640ab51141a13536fc0266d929d93a1dd207e486518da28d3b4 +size 4621 diff --git a/Skins/Aleph DT/combo-7@2x.png b/Skins/Aleph DT/combo-7@2x.png new file mode 100644 index 00000000..a5d50315 --- /dev/null +++ b/Skins/Aleph DT/combo-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f072e69ab9d53df7ca05f5253ea43fe812489566744df51f597a9b1c10c62469 +size 4191 diff --git a/Skins/Aleph DT/combo-8@2x.png b/Skins/Aleph DT/combo-8@2x.png new file mode 100644 index 00000000..c21b5d4a --- /dev/null +++ b/Skins/Aleph DT/combo-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b43eb8936876be905f63a0a257a585193d676aa2904fa70bb044ec225dbbdf8 +size 5059 diff --git a/Skins/Aleph DT/combo-9@2x.png b/Skins/Aleph DT/combo-9@2x.png new file mode 100644 index 00000000..b477fe25 --- /dev/null +++ b/Skins/Aleph DT/combo-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c527769cb91753da3c857b759e037a3e939681dea9c627554ad1a49b2aa7a389 +size 5095 diff --git a/Skins/Aleph DT/combobreak.wav b/Skins/Aleph DT/combobreak.wav new file mode 100644 index 00000000..836a0ccb --- /dev/null +++ b/Skins/Aleph DT/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73300d013afdafa2f074e857c0d0f86988450208204a89926942f28314cd9f00 +size 397636 diff --git a/Skins/Aleph DT/comboburst.png b/Skins/Aleph DT/comboburst.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/count1.png b/Skins/Aleph DT/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/count2.png b/Skins/Aleph DT/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/count3.png b/Skins/Aleph DT/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/cursor.png b/Skins/Aleph DT/cursor.png new file mode 100644 index 00000000..4158a6ae --- /dev/null +++ b/Skins/Aleph DT/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2499f975c2a9e6bff3aa239d21ece7c59797a19efed8d944840ce2ec1c52837a +size 5971 diff --git a/Skins/Aleph DT/cursortrail.png b/Skins/Aleph DT/cursortrail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/default-0.png b/Skins/Aleph DT/default-0.png new file mode 100644 index 00000000..b911c723 --- /dev/null +++ b/Skins/Aleph DT/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b754a9fb4dc915cd2d91472755dd2838ef8b93d2f427e9a04701fd87de80c9b0 +size 16121 diff --git a/Skins/Aleph DT/default-1.png b/Skins/Aleph DT/default-1.png new file mode 100644 index 00000000..5f0d33d2 --- /dev/null +++ b/Skins/Aleph DT/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766c7b50c1b3af4cc330c56568bf4550cf1f7eadad00fb4cda8c62f873ed7f4c +size 16830 diff --git a/Skins/Aleph DT/default-2.png b/Skins/Aleph DT/default-2.png new file mode 100644 index 00000000..e18bdd77 --- /dev/null +++ b/Skins/Aleph DT/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0588d74c4e1b95c76c77ea2810a330727d291b64b7a61eb33f1e821ef306e09 +size 18557 diff --git a/Skins/Aleph DT/default-3.png b/Skins/Aleph DT/default-3.png new file mode 100644 index 00000000..0374efea --- /dev/null +++ b/Skins/Aleph DT/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16925883adc86198379b9c067c212bce464ecb94793e6c3f2265488fdcc21e48 +size 18664 diff --git a/Skins/Aleph DT/default-4.png b/Skins/Aleph DT/default-4.png new file mode 100644 index 00000000..bdf6cd8e --- /dev/null +++ b/Skins/Aleph DT/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4395f3cb1b18facb735affdb31d07c4e0498c95a27328a83572ba144d4ca290d +size 17976 diff --git a/Skins/Aleph DT/default-5.png b/Skins/Aleph DT/default-5.png new file mode 100644 index 00000000..0bc93e25 --- /dev/null +++ b/Skins/Aleph DT/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25fbca95a3420857677089dd6681d1daa3e0326fd7fd7288cb0c72c28f2a6cc6 +size 18626 diff --git a/Skins/Aleph DT/default-6.png b/Skins/Aleph DT/default-6.png new file mode 100644 index 00000000..a57777d2 --- /dev/null +++ b/Skins/Aleph DT/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ec23865d0c86a88fe9e28f15055b633affcbdf77afd468bed752d48da9240e +size 18274 diff --git a/Skins/Aleph DT/default-7.png b/Skins/Aleph DT/default-7.png new file mode 100644 index 00000000..22d010cc --- /dev/null +++ b/Skins/Aleph DT/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd175b1aa15e02f8297789d7b621a93398c20af56a3da37f9a8cfa6ed003b4bc +size 17920 diff --git a/Skins/Aleph DT/default-8.png b/Skins/Aleph DT/default-8.png new file mode 100644 index 00000000..f846fef8 --- /dev/null +++ b/Skins/Aleph DT/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce9f1ff6e50c40f287b1ad319f7a3bfb60094b3458b2a2da3a908c7036b42295 +size 18708 diff --git a/Skins/Aleph DT/default-9.png b/Skins/Aleph DT/default-9.png new file mode 100644 index 00000000..6c2bd4e6 --- /dev/null +++ b/Skins/Aleph DT/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:207b8d74656e7d31249471c5e100e8a3ad68771943b0f22d2b04ec87b938bab9 +size 18329 diff --git a/Skins/Aleph DT/drum--hitwhistle.ogg b/Skins/Aleph DT/drum--hitwhistle.ogg new file mode 100644 index 00000000..6616f5ab --- /dev/null +++ b/Skins/Aleph DT/drum--hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e25b951022cc21468e6391381b05a9b98e6e5745e97d1b8fa5a8c76f42ccd8b +size 4426 diff --git a/Skins/Aleph DT/drum-hitclap.ogg b/Skins/Aleph DT/drum-hitclap.ogg new file mode 100644 index 00000000..a8fdf040 --- /dev/null +++ b/Skins/Aleph DT/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d82565469c50d222839009b1525c9ab42c18bd2f0fdcd3920c4ddbc369ae1d +size 4289 diff --git a/Skins/Aleph DT/drum-hitclap2.ogg b/Skins/Aleph DT/drum-hitclap2.ogg new file mode 100644 index 00000000..8ca3742f --- /dev/null +++ b/Skins/Aleph DT/drum-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad3745a5ced85a257671befabe399c3ee5beb34dbdb21d85df5f7adb95dfdf3 +size 18985 diff --git a/Skins/Aleph DT/drum-hitfinish.ogg b/Skins/Aleph DT/drum-hitfinish.ogg new file mode 100644 index 00000000..ea9e2ce9 --- /dev/null +++ b/Skins/Aleph DT/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d19152ab3a77bc58e8728cc9444ce0654531874adcb154cde260b9a33c75d176 +size 6182 diff --git a/Skins/Aleph DT/drum-hitnormal.ogg b/Skins/Aleph DT/drum-hitnormal.ogg new file mode 100644 index 00000000..3f251957 --- /dev/null +++ b/Skins/Aleph DT/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7471999530902745d6244210d02030192cad4e23fd65ff2438721f29e2f74e9d +size 6649 diff --git a/Skins/Aleph DT/drum-hitwhistle.ogg b/Skins/Aleph DT/drum-hitwhistle.ogg new file mode 100644 index 00000000..fd06f000 --- /dev/null +++ b/Skins/Aleph DT/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505b61cc15890f48e9a053cc5b866f74e5be7345f39b41ae000091de792a93ab +size 17028 diff --git a/Skins/Aleph DT/drum-sliderslide.ogg b/Skins/Aleph DT/drum-sliderslide.ogg new file mode 100644 index 00000000..ca1afbde --- /dev/null +++ b/Skins/Aleph DT/drum-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0e12d4a6358e8ba8f4ef6f8c15c095495bf177683e4d8afc6caa37ecfb55f6 +size 4426 diff --git a/Skins/Aleph DT/drum-slidertick.ogg b/Skins/Aleph DT/drum-slidertick.ogg new file mode 100644 index 00000000..a2318a07 --- /dev/null +++ b/Skins/Aleph DT/drum-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7afe8648aba33c0306b42330ced21820cdf63b7766ec90a82c71cf999780c9 +size 6292 diff --git a/Skins/Aleph DT/drum-sliderwhistle.wav b/Skins/Aleph DT/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aleph DT/failsound.mp3 b/Skins/Aleph DT/failsound.mp3 new file mode 100644 index 00000000..66491fee --- /dev/null +++ b/Skins/Aleph DT/failsound.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0356c45bd7bd370c98985cc6c52a433c95abaa9dbd930deb44425c0a0fbd2d +size 82539 diff --git a/Skins/Aleph DT/followpoint-0.png b/Skins/Aleph DT/followpoint-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/Aleph DT/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/Aleph DT/followpoint-1.png b/Skins/Aleph DT/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/followpoint-2.png b/Skins/Aleph DT/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/followpoint-3.png b/Skins/Aleph DT/followpoint-3.png new file mode 100644 index 00000000..0a813084 --- /dev/null +++ b/Skins/Aleph DT/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c453706eae3ea6773373ad554377cf769191cd94008723939d774ab52f1aad +size 1307 diff --git a/Skins/Aleph DT/followpoint-3@2x.png b/Skins/Aleph DT/followpoint-3@2x.png new file mode 100644 index 00000000..a585f033 --- /dev/null +++ b/Skins/Aleph DT/followpoint-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86bf89b823c7c0fb4572ccc81b81160a147af641c1b95a47129e1b2ce8a0ef9e +size 3426 diff --git a/Skins/Aleph DT/followpoint-4.png b/Skins/Aleph DT/followpoint-4.png new file mode 100644 index 00000000..0a813084 --- /dev/null +++ b/Skins/Aleph DT/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c453706eae3ea6773373ad554377cf769191cd94008723939d774ab52f1aad +size 1307 diff --git a/Skins/Aleph DT/followpoint-4@2x.png b/Skins/Aleph DT/followpoint-4@2x.png new file mode 100644 index 00000000..a585f033 --- /dev/null +++ b/Skins/Aleph DT/followpoint-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86bf89b823c7c0fb4572ccc81b81160a147af641c1b95a47129e1b2ce8a0ef9e +size 3426 diff --git a/Skins/Aleph DT/followpoint-5.png b/Skins/Aleph DT/followpoint-5.png new file mode 100644 index 00000000..0a813084 --- /dev/null +++ b/Skins/Aleph DT/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c453706eae3ea6773373ad554377cf769191cd94008723939d774ab52f1aad +size 1307 diff --git a/Skins/Aleph DT/followpoint-5@2x.png b/Skins/Aleph DT/followpoint-5@2x.png new file mode 100644 index 00000000..a585f033 --- /dev/null +++ b/Skins/Aleph DT/followpoint-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86bf89b823c7c0fb4572ccc81b81160a147af641c1b95a47129e1b2ce8a0ef9e +size 3426 diff --git a/Skins/Aleph DT/followpoint-6.png b/Skins/Aleph DT/followpoint-6.png new file mode 100644 index 00000000..0a813084 --- /dev/null +++ b/Skins/Aleph DT/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c453706eae3ea6773373ad554377cf769191cd94008723939d774ab52f1aad +size 1307 diff --git a/Skins/Aleph DT/followpoint-6@2x.png b/Skins/Aleph DT/followpoint-6@2x.png new file mode 100644 index 00000000..a585f033 --- /dev/null +++ b/Skins/Aleph DT/followpoint-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86bf89b823c7c0fb4572ccc81b81160a147af641c1b95a47129e1b2ce8a0ef9e +size 3426 diff --git a/Skins/Aleph DT/followpoint-7.png b/Skins/Aleph DT/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/followpoint-8.png b/Skins/Aleph DT/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/followpoint-9.png b/Skins/Aleph DT/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/followpoint.png b/Skins/Aleph DT/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/Aleph DT/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/Aleph DT/fsggsdfadsfgdfsg.rar b/Skins/Aleph DT/fsggsdfadsfgdfsg.rar new file mode 100644 index 00000000..db6d0483 Binary files /dev/null and b/Skins/Aleph DT/fsggsdfadsfgdfsg.rar differ diff --git a/Skins/Aleph DT/go.png b/Skins/Aleph DT/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/gos.wav b/Skins/Aleph DT/gos.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aleph DT/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aleph DT/hit0.png b/Skins/Aleph DT/hit0.png new file mode 100644 index 00000000..17c41542 --- /dev/null +++ b/Skins/Aleph DT/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f017e2570518d07860b2fe03f3245323f8b04972ccf82d9800a90eb83d04d48 +size 1872 diff --git a/Skins/Aleph DT/hit100-0.png b/Skins/Aleph DT/hit100-0.png new file mode 100644 index 00000000..c184c042 --- /dev/null +++ b/Skins/Aleph DT/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc1e99136415c2b621045be9dc67a8d7d15582a5387d1cd12f2e1eeaa55afd8e +size 3037 diff --git a/Skins/Aleph DT/hit100-0@2x.png b/Skins/Aleph DT/hit100-0@2x.png new file mode 100644 index 00000000..7086fc9d --- /dev/null +++ b/Skins/Aleph DT/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1926c7306214d4dc4a866e9a4c0c1c79e2725b135de3f9a3045566b9be9a5191 +size 6643 diff --git a/Skins/Aleph DT/hit100.png b/Skins/Aleph DT/hit100.png new file mode 100644 index 00000000..26b0727e --- /dev/null +++ b/Skins/Aleph DT/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a47859cfd5f6ffe759749ea6122ac54e11f698c24a26c50b8709ed89897d8cee +size 5406 diff --git a/Skins/Aleph DT/hit100@2x.png b/Skins/Aleph DT/hit100@2x.png new file mode 100644 index 00000000..165e1352 --- /dev/null +++ b/Skins/Aleph DT/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bb8815e994d9919a5a94ef0ba18a5a4952814464bcb555cecf19af9c8ff49d +size 9905 diff --git a/Skins/Aleph DT/hit100k-0.png b/Skins/Aleph DT/hit100k-0.png new file mode 100644 index 00000000..1a4ed56b --- /dev/null +++ b/Skins/Aleph DT/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3a170c6d32be66ac975ebb03b1852827c0ff67739d760b92fef8eb569b803d6 +size 4664 diff --git a/Skins/Aleph DT/hit100k-0@2x.png b/Skins/Aleph DT/hit100k-0@2x.png new file mode 100644 index 00000000..6fe97234 --- /dev/null +++ b/Skins/Aleph DT/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d2d65d765d7af47a87cd93106ef56033e146960ed490a738fd5a962e0bb837 +size 13252 diff --git a/Skins/Aleph DT/hit100k.png b/Skins/Aleph DT/hit100k.png new file mode 100644 index 00000000..cc294be4 --- /dev/null +++ b/Skins/Aleph DT/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b033fcd53e27bf1619e930fd5505554dc38e455cb53510f670fa61b77c733d99 +size 8638 diff --git a/Skins/Aleph DT/hit100k@2x.png b/Skins/Aleph DT/hit100k@2x.png new file mode 100644 index 00000000..2f07b86a --- /dev/null +++ b/Skins/Aleph DT/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0554d1f5f80c40db813f2e885d389c8451f5c042ea36b7a2d2aa33432e8ed3f7 +size 19758 diff --git a/Skins/Aleph DT/hit300-0.png b/Skins/Aleph DT/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Aleph DT/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Aleph DT/hit300.png b/Skins/Aleph DT/hit300.png new file mode 100644 index 00000000..3db5b98d --- /dev/null +++ b/Skins/Aleph DT/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8ce112d98630d8244058c248a6269cede14d5a8dff292d48e517f2d2aaf0d8 +size 8725 diff --git a/Skins/Aleph DT/hit300@2x.png b/Skins/Aleph DT/hit300@2x.png new file mode 100644 index 00000000..c8cf77ea --- /dev/null +++ b/Skins/Aleph DT/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b915d825b021a5d28a31dbef17cf05b61df0c6201ddd94be51d7a0c85702f1a0 +size 29168 diff --git a/Skins/Aleph DT/hit300g-0.png b/Skins/Aleph DT/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Aleph DT/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Aleph DT/hit300g.png b/Skins/Aleph DT/hit300g.png new file mode 100644 index 00000000..366e47b8 --- /dev/null +++ b/Skins/Aleph DT/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8f46402909e47450a4a23164770997804df152de52156c1297ecc36b1f11a2 +size 13309 diff --git a/Skins/Aleph DT/hit300g@2x.png b/Skins/Aleph DT/hit300g@2x.png new file mode 100644 index 00000000..97560839 --- /dev/null +++ b/Skins/Aleph DT/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f477b8b1d05056470ffcd9c824c50a4fbb46a4397654928e9e8286ee13f17a1b +size 43913 diff --git a/Skins/Aleph DT/hit300k-0.png b/Skins/Aleph DT/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Aleph DT/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Aleph DT/hit300k.png b/Skins/Aleph DT/hit300k.png new file mode 100644 index 00000000..389a8d7f --- /dev/null +++ b/Skins/Aleph DT/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad956afdad9660985d48e4899a2fb7e0a5d4dd26e5b423413c51976973785de +size 10754 diff --git a/Skins/Aleph DT/hit300k@2x.png b/Skins/Aleph DT/hit300k@2x.png new file mode 100644 index 00000000..2b01f000 --- /dev/null +++ b/Skins/Aleph DT/hit300k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1761ab92c37517e23870cbca707da79c2c18ef2b75d1cc145e67b294846f8fe3 +size 36806 diff --git a/Skins/Aleph DT/hit50-0.png b/Skins/Aleph DT/hit50-0.png new file mode 100644 index 00000000..16febfd5 --- /dev/null +++ b/Skins/Aleph DT/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fec2622270106480a7ac8c8730be52f19eee91f61063bf79cc79f0e01d30c60 +size 2288 diff --git a/Skins/Aleph DT/hit50-0@2x.png b/Skins/Aleph DT/hit50-0@2x.png new file mode 100644 index 00000000..fdbbd769 --- /dev/null +++ b/Skins/Aleph DT/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1ee3d1fb5f75e8d2603f804e5b5796f6880ff121fa418e4cfdb161e64c68c2 +size 7438 diff --git a/Skins/Aleph DT/hit50.png b/Skins/Aleph DT/hit50.png new file mode 100644 index 00000000..d4915080 --- /dev/null +++ b/Skins/Aleph DT/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a13c006aa4b8cc849089b9d8b136b94a132c085e897f1438d6b7e0c4f367fc7 +size 4317 diff --git a/Skins/Aleph DT/hit50@2x.png b/Skins/Aleph DT/hit50@2x.png new file mode 100644 index 00000000..bc6266c6 --- /dev/null +++ b/Skins/Aleph DT/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e62e9e9da19be0e45945700f113df27a98317ba33bfacfef8f8055801e4b0a +size 11656 diff --git a/Skins/Aleph DT/hitcircle.png b/Skins/Aleph DT/hitcircle.png new file mode 100644 index 00000000..23a447d3 --- /dev/null +++ b/Skins/Aleph DT/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13298598bf01ce506a3f72fef641e4d394b9be1eeb113f71a21fe53322f7cf7 +size 143 diff --git a/Skins/Aleph DT/hitcircle@2x.png b/Skins/Aleph DT/hitcircle@2x.png new file mode 100644 index 00000000..789bf452 --- /dev/null +++ b/Skins/Aleph DT/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36a719a45127623fa12f5d9e6aae8dbdb568fe334cb624d959ea52650612f399 +size 355 diff --git a/Skins/Aleph DT/hitcircleoverlay.png b/Skins/Aleph DT/hitcircleoverlay.png new file mode 100644 index 00000000..23a447d3 --- /dev/null +++ b/Skins/Aleph DT/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13298598bf01ce506a3f72fef641e4d394b9be1eeb113f71a21fe53322f7cf7 +size 143 diff --git a/Skins/Aleph DT/hitcircleoverlay@2x.png b/Skins/Aleph DT/hitcircleoverlay@2x.png new file mode 100644 index 00000000..789bf452 --- /dev/null +++ b/Skins/Aleph DT/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36a719a45127623fa12f5d9e6aae8dbdb568fe334cb624d959ea52650612f399 +size 355 diff --git a/Skins/Aleph DT/hitcircleselect.png b/Skins/Aleph DT/hitcircleselect.png new file mode 100644 index 00000000..9de202ac --- /dev/null +++ b/Skins/Aleph DT/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9134e578b7157a976151b16fa81d82de19f2174ee657d4a7cb9ac7ce35a96e18 +size 3578 diff --git a/Skins/Aleph DT/hitcircleselect@2x.png b/Skins/Aleph DT/hitcircleselect@2x.png new file mode 100644 index 00000000..796fa239 --- /dev/null +++ b/Skins/Aleph DT/hitcircleselect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948dc3875aea0743ff0c5e79cc4dea2d38e73909620296371c52e341af91e05 +size 10181 diff --git a/Skins/Aleph DT/inputoverlay-background.png b/Skins/Aleph DT/inputoverlay-background.png new file mode 100644 index 00000000..faa8d637 --- /dev/null +++ b/Skins/Aleph DT/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1c00c316056a6b1db2ae050db243344e6e1da6a106a8cf30a2658a8ae68147 +size 148 diff --git a/Skins/Aleph DT/inputoverlay-key.png b/Skins/Aleph DT/inputoverlay-key.png new file mode 100644 index 00000000..33caff76 --- /dev/null +++ b/Skins/Aleph DT/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5978743c56996fec2d55895798ede368aaafdee00ca5b8d194e0c023f364d9 +size 1948 diff --git a/Skins/Aleph DT/key-confirm.wav b/Skins/Aleph DT/key-confirm.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aleph DT/key-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aleph DT/key-delete.wav b/Skins/Aleph DT/key-delete.wav new file mode 100644 index 00000000..d48c5d1d --- /dev/null +++ b/Skins/Aleph DT/key-delete.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd49307ee16a1cfb3305c866a6f674c080fb6a84da7161cc089a7c5a9f83c39 +size 606 diff --git a/Skins/Aleph DT/key-press-1.mp3 b/Skins/Aleph DT/key-press-1.mp3 new file mode 100644 index 00000000..aa8d6808 --- /dev/null +++ b/Skins/Aleph DT/key-press-1.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f85f350232cb8397fc3351b0c9a33f0707a5f28a7d39e34ab1ff69a237a05b7 +size 4219 diff --git a/Skins/Aleph DT/key-press-1.wav b/Skins/Aleph DT/key-press-1.wav new file mode 100644 index 00000000..d48c5d1d --- /dev/null +++ b/Skins/Aleph DT/key-press-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd49307ee16a1cfb3305c866a6f674c080fb6a84da7161cc089a7c5a9f83c39 +size 606 diff --git a/Skins/Aleph DT/key-press-2.mp3 b/Skins/Aleph DT/key-press-2.mp3 new file mode 100644 index 00000000..bca4fe49 --- /dev/null +++ b/Skins/Aleph DT/key-press-2.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7744360d5cfce6f9ba58302d965b61137def752083d216398072fb9f23c8cb6f +size 4123 diff --git a/Skins/Aleph DT/key-press-2.wav b/Skins/Aleph DT/key-press-2.wav new file mode 100644 index 00000000..d48c5d1d --- /dev/null +++ b/Skins/Aleph DT/key-press-2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd49307ee16a1cfb3305c866a6f674c080fb6a84da7161cc089a7c5a9f83c39 +size 606 diff --git a/Skins/Aleph DT/key-press-3.mp3 b/Skins/Aleph DT/key-press-3.mp3 new file mode 100644 index 00000000..6153c748 --- /dev/null +++ b/Skins/Aleph DT/key-press-3.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3197455453adc28e2975f98ebaf9e93c2bf1f99de490289e7de5cbbc8ec786 +size 4363 diff --git a/Skins/Aleph DT/key-press-3.wav b/Skins/Aleph DT/key-press-3.wav new file mode 100644 index 00000000..d48c5d1d --- /dev/null +++ b/Skins/Aleph DT/key-press-3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd49307ee16a1cfb3305c866a6f674c080fb6a84da7161cc089a7c5a9f83c39 +size 606 diff --git a/Skins/Aleph DT/key-press-4.mp3 b/Skins/Aleph DT/key-press-4.mp3 new file mode 100644 index 00000000..014a1fde --- /dev/null +++ b/Skins/Aleph DT/key-press-4.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366e6420e58fb9b14c351c8a6f798f5d3b6a3db6ab78f092904ca9581eff8f3d +size 4075 diff --git a/Skins/Aleph DT/key-press-4.wav b/Skins/Aleph DT/key-press-4.wav new file mode 100644 index 00000000..d48c5d1d --- /dev/null +++ b/Skins/Aleph DT/key-press-4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd49307ee16a1cfb3305c866a6f674c080fb6a84da7161cc089a7c5a9f83c39 +size 606 diff --git a/Skins/Aleph DT/match-start.mp3 b/Skins/Aleph DT/match-start.mp3 new file mode 100644 index 00000000..ae6a43a7 --- /dev/null +++ b/Skins/Aleph DT/match-start.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b509170422fcf7004c80ab632e26ea6ac21738d8f9d5e6127c7deec9c0148ef5 +size 14504 diff --git a/Skins/Aleph DT/menu-back.png b/Skins/Aleph DT/menu-back.png new file mode 100644 index 00000000..8c0107c7 --- /dev/null +++ b/Skins/Aleph DT/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff691ee071b8fdff8cd4eb2334cb3cb1837982202ee756e66abccab23a26b412 +size 17640 diff --git a/Skins/Aleph DT/menu-background.jpg b/Skins/Aleph DT/menu-background.jpg new file mode 100644 index 00000000..0bf4e509 --- /dev/null +++ b/Skins/Aleph DT/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94fbe6802fae593d67440660e4766f187666c17d8d393853b746559528c3123b +size 25108 diff --git a/Skins/Aleph DT/menu-button-background.png b/Skins/Aleph DT/menu-button-background.png new file mode 100644 index 00000000..aa087727 --- /dev/null +++ b/Skins/Aleph DT/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e3dca71bd24a38f20bf9af0cc18672ca6324c04c5bafd220161006abca61d9 +size 554 diff --git a/Skins/Aleph DT/menu-freeplay-hover.wav b/Skins/Aleph DT/menu-freeplay-hover.wav new file mode 100644 index 00000000..7740d07f --- /dev/null +++ b/Skins/Aleph DT/menu-freeplay-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab515b980e7728dd5f4b6a339e1181a20d9c649da6af957434414f40a1656db9 +size 35624 diff --git a/Skins/Aleph DT/menu-play-hover.wav b/Skins/Aleph DT/menu-play-hover.wav new file mode 100644 index 00000000..747a10eb --- /dev/null +++ b/Skins/Aleph DT/menu-play-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d702dbdee3a552d1dc892d8eb1d2c3f12dd4c6b48769c94e3bd7608164d77053 +size 35624 diff --git a/Skins/Aleph DT/menuback.wav b/Skins/Aleph DT/menuback.wav new file mode 100644 index 00000000..5193200e --- /dev/null +++ b/Skins/Aleph DT/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ab217523b31c417771313827bbcb149908135412a1c7d326743e64955671b6 +size 44762 diff --git a/Skins/Aleph DT/menuclick.wav b/Skins/Aleph DT/menuclick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aleph DT/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aleph DT/menuhit.wav b/Skins/Aleph DT/menuhit.wav new file mode 100644 index 00000000..0e833a68 --- /dev/null +++ b/Skins/Aleph DT/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e1333e0f04d61673fb7546ddb4d9b9b3774e6a2372659cc4dbb584195cac39 +size 2220 diff --git a/Skins/Aleph DT/mode-osu-small.png b/Skins/Aleph DT/mode-osu-small.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aleph DT/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aleph DT/mode-osu-small@2x.png b/Skins/Aleph DT/mode-osu-small@2x.png new file mode 100644 index 00000000..a2c07f3f --- /dev/null +++ b/Skins/Aleph DT/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426d682ec7d58746ebfe747e3061a3ca8c378bf00e2d69b3cc8cc648f928f067 +size 91926 diff --git a/Skins/Aleph DT/mode-osu.png b/Skins/Aleph DT/mode-osu.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aleph DT/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aleph DT/nightcore-clap.ogg b/Skins/Aleph DT/nightcore-clap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aleph DT/nightcore-finish.ogg b/Skins/Aleph DT/nightcore-finish.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aleph DT/nightcore-hat.ogg b/Skins/Aleph DT/nightcore-hat.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aleph DT/nightcore-kick.ogg b/Skins/Aleph DT/nightcore-kick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aleph DT/normal-hitclap.ogg b/Skins/Aleph DT/normal-hitclap.ogg new file mode 100644 index 00000000..df1694eb --- /dev/null +++ b/Skins/Aleph DT/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbacf1c24bfac161b39b3bf75c5f27bc57e65e65231399f5c2edde830d9a61a9 +size 4289 diff --git a/Skins/Aleph DT/normal-hitfinish.ogg b/Skins/Aleph DT/normal-hitfinish.ogg new file mode 100644 index 00000000..d6588044 --- /dev/null +++ b/Skins/Aleph DT/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3172577e2f6e6b41cfed495cdd2794ff5fa9a7310f71bc5ee742a9cdb59fa87f +size 6182 diff --git a/Skins/Aleph DT/normal-hitnormal.ogg b/Skins/Aleph DT/normal-hitnormal.ogg new file mode 100644 index 00000000..1e2e1534 --- /dev/null +++ b/Skins/Aleph DT/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca33b3f8c38b3d10e9f7c31a52abf97bd8dd809b4633ac9e19ab4f431ceda2c4 +size 6610 diff --git a/Skins/Aleph DT/normal-hitwhistle.ogg b/Skins/Aleph DT/normal-hitwhistle.ogg new file mode 100644 index 00000000..4b39143e --- /dev/null +++ b/Skins/Aleph DT/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480480f2e8a736b92b55f2e527befbf5fa3dcca0c0dfc4286cc518d34ea63e88 +size 6697 diff --git a/Skins/Aleph DT/normal-hitwistle.ogg b/Skins/Aleph DT/normal-hitwistle.ogg new file mode 100644 index 00000000..7433d679 --- /dev/null +++ b/Skins/Aleph DT/normal-hitwistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56301dc35dd095ff25d8b519eabcc4a681f324aaa342a83d0d21a01f03ae24bf +size 7572 diff --git a/Skins/Aleph DT/normal-slidertick.ogg b/Skins/Aleph DT/normal-slidertick.ogg new file mode 100644 index 00000000..09ab3923 --- /dev/null +++ b/Skins/Aleph DT/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c97f421a29c961443360a0753e4da1b396d8f32ee7c6bc66902df6440563e44 +size 9483 diff --git a/Skins/Aleph DT/normal-sliderwhistle.wav b/Skins/Aleph DT/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aleph DT/pause-back-click.wav b/Skins/Aleph DT/pause-back-click.wav new file mode 100644 index 00000000..5193200e --- /dev/null +++ b/Skins/Aleph DT/pause-back-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ab217523b31c417771313827bbcb149908135412a1c7d326743e64955671b6 +size 44762 diff --git a/Skins/Aleph DT/pause-back.png b/Skins/Aleph DT/pause-back.png new file mode 100644 index 00000000..b1fc9285 --- /dev/null +++ b/Skins/Aleph DT/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ba5eb59bad8bddbdbff418fd3fdd3f45969a011f39082daf81fe48fb399bcd +size 32288 diff --git a/Skins/Aleph DT/pause-continue.png b/Skins/Aleph DT/pause-continue.png new file mode 100644 index 00000000..1b7f139f --- /dev/null +++ b/Skins/Aleph DT/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec87080a1f461f6b21a11ca53b806677f352dccd65cde38f092213033ead86cb +size 26764 diff --git a/Skins/Aleph DT/pause-loop.wav b/Skins/Aleph DT/pause-loop.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aleph DT/pause-loop.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aleph DT/pause-replay.png b/Skins/Aleph DT/pause-replay.png new file mode 100644 index 00000000..fb8933cc --- /dev/null +++ b/Skins/Aleph DT/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ab985f83c8af23d3f17abd017da3eabc53f0b60357df0fe1a2f2e7023f68c4 +size 12435 diff --git a/Skins/Aleph DT/pause-retry.png b/Skins/Aleph DT/pause-retry.png new file mode 100644 index 00000000..88d8c55b --- /dev/null +++ b/Skins/Aleph DT/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e4952cb261ff897dfb5969ef9d2dfb5eea48c723f2984c9e4570edc2c0c6b1 +size 26131 diff --git a/Skins/Aleph DT/play-skip.png b/Skins/Aleph DT/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/play-unranked.png b/Skins/Aleph DT/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/play-warningarrow.png b/Skins/Aleph DT/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/Aleph DT/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/Aleph DT/ranking-A-small@2x.png b/Skins/Aleph DT/ranking-A-small@2x.png new file mode 100644 index 00000000..3caf78b4 --- /dev/null +++ b/Skins/Aleph DT/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5cec29cc646ed11e6a165c5e2b96f28dfe7ebcae256f2232c5b5662ceac4dd +size 3178 diff --git a/Skins/Aleph DT/ranking-A@2x.png b/Skins/Aleph DT/ranking-A@2x.png new file mode 100644 index 00000000..cd0239b0 --- /dev/null +++ b/Skins/Aleph DT/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60598b5bf84b9df0c0c9f6363593220b76342b34413a8e65cddadab3211349ac +size 78450 diff --git a/Skins/Aleph DT/ranking-B-small@2x.png b/Skins/Aleph DT/ranking-B-small@2x.png new file mode 100644 index 00000000..725a52af --- /dev/null +++ b/Skins/Aleph DT/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e3367db9c17827af54ea96d23393a18ab2e4f8b33236ef17803f471b56cc34 +size 3033 diff --git a/Skins/Aleph DT/ranking-B@2x.png b/Skins/Aleph DT/ranking-B@2x.png new file mode 100644 index 00000000..a98ea38b --- /dev/null +++ b/Skins/Aleph DT/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2360599f989d80618e91919c0c7024d34f5b06480410f8723727be3b127b3e01 +size 69873 diff --git a/Skins/Aleph DT/ranking-C-small@2x.png b/Skins/Aleph DT/ranking-C-small@2x.png new file mode 100644 index 00000000..bd102663 --- /dev/null +++ b/Skins/Aleph DT/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b331f303a9772ce4050acf7188ec9219946acacfefdd6d159337428da2a1ef92 +size 3167 diff --git a/Skins/Aleph DT/ranking-C@2x.png b/Skins/Aleph DT/ranking-C@2x.png new file mode 100644 index 00000000..b9e453bc --- /dev/null +++ b/Skins/Aleph DT/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06313c6b50a300e9c81d799068a1f99bea7294f61cb9f1f49364d9b732bac094 +size 73242 diff --git a/Skins/Aleph DT/ranking-D-small@2x.png b/Skins/Aleph DT/ranking-D-small@2x.png new file mode 100644 index 00000000..2f8b00a4 --- /dev/null +++ b/Skins/Aleph DT/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce698b80b84b89b7171480a9a2e1aa13f8a2c117efb03204b735f1239f9bc7e2 +size 2802 diff --git a/Skins/Aleph DT/ranking-D@2x.png b/Skins/Aleph DT/ranking-D@2x.png new file mode 100644 index 00000000..b25ec3d3 --- /dev/null +++ b/Skins/Aleph DT/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf415eb35f295d21114e3fdfecb2a413a2821a9721bbe11775d0f56ee36f8a6 +size 64711 diff --git a/Skins/Aleph DT/ranking-S-small@2x.png b/Skins/Aleph DT/ranking-S-small@2x.png new file mode 100644 index 00000000..778ebc66 --- /dev/null +++ b/Skins/Aleph DT/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45d4d82d89ef2cc5949831e1671c44be1bf1a1890ad77e5b9c9dc63523f53f00 +size 3411 diff --git a/Skins/Aleph DT/ranking-S@2x.png b/Skins/Aleph DT/ranking-S@2x.png new file mode 100644 index 00000000..c551839c --- /dev/null +++ b/Skins/Aleph DT/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:603d24e7161c07213c25feb8cfc626106ec3d32792d88b49b2f1e244b1476d58 +size 80342 diff --git a/Skins/Aleph DT/ranking-SH-small@2x.png b/Skins/Aleph DT/ranking-SH-small@2x.png new file mode 100644 index 00000000..778ebc66 --- /dev/null +++ b/Skins/Aleph DT/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45d4d82d89ef2cc5949831e1671c44be1bf1a1890ad77e5b9c9dc63523f53f00 +size 3411 diff --git a/Skins/Aleph DT/ranking-SH@2x.png b/Skins/Aleph DT/ranking-SH@2x.png new file mode 100644 index 00000000..c551839c --- /dev/null +++ b/Skins/Aleph DT/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:603d24e7161c07213c25feb8cfc626106ec3d32792d88b49b2f1e244b1476d58 +size 80342 diff --git a/Skins/Aleph DT/ranking-X-small@2x.png b/Skins/Aleph DT/ranking-X-small@2x.png new file mode 100644 index 00000000..b0843dc5 --- /dev/null +++ b/Skins/Aleph DT/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce4955c1a3c06be7a596fd28f7994d0f0082ac356bae07d35ba59edc37255b1 +size 5373 diff --git a/Skins/Aleph DT/ranking-X@2x.png b/Skins/Aleph DT/ranking-X@2x.png new file mode 100644 index 00000000..0e8cc0ee --- /dev/null +++ b/Skins/Aleph DT/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bbbc9d1049a90a485c31a2cae8740f645f5724df9a7a99cb738bf8163a74415 +size 128737 diff --git a/Skins/Aleph DT/ranking-XH-small@2x.png b/Skins/Aleph DT/ranking-XH-small@2x.png new file mode 100644 index 00000000..b0843dc5 --- /dev/null +++ b/Skins/Aleph DT/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce4955c1a3c06be7a596fd28f7994d0f0082ac356bae07d35ba59edc37255b1 +size 5373 diff --git a/Skins/Aleph DT/ranking-XH@2x.png b/Skins/Aleph DT/ranking-XH@2x.png new file mode 100644 index 00000000..0e8cc0ee --- /dev/null +++ b/Skins/Aleph DT/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bbbc9d1049a90a485c31a2cae8740f645f5724df9a7a99cb738bf8163a74415 +size 128737 diff --git a/Skins/Aleph DT/ranking-a-small.png b/Skins/Aleph DT/ranking-a-small.png new file mode 100644 index 00000000..1abceff4 --- /dev/null +++ b/Skins/Aleph DT/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5edf1aebbef7a8f8a9a919cc524aa89451a63606b27b341e7b9354319408a0 +size 1204 diff --git a/Skins/Aleph DT/ranking-a.png b/Skins/Aleph DT/ranking-a.png new file mode 100644 index 00000000..393836df --- /dev/null +++ b/Skins/Aleph DT/ranking-a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478a68dde7e61114c3f9c1629dc86b2539129aecdcc24ab4ccd3294d4be08f85 +size 3074 diff --git a/Skins/Aleph DT/ranking-accuracy.png b/Skins/Aleph DT/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aleph DT/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aleph DT/ranking-b-small.png b/Skins/Aleph DT/ranking-b-small.png new file mode 100644 index 00000000..621ca5ea --- /dev/null +++ b/Skins/Aleph DT/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dabd351de7c3b472cd59e4011399cec86e4392b9ae8a5436ace32367e61378d +size 1151 diff --git a/Skins/Aleph DT/ranking-b.png b/Skins/Aleph DT/ranking-b.png new file mode 100644 index 00000000..8e281c78 --- /dev/null +++ b/Skins/Aleph DT/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e9abeac11db88cad3edf87e08831dbe101173f436f80b4b88b42beeffa4c95 +size 2492 diff --git a/Skins/Aleph DT/ranking-c-small.png b/Skins/Aleph DT/ranking-c-small.png new file mode 100644 index 00000000..5bbd6542 --- /dev/null +++ b/Skins/Aleph DT/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81031c0b34b43a74bbedeaa2af97dc3037177f9d755116217eae8c82d31bccd6 +size 1240 diff --git a/Skins/Aleph DT/ranking-c.png b/Skins/Aleph DT/ranking-c.png new file mode 100644 index 00000000..13b8d602 --- /dev/null +++ b/Skins/Aleph DT/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b476ddbe05492af887ed326b84a6f1d1c26f54e7114b1991a9ce601d48075dca +size 3532 diff --git a/Skins/Aleph DT/ranking-d-small.png b/Skins/Aleph DT/ranking-d-small.png new file mode 100644 index 00000000..e4c87d31 --- /dev/null +++ b/Skins/Aleph DT/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384a428b2f3426a1f2fbfeca46a4c76d436182cd96d53f124582fe12f7947a1b +size 1179 diff --git a/Skins/Aleph DT/ranking-d.png b/Skins/Aleph DT/ranking-d.png new file mode 100644 index 00000000..3dec68b9 --- /dev/null +++ b/Skins/Aleph DT/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cae61380ce97a24f7b89dbfe0b7780afe5d3aaebb3135747d7d90e53482791 +size 2530 diff --git a/Skins/Aleph DT/ranking-graph.png b/Skins/Aleph DT/ranking-graph.png new file mode 100644 index 00000000..4b20d586 --- /dev/null +++ b/Skins/Aleph DT/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abdbb957c2f79c8e25852cbef58615289bf861493382fe24c9e23e0b9072fa92 +size 17396 diff --git a/Skins/Aleph DT/ranking-maxcombo.png b/Skins/Aleph DT/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aleph DT/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aleph DT/ranking-panel.png b/Skins/Aleph DT/ranking-panel.png new file mode 100644 index 00000000..0348ca06 --- /dev/null +++ b/Skins/Aleph DT/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65561eb730426c9722662c40699d7f5fe22d5d4520f00a2bf250cc9ba98a7a8 +size 156616 diff --git a/Skins/Aleph DT/ranking-perfect.png b/Skins/Aleph DT/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aleph DT/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aleph DT/ranking-retry.png b/Skins/Aleph DT/ranking-retry.png new file mode 100644 index 00000000..66f11bec --- /dev/null +++ b/Skins/Aleph DT/ranking-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009eb72c4d5ec99205a5760ed65febebf2a1b733c6d00ca96c2b1c2575c751fe +size 9632 diff --git a/Skins/Aleph DT/ranking-s-small.png b/Skins/Aleph DT/ranking-s-small.png new file mode 100644 index 00000000..14770353 --- /dev/null +++ b/Skins/Aleph DT/ranking-s-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d94bb0957794e607b6dcbc81064801c7c90e3a4c62db0cc7b22d000115c61ae +size 1262 diff --git a/Skins/Aleph DT/ranking-s.png b/Skins/Aleph DT/ranking-s.png new file mode 100644 index 00000000..46cce7d1 --- /dev/null +++ b/Skins/Aleph DT/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176b4c8e1e3c4a0cd22b811efb0cc8b34bc991332fbb68e488e4a8ac64280669 +size 3401 diff --git a/Skins/Aleph DT/ranking-sh-small.png b/Skins/Aleph DT/ranking-sh-small.png new file mode 100644 index 00000000..7ab0217f --- /dev/null +++ b/Skins/Aleph DT/ranking-sh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5badb979f6852f020387b7dffc6abb3a68af842c15f35022e077e2ae472c4b19 +size 1262 diff --git a/Skins/Aleph DT/ranking-sh.png b/Skins/Aleph DT/ranking-sh.png new file mode 100644 index 00000000..04593acb --- /dev/null +++ b/Skins/Aleph DT/ranking-sh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e145c88c81556f7d5ff3ad5a363265d8699a8dfc1482524c32516aa3f9dde60a +size 3401 diff --git a/Skins/Aleph DT/ranking-title.png b/Skins/Aleph DT/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aleph DT/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aleph DT/ranking-winner.png b/Skins/Aleph DT/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aleph DT/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aleph DT/ranking-x-small.png b/Skins/Aleph DT/ranking-x-small.png new file mode 100644 index 00000000..fa3cc7d3 --- /dev/null +++ b/Skins/Aleph DT/ranking-x-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258b404bbf040770dc30e0124bed33bd865cfb5b57cb317d491c90b10171640d +size 1199 diff --git a/Skins/Aleph DT/ranking-x.png b/Skins/Aleph DT/ranking-x.png new file mode 100644 index 00000000..43c8b765 --- /dev/null +++ b/Skins/Aleph DT/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b0d1e8c788dff20f4340dbc58b01d32055c66b9d3441ba8e924a453997ff11 +size 2864 diff --git a/Skins/Aleph DT/ranking-xh-small.png b/Skins/Aleph DT/ranking-xh-small.png new file mode 100644 index 00000000..3039873b --- /dev/null +++ b/Skins/Aleph DT/ranking-xh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98646b05fdeeeabb7b98c19c4d957bd81e4bd91317061136a1b052cc920e655 +size 1199 diff --git a/Skins/Aleph DT/ranking-xh.png b/Skins/Aleph DT/ranking-xh.png new file mode 100644 index 00000000..f7c7e7ea --- /dev/null +++ b/Skins/Aleph DT/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95651000313a174438bc4f09184c34143d9245ce8ed7a4f0813164260c17aad +size 2864 diff --git a/Skins/Aleph DT/ready.png b/Skins/Aleph DT/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/readys.ogg b/Skins/Aleph DT/readys.ogg new file mode 100644 index 00000000..a987a4e2 --- /dev/null +++ b/Skins/Aleph DT/readys.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb48ef719dfb1fba3db80b6215ca29850926146745df470bdceb94c6cd0beb6 +size 38 diff --git a/Skins/Aleph DT/reversearrow.png b/Skins/Aleph DT/reversearrow.png new file mode 100644 index 00000000..8c0d9fff --- /dev/null +++ b/Skins/Aleph DT/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f112404e4b40eb13da52b143f0e4df8739a792c997341108912e9330287218e5 +size 4872 diff --git a/Skins/Aleph DT/reversearrow@2x.png b/Skins/Aleph DT/reversearrow@2x.png new file mode 100644 index 00000000..5c3570ca --- /dev/null +++ b/Skins/Aleph DT/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5e33cb132d50a2aed4a1df5212d7188e522994520056b7996c8d91822e22bd +size 28524 diff --git a/Skins/Aleph DT/score-0.png b/Skins/Aleph DT/score-0.png new file mode 100644 index 00000000..855c8e71 --- /dev/null +++ b/Skins/Aleph DT/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7170a4bced5520f101074bf05ba7bfcfa240ee6d0024dde437c97b167cf3902 +size 530 diff --git a/Skins/Aleph DT/score-1.png b/Skins/Aleph DT/score-1.png new file mode 100644 index 00000000..70878031 --- /dev/null +++ b/Skins/Aleph DT/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595b96e50ba6a1c465fbebb37155946a3079ed3e40ea2c368d1f816b34b69803 +size 284 diff --git a/Skins/Aleph DT/score-2.png b/Skins/Aleph DT/score-2.png new file mode 100644 index 00000000..892a7cb6 --- /dev/null +++ b/Skins/Aleph DT/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d22ebbcec0d8124c61f2035c5298c04a905cf293769c9c3728efa0e1f00166 +size 465 diff --git a/Skins/Aleph DT/score-3.png b/Skins/Aleph DT/score-3.png new file mode 100644 index 00000000..d06a275a --- /dev/null +++ b/Skins/Aleph DT/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d8e7dd630fce143b22e6f2366eae27779aba36f2f327f7b21919f63c96c11e +size 525 diff --git a/Skins/Aleph DT/score-4.png b/Skins/Aleph DT/score-4.png new file mode 100644 index 00000000..12e11a93 --- /dev/null +++ b/Skins/Aleph DT/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681db845b3a800c7ba924c694a8de925a38aeb66f5d71cb9a46622fdcbcfd736 +size 433 diff --git a/Skins/Aleph DT/score-5.png b/Skins/Aleph DT/score-5.png new file mode 100644 index 00000000..2d75f7d7 --- /dev/null +++ b/Skins/Aleph DT/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8819f5f0101099bb01631e9bd405c157a4345f57cd9cb69013df1fa29abde895 +size 491 diff --git a/Skins/Aleph DT/score-6.png b/Skins/Aleph DT/score-6.png new file mode 100644 index 00000000..fab1e0be --- /dev/null +++ b/Skins/Aleph DT/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ef287a30f81fe6c72e06b09ae10ccf529ee80f026389268018f4bcca87e74b +size 545 diff --git a/Skins/Aleph DT/score-7.png b/Skins/Aleph DT/score-7.png new file mode 100644 index 00000000..f6a6efe1 --- /dev/null +++ b/Skins/Aleph DT/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2684c2d794f6f6ddb0172e5c6dc62a14c441186c5310debbd1f06e16f3e9fd1a +size 378 diff --git a/Skins/Aleph DT/score-8.png b/Skins/Aleph DT/score-8.png new file mode 100644 index 00000000..bb5af047 --- /dev/null +++ b/Skins/Aleph DT/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc655c3def011471916f520dab0e9e5f97c924b905d8af838f16d1878ac0980a +size 517 diff --git a/Skins/Aleph DT/score-9.png b/Skins/Aleph DT/score-9.png new file mode 100644 index 00000000..4679ed1a --- /dev/null +++ b/Skins/Aleph DT/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea51b6d119aa6c25435748ed2f685ef0e75fae500b5d84f58975f9169325e69 +size 552 diff --git a/Skins/Aleph DT/score-comma.png b/Skins/Aleph DT/score-comma.png new file mode 100644 index 00000000..2a675b76 --- /dev/null +++ b/Skins/Aleph DT/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3ab83160dddd23fc3a762ea79653b5256fa8ba03c695b76a658846cff9de57 +size 253 diff --git a/Skins/Aleph DT/score-dot.png b/Skins/Aleph DT/score-dot.png new file mode 100644 index 00000000..8932c22e --- /dev/null +++ b/Skins/Aleph DT/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0bf1654e55dd0ad97bbdeb25c955cd249bd3c8ac11b478deef94c1c41de20e +size 190 diff --git a/Skins/Aleph DT/score-percent.png b/Skins/Aleph DT/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/score-x.png b/Skins/Aleph DT/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/scorebar-bg.png b/Skins/Aleph DT/scorebar-bg.png new file mode 100644 index 00000000..750c65b6 --- /dev/null +++ b/Skins/Aleph DT/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ba8e57e5fbf0c9893065b4c80bb987328a5d65b86fbc968832d06323f76e16 +size 602 diff --git a/Skins/Aleph DT/scorebar-colour.png b/Skins/Aleph DT/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/scorebar-marker.png b/Skins/Aleph DT/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/section-fail.png b/Skins/Aleph DT/section-fail.png new file mode 100644 index 00000000..d6748e9b --- /dev/null +++ b/Skins/Aleph DT/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21e7b0849e5fbe6162eb88793daedc1dec78c8a0172d52faccc9e7a5a32e70a +size 14271 diff --git a/Skins/Aleph DT/section-pass.png b/Skins/Aleph DT/section-pass.png new file mode 100644 index 00000000..cd5bc4c3 --- /dev/null +++ b/Skins/Aleph DT/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b634037b284c9212ad3294d240b6945d6bab400496bab1ff79852dd0f8c9a917 +size 15978 diff --git a/Skins/Aleph DT/sectionpass.mp3 b/Skins/Aleph DT/sectionpass.mp3 new file mode 100644 index 00000000..4b16267e --- /dev/null +++ b/Skins/Aleph DT/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db36d629d6d3c6d11aca4e32d765ea40e2a9d68eccf27bad8cb37952c1aa9a83 +size 43747 diff --git a/Skins/Aleph DT/selection-mod-autoplay.png b/Skins/Aleph DT/selection-mod-autoplay.png new file mode 100644 index 00000000..d038b109 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91323b06f800618e6ec4f03e15b8446853c3910663e7e358e3e91554a9092fbb +size 1434 diff --git a/Skins/Aleph DT/selection-mod-cinema.png b/Skins/Aleph DT/selection-mod-cinema.png new file mode 100644 index 00000000..a07e288a --- /dev/null +++ b/Skins/Aleph DT/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f93d840e63b2f389041d1205146cd6b4ac14046b67318abbf3f7fe13c359388 +size 1516 diff --git a/Skins/Aleph DT/selection-mod-doubletime.png b/Skins/Aleph DT/selection-mod-doubletime.png new file mode 100644 index 00000000..dc096498 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbcc499d6675e2c7869c339418148606b4215f4da6a10be03d84c0cdfbe4ff0 +size 1406 diff --git a/Skins/Aleph DT/selection-mod-easy.png b/Skins/Aleph DT/selection-mod-easy.png new file mode 100644 index 00000000..5582ec7d --- /dev/null +++ b/Skins/Aleph DT/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef93fba675b676f4fb378287175067d6e0d2b1bca10a57ae15778fa57c3c463 +size 1496 diff --git a/Skins/Aleph DT/selection-mod-flashlight.png b/Skins/Aleph DT/selection-mod-flashlight.png new file mode 100644 index 00000000..9af77228 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee4b3d556784214720d3a63f38b1e0f995eaa10805ec87ae7d86c40e852ca36 +size 1201 diff --git a/Skins/Aleph DT/selection-mod-halftime.png b/Skins/Aleph DT/selection-mod-halftime.png new file mode 100644 index 00000000..8cdca48f --- /dev/null +++ b/Skins/Aleph DT/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95975b94940934c336ecb449b473a6d14b61c40be2763c589344078b7c8601f9 +size 1331 diff --git a/Skins/Aleph DT/selection-mod-hardrock.png b/Skins/Aleph DT/selection-mod-hardrock.png new file mode 100644 index 00000000..f51b8da7 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb51fabe6571d18deb33bed0686aab54a34fd78bdf6255b4e62fe290d803110a +size 1313 diff --git a/Skins/Aleph DT/selection-mod-hidden.png b/Skins/Aleph DT/selection-mod-hidden.png new file mode 100644 index 00000000..c7102859 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a902784c8869bb928c703ab8fe24eaa8fa7019fc4f3b979060d430fc378d0f52 +size 1489 diff --git a/Skins/Aleph DT/selection-mod-nightcore.png b/Skins/Aleph DT/selection-mod-nightcore.png new file mode 100644 index 00000000..7ace5501 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b0494682ae955c4d824f00bea65974cc3547a2005ceed343d3a3cb63fc5a5b +size 1471 diff --git a/Skins/Aleph DT/selection-mod-nofail.png b/Skins/Aleph DT/selection-mod-nofail.png new file mode 100644 index 00000000..4e9d1a69 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3445da66df2285326ba74b9d2f79706b66a449016b48bd659406f705c10af9f5 +size 1321 diff --git a/Skins/Aleph DT/selection-mod-perfect.png b/Skins/Aleph DT/selection-mod-perfect.png new file mode 100644 index 00000000..3635467e --- /dev/null +++ b/Skins/Aleph DT/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00550bf913681dec3733deaef5dad846eae7910574dfe3c47a9f813c588a2db1 +size 1455 diff --git a/Skins/Aleph DT/selection-mod-relax.png b/Skins/Aleph DT/selection-mod-relax.png new file mode 100644 index 00000000..9bee0c0d --- /dev/null +++ b/Skins/Aleph DT/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6de3d4522d6e4376a9af4e44fba549d46a55b6d73f3e4a8c0254f513aa2aaef +size 1179 diff --git a/Skins/Aleph DT/selection-mod-relax2.png b/Skins/Aleph DT/selection-mod-relax2.png new file mode 100644 index 00000000..a748970c --- /dev/null +++ b/Skins/Aleph DT/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa07cb1d208df5197d020fd82781e6d6a2ee43d59ab8ff8d54bfe4c31f15973 +size 1527 diff --git a/Skins/Aleph DT/selection-mod-scorev2.png b/Skins/Aleph DT/selection-mod-scorev2.png new file mode 100644 index 00000000..2a742f72 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ba7578bda14a99bf40bd3f05e7be442064603ebd68209f8dac91acbc457529 +size 1557 diff --git a/Skins/Aleph DT/selection-mod-spunout.png b/Skins/Aleph DT/selection-mod-spunout.png new file mode 100644 index 00000000..85e2f1f4 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17d429cb8c259d6f529c80a29747d899e34cb102b306c80615cacf11334b6af +size 1662 diff --git a/Skins/Aleph DT/selection-mod-suddendeath.png b/Skins/Aleph DT/selection-mod-suddendeath.png new file mode 100644 index 00000000..24ba5617 --- /dev/null +++ b/Skins/Aleph DT/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a5abd369689d03ff574851aafca1e99ecb5649a190e710fa08908529acd6af +size 1657 diff --git a/Skins/Aleph DT/selection-mode-over.png b/Skins/Aleph DT/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/selection-mode.png b/Skins/Aleph DT/selection-mode.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/selection-mode@2x.png b/Skins/Aleph DT/selection-mode@2x.png new file mode 100644 index 00000000..14dc3910 --- /dev/null +++ b/Skins/Aleph DT/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8c65430d39cb912e9290eda8b55f9cc293211a1319bd3593e463be2439a3ba +size 264410 diff --git a/Skins/Aleph DT/selection-mods-over.png b/Skins/Aleph DT/selection-mods-over.png new file mode 100644 index 00000000..19bf3e9a --- /dev/null +++ b/Skins/Aleph DT/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9e45bd521e1f952c1d19c8eacfcd8ced9795f5b06497c1bd6926b2a1c5e146 +size 111 diff --git a/Skins/Aleph DT/selection-mods.png b/Skins/Aleph DT/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/selection-options-over.png b/Skins/Aleph DT/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/selection-options.png b/Skins/Aleph DT/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/selection-random-over.png b/Skins/Aleph DT/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/selection-random.png b/Skins/Aleph DT/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Aleph DT/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Aleph DT/selection-tab.png b/Skins/Aleph DT/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/Aleph DT/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/Aleph DT/skin.ini b/Skins/Aleph DT/skin.ini new file mode 100644 index 00000000..e2b825b7 --- /dev/null +++ b/Skins/Aleph DT/skin.ini @@ -0,0 +1,42 @@ +// skin.ini generated by osu! skin mixer v2.7.3 + +[General] +Name: Aleph DT +Author: various +Version: 3.1 +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 +SliderBallFlip: 0 + +[Colours] +Combo1: 255,255,255 +Combo2: 255,255,255 +Combo3: 255,255,255 +Combo4: 255,255,255 +SongSelectActiveText: 255,255,255 +SliderBorder: 150,150,150 +SliderTrackOverride: 0,0,0 + +[Fonts] +//HitCirclePrefix: ASSets/default/default +//HitCircleOverlap: 187 +HitCirclePrefix: default +HitCircleOverlap: 160 + +ScorePrefix: score +ScoreOverlap: 6 +ComboPrefix: combo +ComboOverlap: 5 + +[Mania] +Keys: 4 +LightFramePerSecond: 24 +ColumnStart: 136 +ColumnWidth: 30,30,30,30 +HitPosition: 402 +ScorePosition: 325 +ComboPosition: 111 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 1 diff --git a/Skins/Aleph DT/sliderb0.png b/Skins/Aleph DT/sliderb0.png new file mode 100644 index 00000000..e941ba25 --- /dev/null +++ b/Skins/Aleph DT/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c9094159adbcc6ddc5b39b899f44c4dfda8ff353a9238371faaed0e814f58f +size 6732 diff --git a/Skins/Aleph DT/sliderb0@2x.png b/Skins/Aleph DT/sliderb0@2x.png new file mode 100644 index 00000000..11c82795 --- /dev/null +++ b/Skins/Aleph DT/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea857fa21b8a472fee9e1133cd811980d4a5f03ce533c94af37a720d37f5f13 +size 10086 diff --git a/Skins/Aleph DT/sliderendcircle.png b/Skins/Aleph DT/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/Aleph DT/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/Aleph DT/sliderfollowcircle.png b/Skins/Aleph DT/sliderfollowcircle.png new file mode 100644 index 00000000..47fef962 --- /dev/null +++ b/Skins/Aleph DT/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aaf52eafb77bdd5950c29a9e20df6f3367473f6257f7622161175086f47fbd3 +size 1616 diff --git a/Skins/Aleph DT/sliderpoint10.png b/Skins/Aleph DT/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/sliderpoint30.png b/Skins/Aleph DT/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/sliderscorepoint.png b/Skins/Aleph DT/sliderscorepoint.png new file mode 100644 index 00000000..08b1cb7f --- /dev/null +++ b/Skins/Aleph DT/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbcfd29bd28c9c118e3ec99a9be0f288790b9204c3e128580079976a3cbb5d51 +size 629 diff --git a/Skins/Aleph DT/sliderscorepoint@2x.png b/Skins/Aleph DT/sliderscorepoint@2x.png new file mode 100644 index 00000000..de35a166 --- /dev/null +++ b/Skins/Aleph DT/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95227dfc1d7be2a1be1c37351c16231f248fb9276533a94740a3610a0a9c0bcb +size 4273 diff --git a/Skins/Aleph DT/soft-hitclap.ogg b/Skins/Aleph DT/soft-hitclap.ogg new file mode 100644 index 00000000..854b95c3 --- /dev/null +++ b/Skins/Aleph DT/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6371f569e6991a8149d41e06d728418154d0ef625416fade5527985674651a70 +size 4289 diff --git a/Skins/Aleph DT/soft-hitfinish.ogg b/Skins/Aleph DT/soft-hitfinish.ogg new file mode 100644 index 00000000..fddc82b4 --- /dev/null +++ b/Skins/Aleph DT/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dba228b60545d44bd4016d0a0f7e5ef2becab7979620068c506219b380de3c6 +size 6182 diff --git a/Skins/Aleph DT/soft-hitnormal.ogg b/Skins/Aleph DT/soft-hitnormal.ogg new file mode 100644 index 00000000..163f935e --- /dev/null +++ b/Skins/Aleph DT/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b393ddeacb072ff99d8dd53734b9a293e4930bb9aa1d2f86cfd33bfd5e42fdf2 +size 6651 diff --git a/Skins/Aleph DT/soft-hitwhistle.ogg b/Skins/Aleph DT/soft-hitwhistle.ogg new file mode 100644 index 00000000..0c395c58 --- /dev/null +++ b/Skins/Aleph DT/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2013867f7eb8149136e66c7ac94fad91fec200989f832160424848513ac5ab9 +size 6697 diff --git a/Skins/Aleph DT/soft-sliderslide.ogg b/Skins/Aleph DT/soft-sliderslide.ogg new file mode 100644 index 00000000..abd24459 --- /dev/null +++ b/Skins/Aleph DT/soft-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cdaffd66fc1211cc3fd5ddd4e4a01f8b2ee749c4a894637f6670383d475987 +size 4426 diff --git a/Skins/Aleph DT/soft-slidertick.ogg b/Skins/Aleph DT/soft-slidertick.ogg new file mode 100644 index 00000000..539b7e3c --- /dev/null +++ b/Skins/Aleph DT/soft-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58d616735967fc9276eb71bccb78d66465fcf6f9742c58a1be480719f7fa514 +size 14125 diff --git a/Skins/Aleph DT/soft-sliderwhistle.ogg b/Skins/Aleph DT/soft-sliderwhistle.ogg new file mode 100644 index 00000000..7fb5b8a2 --- /dev/null +++ b/Skins/Aleph DT/soft-sliderwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290def7f8b6938c8ef603d6abe7d835ea7cf0cc22a1f10c6bb03213f521b4dc2 +size 9647 diff --git a/Skins/Aleph DT/soft-sliderwhistle.wav b/Skins/Aleph DT/soft-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aleph DT/spinner-approachcircle.png b/Skins/Aleph DT/spinner-approachcircle.png new file mode 100644 index 00000000..0813fb83 --- /dev/null +++ b/Skins/Aleph DT/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1145af2a2e0cef7ff1fd1e4e67d36f1c5baa0f7b9bddf80b7a18aef91d48630d +size 70 diff --git a/Skins/Aleph DT/spinner-approachcircle@2x.png b/Skins/Aleph DT/spinner-approachcircle@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/Aleph DT/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/Aleph DT/spinner-background.png b/Skins/Aleph DT/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/Aleph DT/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/Aleph DT/spinner-bottom.png b/Skins/Aleph DT/spinner-bottom.png new file mode 100644 index 00000000..d62c0eff --- /dev/null +++ b/Skins/Aleph DT/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:195edf4c44ac3cb00b59f1b1996b842bd66b893325adaa67fef98f14afce4302 +size 885 diff --git a/Skins/Aleph DT/spinner-bottom@2x.png b/Skins/Aleph DT/spinner-bottom@2x.png new file mode 100644 index 00000000..76e175fb --- /dev/null +++ b/Skins/Aleph DT/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04d400f0b6d1e0d390ade101df3877b8c6bcec8a7f21b2308f3e56c59b8b03b +size 3836 diff --git a/Skins/Aleph DT/spinner-circle.png b/Skins/Aleph DT/spinner-circle.png new file mode 100644 index 00000000..f4b9efc7 --- /dev/null +++ b/Skins/Aleph DT/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d36509b1fcf8454e732655402e1685bb0b010e0f745a70f9f2fd9d4d050eb0 +size 6685 diff --git a/Skins/Aleph DT/spinner-circle@2x.png b/Skins/Aleph DT/spinner-circle@2x.png new file mode 100644 index 00000000..37f8f90b --- /dev/null +++ b/Skins/Aleph DT/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f08507d5ef48929f50f899c7d387ad8c78f86bb607a04bcbd0ea3e5c311cf6 +size 18294 diff --git a/Skins/Aleph DT/spinner-clear.png b/Skins/Aleph DT/spinner-clear.png new file mode 100644 index 00000000..6d35a071 --- /dev/null +++ b/Skins/Aleph DT/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b060ed0040c965600d8d183dbcc6f0f8b22e755a309800541a48d72063988ee5 +size 819 diff --git a/Skins/Aleph DT/spinner-clear@2x.png b/Skins/Aleph DT/spinner-clear@2x.png new file mode 100644 index 00000000..bd7fae87 --- /dev/null +++ b/Skins/Aleph DT/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae921da18f29a88056c4388b54ab362f89796bad9a8b483add548e8fa8b5a7f +size 2383 diff --git a/Skins/Aleph DT/spinner-glow.png b/Skins/Aleph DT/spinner-glow.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/Aleph DT/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/Aleph DT/spinner-metre.png b/Skins/Aleph DT/spinner-metre.png new file mode 100644 index 00000000..129eb881 --- /dev/null +++ b/Skins/Aleph DT/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ac151b32cda8e7e54ddef562a040f7432cf925ded6c74d6ce43cc771f8fd1d +size 14145 diff --git a/Skins/Aleph DT/spinner-metre@2x.png b/Skins/Aleph DT/spinner-metre@2x.png new file mode 100644 index 00000000..bffcbc0e --- /dev/null +++ b/Skins/Aleph DT/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce403f5d4883a2563d7461f4d693fed8b93b515d05a89aa8c862ba74f55143a +size 39555 diff --git a/Skins/Aleph DT/spinner-middle.png b/Skins/Aleph DT/spinner-middle.png new file mode 100644 index 00000000..0813fb83 --- /dev/null +++ b/Skins/Aleph DT/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1145af2a2e0cef7ff1fd1e4e67d36f1c5baa0f7b9bddf80b7a18aef91d48630d +size 70 diff --git a/Skins/Aleph DT/spinner-middle2.png b/Skins/Aleph DT/spinner-middle2.png new file mode 100644 index 00000000..0813fb83 --- /dev/null +++ b/Skins/Aleph DT/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1145af2a2e0cef7ff1fd1e4e67d36f1c5baa0f7b9bddf80b7a18aef91d48630d +size 70 diff --git a/Skins/Aleph DT/spinner-middle2@2x.png b/Skins/Aleph DT/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Aleph DT/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Aleph DT/spinner-middle@2x.png b/Skins/Aleph DT/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Aleph DT/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Aleph DT/spinner-osu.png b/Skins/Aleph DT/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aleph DT/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aleph DT/spinner-rpm.png b/Skins/Aleph DT/spinner-rpm.png new file mode 100644 index 00000000..6e3ed2bf --- /dev/null +++ b/Skins/Aleph DT/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6148e20a35301211785201caf81dc5f27bd137ee966f1fcc909ba854adb0b0 +size 3816 diff --git a/Skins/Aleph DT/spinner-rpm@2x.png b/Skins/Aleph DT/spinner-rpm@2x.png new file mode 100644 index 00000000..39a6692b --- /dev/null +++ b/Skins/Aleph DT/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6877128fd58b8818e813660e1cdb78ccd08220247e332e91ea9c1d0e22bebfa3 +size 8526 diff --git a/Skins/Aleph DT/spinner-spin.png b/Skins/Aleph DT/spinner-spin.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Aleph DT/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Aleph DT/spinner-top.png b/Skins/Aleph DT/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Aleph DT/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Aleph DT/spinnerbonus.wav b/Skins/Aleph DT/spinnerbonus.wav new file mode 100644 index 00000000..16b1f583 --- /dev/null +++ b/Skins/Aleph DT/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d26b9c5c1285ba738491c71d823c6f44d9be734f5f2b7b673830de6bb39259f8 +size 82410 diff --git a/Skins/Aleph DT/star.png b/Skins/Aleph DT/star.png new file mode 100644 index 00000000..68a61f84 --- /dev/null +++ b/Skins/Aleph DT/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac78b99688e801f9b2a5c168c6dcca4d78666ccc68175d8341b1a01f9f74fc8 +size 256 diff --git a/Skins/Aleph DT/star2.png b/Skins/Aleph DT/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aleph DT/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aleph DT/star2@2x.png b/Skins/Aleph DT/star2@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aleph DT/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Go.png b/Skins/Aristia(Edit) + KaBa - Copy/Go.png new file mode 100644 index 00000000..8212a476 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b558d2995746d795e4e1358cd32c897609e9bb64548dcd108c326599bcfbc24b +size 4258 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-A-Small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-A-Small@2x.png new file mode 100644 index 00000000..a93cc2ca --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-A-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d5fe063b6750d7ff88fb2a2c4bccafe03661705cfff33f59a27a6243c40cd1 +size 3419 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-A@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-A@2x.png new file mode 100644 index 00000000..c07a22c7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70c7f0714da1e9724a659e0dc00b09a24756cc62b488f75d459accbf38b2fb5 +size 29424 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-B-Small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-B-Small@2x.png new file mode 100644 index 00000000..11d127b1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-B-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a290a1888eb107bfeabc5ad7c9e4aab7f44fb06996ef84202341c81e9609fe +size 3951 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-B@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-B@2x.png new file mode 100644 index 00000000..394c76a3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f343de9aa42b5dd01894b17af1d364da6cc9123478757ba30b49aac417cc4f2 +size 35789 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-C-Small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-C-Small@2x.png new file mode 100644 index 00000000..e49bc2fc --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-C-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ed38d7f2a0ffd062724d288bbac4cdec135837b755e00b5701f13650d0524b +size 3676 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-C@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-C@2x.png new file mode 100644 index 00000000..2a97d6cb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89565f3b2b84ceaaa28b812943997b1398ad60d0b2dd1407565ba35efeffca9 +size 29103 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-D-Small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-D-Small@2x.png new file mode 100644 index 00000000..aec1d90a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-D-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f017d2eb2a08ae702c93ff34a8437ffce5a65915f912df2ec9732c8bcd630831 +size 3164 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-D@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-D@2x.png new file mode 100644 index 00000000..562487e8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9aafa65fcd93b8d3461a53ce7e6984a09122c6cad6a8e807a25fd5ff9f6091 +size 25199 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-S-Small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-S-Small@2x.png new file mode 100644 index 00000000..67bb2509 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-S-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1489c257b8dac2550c0806424a292ef52acb85aacf6c70363ffd2cf09492aae7 +size 3957 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-S@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-S@2x.png new file mode 100644 index 00000000..5ca466ce --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ef38d29b147734ff59d4f0364f40d9a3ce88880de57ff49f8baa24386fbdec +size 32768 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-SH-Small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-SH-Small@2x.png new file mode 100644 index 00000000..5f308b64 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-SH-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5bf28250646ef2f81a443b2bfceb091cfdaa188ca058889fefe1591c48753d +size 3037 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-X-Small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-X-Small@2x.png new file mode 100644 index 00000000..39aed49a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-X-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff823bc51509ade3c6979fb7b91314974116de1985d2d2e52a02dc6edafebbfa +size 6987 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-X@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-X@2x.png new file mode 100644 index 00000000..6b0640e8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fc57c0d9ce25a2e406cb97da1a0e34d6c3a95cba393a16292ae3764899f326 +size 62076 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-XH-Small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-XH-Small@2x.png new file mode 100644 index 00000000..51d5f0a8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-XH-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324ef7876f12578adc02d652460516147f423c4026e9d7e58ac987bb0c4bedfa +size 5644 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Ranking-title.png b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-title.png new file mode 100644 index 00000000..6e5f8c17 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8584bf5ac6196900af013d3f53481465d84c8c7f9d2d5e4855cb614510cea868 +size 3141 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Taiko-bar-left.png b/Skins/Aristia(Edit) + KaBa - Copy/Taiko-bar-left.png new file mode 100644 index 00000000..c006fc03 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Taiko-bar-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a0fb837fe567dae755558fe9119ba13d9f0e821616b1d6787d8031eacb94de +size 22205 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/Thumbs.db b/Skins/Aristia(Edit) + KaBa - Copy/Thumbs.db new file mode 100644 index 00000000..97d32607 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/Thumbs.db @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67b312f89a0767e1677c3bfaafd8866d0ea0a9f5be15827e74a0ecc07e68d7e8 +size 3278848 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle (2).png b/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle (2).png new file mode 100644 index 00000000..1d03af47 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle (2).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432e9f0812071a6396dcdefee02d63604c3a23d4adc6be99308e4d4e6c73f443 +size 8676 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle (3).png b/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle (3).png new file mode 100644 index 00000000..54ae9e44 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle (3).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de293bf87564f9574cf35d6b0d8d8172e92e6ce920caf3f8af67f5fcebf93982 +size 42677 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle.png b/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle.png new file mode 100644 index 00000000..9fb6c6ae --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb434dc285c3a64a44da60b396363030f71427381e23070121abd5afb56e9c4 +size 4504 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle2.png b/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle2.png new file mode 100644 index 00000000..219f58b9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/app/approachcircle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54b1b8c38140de6a3cf20ffc229978ef05c42091f5badb547aed13114586955 +size 11711 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/app/cursor.png b/Skins/Aristia(Edit) + KaBa - Copy/app/cursor.png new file mode 100644 index 00000000..0656f348 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/app/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640ff2e2a6c517c3618af60082f6e245c9ff24027941fa5b3896c4341609fa2b +size 5742 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/app/hitcircle (2).png b/Skins/Aristia(Edit) + KaBa - Copy/app/hitcircle (2).png new file mode 100644 index 00000000..ad97e347 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/app/hitcircle (2).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6945db1025b8b0bc00fdfc5143348dae1d01090a6f42ee44528a7bbc018434f2 +size 4101 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/app/hitcircle.png b/Skins/Aristia(Edit) + KaBa - Copy/app/hitcircle.png new file mode 100644 index 00000000..ad97e347 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/app/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6945db1025b8b0bc00fdfc5143348dae1d01090a6f42ee44528a7bbc018434f2 +size 4101 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/app/hitcircleoverlay.png b/Skins/Aristia(Edit) + KaBa - Copy/app/hitcircleoverlay.png new file mode 100644 index 00000000..17e287ad --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/app/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c885b1ed92ca55b734057c7d58d4228366c31ec45466e53a78286dc2edd84f62 +size 26648 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/applause.mp3 b/Skins/Aristia(Edit) + KaBa - Copy/applause.mp3 new file mode 100644 index 00000000..d47543b6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73677d23b6d023562c59b5063bf175ca85229c4fe63fff8f9548efeb5d4ee65a +size 127519 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/button-left.png b/Skins/Aristia(Edit) + KaBa - Copy/button-left.png new file mode 100644 index 00000000..1888b66c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb3d532ec5ebafc879a921e1c51c6b017ce4979b171da1db4072ec56e26bb10 +size 3206 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/button-left@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/button-left@2x.png new file mode 100644 index 00000000..3668e797 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/button-left@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2bf99eefc72737c10d0d0c6efea07fb618526d1c8fe9a2d014190a1686c075e +size 3370 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/button-middle.png b/Skins/Aristia(Edit) + KaBa - Copy/button-middle.png new file mode 100644 index 00000000..902f409e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08267317da1b1e888727c3225a69c56a0d7fd5e79528473a6d5da26c7d8cdf2c +size 3035 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/button-middle@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/button-middle@2x.png new file mode 100644 index 00000000..1bfc0824 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/button-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c8d26dd187ad42bb8820f8c3ef848861cf3b07722a7c78a0b9b6ce5442480c +size 2931 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/button-right.png b/Skins/Aristia(Edit) + KaBa - Copy/button-right.png new file mode 100644 index 00000000..030e892b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21bc819b19961a149047578b8b8c8f806ab43eb09f98514c5a8e12da29de5997 +size 3233 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/button-right@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/button-right@2x.png new file mode 100644 index 00000000..28ed8c45 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/button-right@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b9f872a8c294f22944987e3e6405df9faef1d65a6b4e5cd2d35dcdb471c8c0 +size 3409 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-0.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-0.png new file mode 100644 index 00000000..545b7e63 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e017b573141d3e4b4c6a06cfcadf86162a45d528f0a0cbad88737581a8d1d7e +size 1051 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-1 - òíÉ╗.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-1 - òíÉ╗.png new file mode 100644 index 00000000..c6997848 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-1 - òíÉ╗.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6fefef150bc7e34e304dffddbef05cb0318ce37b6d1be411ab76557bddc1e18 +size 533 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-1.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-1.png new file mode 100644 index 00000000..c6997848 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6fefef150bc7e34e304dffddbef05cb0318ce37b6d1be411ab76557bddc1e18 +size 533 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-2.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-2.png new file mode 100644 index 00000000..dd37467a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dacd6f0caf9ad9ca0ced4f6b6960cbab4aa29cb1bb2801098e83c733a85c092a +size 1366 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-3.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-3.png new file mode 100644 index 00000000..2f7a06fe --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:325c28736d5938d57005f918d91d66e76dd1396e3e36b9b527bb18992fe2f546 +size 1300 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-4.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-4.png new file mode 100644 index 00000000..894644a3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a2111b4cb459380bfbdf0ffe1ff4a66796dbabd98f374fada98f7b0be332c0 +size 1185 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-5.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-5.png new file mode 100644 index 00000000..0b24940a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6424bb5fe750b02e3817b346a9db6e45b92cb7c431912f352f0a848e99b9015f +size 1358 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-6.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-6.png new file mode 100644 index 00000000..3599a148 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eec92574501ec2740a99f8f374e719482960abc01f5917db4badc3323e1c8d3f +size 1191 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-7.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-7.png new file mode 100644 index 00000000..54c07493 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc71effe2c753f04996b5167ada52390c4ac7be9bc8284a82c92b50ecee2bcbf +size 767 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-8.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-8.png new file mode 100644 index 00000000..8debe8f3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc227332c5e237255f2656262733439b10bd86765129536a54f624f0e9d634d +size 1383 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-9.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-9.png new file mode 100644 index 00000000..2189098b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212c830c205f3bcacacc1a885652240d14ed5be71d34ba878cd4f764616d5721 +size 1234 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-x.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-x.png new file mode 100644 index 00000000..badad02c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3914c6cf068add6375e8e49caf2b8856f1f2fb90133e3e1d824eca7a0bac06e9 +size 1465 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combo-x@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/combo-x@2x.png new file mode 100644 index 00000000..7041a49d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combo-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08346328873c9f4e9da6cde4fc3321711b749c3ae48d1d703ad6c791faf58eae +size 5569 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/combobreak.wav b/Skins/Aristia(Edit) + KaBa - Copy/combobreak.wav new file mode 100644 index 00000000..0923f624 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99eac7db102a2f66f9ed42e618247a924df444b9de48e21cc0bc792708693063 +size 105412 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/comboburst.png b/Skins/Aristia(Edit) + KaBa - Copy/comboburst.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/count1.png b/Skins/Aristia(Edit) + KaBa - Copy/count1.png new file mode 100644 index 00000000..2aa2e0ae --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23feea7fd9bd5af96d3c5bfe6afb56dce8d09aa683b5c149ccfa359d8e08599e +size 3330 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/count1s.wav b/Skins/Aristia(Edit) + KaBa - Copy/count1s.wav new file mode 100644 index 00000000..879a8ce4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8884d07ff5d08c2105858f8edfa7954747058aff1a1dc77d6bce5c9592d7690 +size 95276 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/count2.png b/Skins/Aristia(Edit) + KaBa - Copy/count2.png new file mode 100644 index 00000000..d69411fe --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d359095fd50d208e874bcbabf9eb1a5e5d718d4325c0810d8baa859f38e815fc +size 3444 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/count2s.wav b/Skins/Aristia(Edit) + KaBa - Copy/count2s.wav new file mode 100644 index 00000000..cc140c67 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaabbda242775b458a34b6d8be3e9f1a8871fbb769938e3001926e67cec52155 +size 63532 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/count3.png b/Skins/Aristia(Edit) + KaBa - Copy/count3.png new file mode 100644 index 00000000..1303af31 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3cd315bbb750d77583310d02fd3159596c80b4d8530e480374a375b4ad4d690 +size 3460 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/count3s.wav b/Skins/Aristia(Edit) + KaBa - Copy/count3s.wav new file mode 100644 index 00000000..84aad121 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa182d459de91fb3ee6263364ddefc48137c2278e5a0819d52caf7b9dcb5aa6 +size 68140 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/curso.png b/Skins/Aristia(Edit) + KaBa - Copy/curso.png new file mode 100644 index 00000000..84b8302c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/curso.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08af52299b1a6bde35ba15447c382042fce6994761240ab6005fc1370ba90f0d +size 5824 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor-smoke.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor-smoke.png new file mode 100644 index 00000000..072c56dc --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ce8c21a36db630ffafb9c05a78a911370fd199f6e2b7a5853e94b0cbcd32ed +size 2801 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor.png new file mode 100644 index 00000000..1d17678f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50b154abdaf85ff3d6f0be69f0c1b771e26b7ca85424bab6c6c4679b570a67c +size 3312 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor (2).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor (2).png new file mode 100644 index 00000000..24faecdb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor (2).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4e732cba67da65ae874ba82cb75b821f336cd63204190e1cf13cde0b3d29a4 +size 41417 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor (3).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor (3).png new file mode 100644 index 00000000..f692adf5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor (3).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33590251a2e2ba89cd49c95e1425df54d6a0ae954079ef538b27766165fc6589 +size 5068 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor (4).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor (4).png new file mode 100644 index 00000000..67159a12 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor (4).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e9d97b7e5f02f93aff7839f98908d5ff87815169298c5078dfc6a8b36a0431 +size 3573 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor-smoke.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor-smoke.png new file mode 100644 index 00000000..8ac0106b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd375466e1548b7a659f6932ca983510e9b5a10102b431d1e511c41f630ac527 +size 1511 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor.png new file mode 100644 index 00000000..84b8302c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08af52299b1a6bde35ba15447c382042fce6994761240ab6005fc1370ba90f0d +size 5824 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor2.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor2.png new file mode 100644 index 00000000..f7024b17 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd982518d3ca54da260daea89e7fd1d0f4d285f0bbe1cebbe108923849153e6 +size 7083 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor3.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor3.png new file mode 100644 index 00000000..df4a4871 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b2bb9c0a06bea1dec89ede032895ef19484c42e383fa6bce66e7b83c06eda5 +size 7604 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x (2).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x (2).png new file mode 100644 index 00000000..848ddad1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x (2).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f77c96637aaac93c3b0e5ab2888bd6418f40c04a23bc0fe982194a36fe92f34 +size 53679 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x (3).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x (3).png new file mode 100644 index 00000000..7b270b19 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x (3).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2d3d693d9b3ba1b462c9fcbc27d9e1c5604b87ef9f0c9ef315e33928d2d4f7 +size 49406 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x (4).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x (4).png new file mode 100644 index 00000000..d4c73806 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x (4).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:769e2b526ae4d13924cab4bd1c6cbeaaec384d59a8836fbb43f883fc8bf733b4 +size 50662 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x.png new file mode 100644 index 00000000..bbadf611 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:362cadb422ac2edea88b805b1f720a5753738696d0ef3f624d3469eff3ea7dba +size 53251 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2xYellow.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2xYellow.png new file mode 100644 index 00000000..d4c73806 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursor@2xYellow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:769e2b526ae4d13924cab4bd1c6cbeaaec384d59a8836fbb43f883fc8bf733b4 +size 50662 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursorYellow.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursorYellow.png new file mode 100644 index 00000000..11101f2b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursorYellow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aaf248d4c1e95ff4485958748abebac198583b4b8664fdf5e727122fca948ef +size 24622 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (2).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (2).png new file mode 100644 index 00000000..52f9d0d6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (2).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35e7c929f00a54fc4c32be7603dcf492e7b12b8bd19c1cea6470a943b12d19bb +size 19587 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (3).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (3).png new file mode 100644 index 00000000..d52bb5ec --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (3).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ff50304513166acd8d71524990c791d8a3133901f4881bb1591c73c953499a +size 4496 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (4).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (4).png new file mode 100644 index 00000000..1a98fd0f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (4).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f46164437212804634ef86d2571c80e4047e577b0f582a1934e221103ed63f1 +size 2806 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (5).png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (5).png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail (5).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail.png new file mode 100644 index 00000000..dd09bf58 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa40a506951cd3b2fc9c046e241dd661e7ddb80b54d5d8bc30a5e37eb52750d +size 4496 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/original/cursor.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/original/cursor.png new file mode 100644 index 00000000..d786be21 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/original/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45dc42a26862a1fee64518eb697d336e1623c8de40a6810af5abf98d14a6b14d +size 2144 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/original/cursortrail.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/original/cursortrail.png new file mode 100644 index 00000000..c4a27f4f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/original/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11a8cc4f46e603fa79fa4966fa3d7f02fd964c5435a6188d4e15db6145f8f647 +size 4397 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/original/cursortrail1.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/original/cursortrail1.png new file mode 100644 index 00000000..1ec47012 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/original/cursortrail1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb83620b3a68949ad970d383ed5a9b5c8c02d3121acf0764d5caa48252569948 +size 2339 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/pp.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/pp.png new file mode 100644 index 00000000..9408647c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/pp.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa83a688ddcb92487a5a676fd92d09c4c5029b56b1249cb22ac41631c0cbc6c +size 24776 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor/pp@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor/pp@2x.png new file mode 100644 index 00000000..ac6fb608 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor/pp@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab03b90abf962446c4d50889679fee33c916f991605e5c7d1969c528bba9784 +size 54314 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor123.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor123.png new file mode 100644 index 00000000..160c55e6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d53e810e4309f7a1675dc8d0bacad90f94e0b43394ce19ab0712469309a97ee +size 4346 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor213123.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor213123.png new file mode 100644 index 00000000..7fcf2813 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor213123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946f889346b527f37f62dc62911d03dbcc4b54cfab892806f42f28ae85840b7f +size 4975 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor90-2(Yellow).psd b/Skins/Aristia(Edit) + KaBa - Copy/cursor90-2(Yellow).psd new file mode 100644 index 00000000..7ea01efa Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/cursor90-2(Yellow).psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursor@2x222222.png b/Skins/Aristia(Edit) + KaBa - Copy/cursor@2x222222.png new file mode 100644 index 00000000..c354bc1a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursor@2x222222.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41100f9ab3c151435e1eb42161eecff4831b6264aabc9e54b85a6a484d5e05a7 +size 24812 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursormiddle222.png b/Skins/Aristia(Edit) + KaBa - Copy/cursormiddle222.png new file mode 100644 index 00000000..deca56bf --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursormiddle222.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53405e49f8cf8d4edf95ed91d97915e402234647dc6d829bcb87a86d5f84674 +size 172 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursormiddleIDKE.png b/Skins/Aristia(Edit) + KaBa - Copy/cursormiddleIDKE.png new file mode 100644 index 00000000..a81d0cad --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursormiddleIDKE.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf863474614199cdbcdd688553338e101423b7d37e87f2a79a47cdcb757436e +size 2780 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursortrail.png b/Skins/Aristia(Edit) + KaBa - Copy/cursortrail.png new file mode 100644 index 00000000..5b7f45f2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b58a6fdb308ed6c9a3ae6b73c7fcabde9105fc495f5093f13eb0740d7bd9f8a +size 1740 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursortrail123.png b/Skins/Aristia(Edit) + KaBa - Copy/cursortrail123.png new file mode 100644 index 00000000..729ea09a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursortrail123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:285611ffda33ca83be71188b723f569503c9af949795055083bb6f7715772356 +size 5587 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/cursortrail21313.png b/Skins/Aristia(Edit) + KaBa - Copy/cursortrail21313.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/cursortrail21313.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-0.png b/Skins/Aristia(Edit) + KaBa - Copy/default-0.png new file mode 100644 index 00000000..a61777a1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6b7df920a123e0b9a870fc3e0a33270bdce3746fbfd0b35d86a7c4f57e7c10 +size 3246 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-1.png b/Skins/Aristia(Edit) + KaBa - Copy/default-1.png new file mode 100644 index 00000000..ab46ca40 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:151b25835e09b415ba5612c5126f8bc78a48dadd9c8495fac7370a608fe4be93 +size 2930 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-2.png b/Skins/Aristia(Edit) + KaBa - Copy/default-2.png new file mode 100644 index 00000000..b9603e73 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fea0a33627eb21802644196290f5207d4a2dd0b987394252fb2786611eff5d +size 3231 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-3.png b/Skins/Aristia(Edit) + KaBa - Copy/default-3.png new file mode 100644 index 00000000..1a05c5cd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a373e3862ba0aed230225a3134f7ecd4c16ac05716a3350e5017929d5f651c +size 3333 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-4.png b/Skins/Aristia(Edit) + KaBa - Copy/default-4.png new file mode 100644 index 00000000..7c8a0039 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62330bee27ba4a2087561c88b569670853bfeafdb6b674c61b6a9c9bc623a12 +size 3100 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-5.png b/Skins/Aristia(Edit) + KaBa - Copy/default-5.png new file mode 100644 index 00000000..efe958d8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086608ef7910df03dae7575d2054f750f6b3f4af32817b91735ddd2fd62dfdfc +size 3230 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-6.png b/Skins/Aristia(Edit) + KaBa - Copy/default-6.png new file mode 100644 index 00000000..9db04f8c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b4ca287bc4494dc2f125db0749bb4f951a4bc356b965feac6c77193e8a021ec +size 3343 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-7.png b/Skins/Aristia(Edit) + KaBa - Copy/default-7.png new file mode 100644 index 00000000..3346ed38 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e56a533aef9f877bfa0b719bbcd36c832509a9de0e8a2e42ff585f8c81168f51 +size 3158 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-8.png b/Skins/Aristia(Edit) + KaBa - Copy/default-8.png new file mode 100644 index 00000000..0113de53 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd83d68ac31f788a90779f5faba23e455967b7fc19fb02540bd23ce2395985d +size 3296 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/default-9.png b/Skins/Aristia(Edit) + KaBa - Copy/default-9.png new file mode 100644 index 00000000..4636c2bc --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3916d227305193e2cb9c3e2653c527017768a25a0c16d50ead1fb3f8e0d98495 +size 3331 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum--hitwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum--hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/drum--hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum-hitclap.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum-hitclap2.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum-hitfinish.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum-hitnormal.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum-hitnormalh.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum-hitwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum-sliderslide.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum-slidertick.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/drum-sliderwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fail-background.png b/Skins/Aristia(Edit) + KaBa - Copy/fail-background.png new file mode 100644 index 00000000..10715af1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241b665938b0a33cbb8f522e2e7b400549c2de0c827d01e8c5370d95d16b759f +size 10699 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/failsound.mp3 b/Skins/Aristia(Edit) + KaBa - Copy/failsound.mp3 new file mode 100644 index 00000000..4420ba73 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/failsound.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9bd1f97117f21f57e9c3c95be92d13d9e2f9edd4e16ced82f072753f7d1a55 +size 3144000 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-0.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-1.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-11.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-12.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-13.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-14.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-15.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-16.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-17.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-18.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-19.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-2.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-20.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-21.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-22.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-23.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-3.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-4.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-5.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-6.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-7.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-8.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint-9.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/followpoint.png b/Skins/Aristia(Edit) + KaBa - Copy/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple-overlay.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple-overlay.png new file mode 100644 index 00000000..33fd7df3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e588a9ea4b3ec7d241a932b22ced82059bd27729d564505d97459970e51aa4 +size 17598 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple-overlay@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple-overlay@2x.png new file mode 100644 index 00000000..c151cf56 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f154850a8cc9f4a5505d6bb82816f64065d069b0287323de6d69522255099b +size 31610 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple.png new file mode 100644 index 00000000..8ba3d19d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4790656d6545d6c4919ee6aa175de244df2bcc2948735f504c1ec36006010e +size 14159 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple@2x.png new file mode 100644 index 00000000..99051550 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-apple@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7917f3c290eff43c9c4c6027f3e1d79f33f843f217178d01c328f078e30fa24e +size 27152 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas-overlay.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas-overlay.png new file mode 100644 index 00000000..5d85961e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8a10b62fdd544d7c65d77df04e84f5d24e15b9ca3b22b6c8a2487dc1239017 +size 13307 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas-overlay@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas-overlay@2x.png new file mode 100644 index 00000000..e92884c7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e20708d31f2b17120513b11d499d190a0c29157347042c8157b0004cc36d855 +size 27018 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas.png new file mode 100644 index 00000000..f92d9cae --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52317b82473a6f4c738f2824e73a7acb966e6ae435b4c4e5cec7fb8138bc8e87 +size 12149 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas@2x.png new file mode 100644 index 00000000..d4554617 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-bananas@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f821f16d95e784cf18308ddabf8da5b6ad364e45d435f5b1278cd6b5d7de6a5d +size 29955 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-fail.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-fail.png new file mode 100644 index 00000000..13689c06 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d6036384c716429c5d2549e818afb83800172f292987ebf924fdf2d2fc3459 +size 32831 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-fail@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-fail@2x.png new file mode 100644 index 00000000..9ad0301b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a56c3c09819b27586db0f4b0257c9567d1ee757567fa997cea89ffb9fd19fbe +size 54849 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-idle.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-idle.png new file mode 100644 index 00000000..a68cacd3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-idle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920c06d8baf0fd1ec937c06030b41a81b3d237b64219c662b7160437e5a72918 +size 39919 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-idle@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-idle@2x.png new file mode 100644 index 00000000..5f749699 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-idle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf7fb870e918fe1b6e98ff871a6fc4aa67d9864e303531578400c0a450a99dd +size 58881 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-kiai.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-kiai.png new file mode 100644 index 00000000..aabe1ef2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-kiai.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:021378f17e6bd67c6b3d1cacbdfa8ad248f03352234fb9ff5ca09a268ece653d +size 40003 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-kiai@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-kiai@2x.png new file mode 100644 index 00000000..9f0708ae --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-catcher-kiai@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5c2032470705f4bb5a3fa5ae1147fca999da78e6485a4c215e1ba4f6a7c1cf +size 59622 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop-overlay.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop-overlay.png new file mode 100644 index 00000000..6fdd6b65 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b236de3122eebb46d7729cf1ba661dbe34093e2e65f178f05c48eb8bb1ad81e7 +size 4603 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop-overlay@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop-overlay@2x.png new file mode 100644 index 00000000..8f07bf89 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce15046c06aed8ac913da679e696c9e3ce52bd5aedf99229fb5a1008d1976f8d +size 13989 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop.png new file mode 100644 index 00000000..175331b2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0bcc07d6030d5a992078301b1e5db7b3cb474d63f9979d6b5a79140e68172b9 +size 3734 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop@2x.png new file mode 100644 index 00000000..577c94b6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-drop@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e79c739175fd1d41bf3615211480dda56e960ec7b81d079ff132bc0a50c7773 +size 11128 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes-overlay.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes-overlay.png new file mode 100644 index 00000000..33fd7df3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e588a9ea4b3ec7d241a932b22ced82059bd27729d564505d97459970e51aa4 +size 17598 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes-overlay@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes-overlay@2x.png new file mode 100644 index 00000000..c151cf56 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f154850a8cc9f4a5505d6bb82816f64065d069b0287323de6d69522255099b +size 31610 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes.png new file mode 100644 index 00000000..2684e7c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78522d3c399fb4c390b6c3abb3bed48d51b567c9a25a1097775212192fb2a72 +size 14425 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes@2x.png new file mode 100644 index 00000000..93ed6cb3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-grapes@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59fe2f492a4306fa7a1c09950470c050848006cd4289e282360d5a9c2978cf3a +size 28278 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange-overlay.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange-overlay.png new file mode 100644 index 00000000..33fd7df3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e588a9ea4b3ec7d241a932b22ced82059bd27729d564505d97459970e51aa4 +size 17598 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange-overlay@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange-overlay@2x.png new file mode 100644 index 00000000..c151cf56 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f154850a8cc9f4a5505d6bb82816f64065d069b0287323de6d69522255099b +size 31610 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange.png new file mode 100644 index 00000000..823f3b79 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4422f6d293b68dc063ee32285e619f051042b42981d9997666be10ae38ab53 +size 13826 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange@2x.png new file mode 100644 index 00000000..b47a0ad6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-orange@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fd0743784263ed1a5dd8e99f12184defcf8625b962f515b76f891a2b0b14dc +size 25752 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear-overlay.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear-overlay.png new file mode 100644 index 00000000..33fd7df3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e588a9ea4b3ec7d241a932b22ced82059bd27729d564505d97459970e51aa4 +size 17598 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear-overlay@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear-overlay@2x.png new file mode 100644 index 00000000..c151cf56 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f154850a8cc9f4a5505d6bb82816f64065d069b0287323de6d69522255099b +size 31610 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear.png new file mode 100644 index 00000000..71628345 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d144722bca7fe3a982e205b52f64e7d5673d0070e4ff77a7b230370506869c19 +size 13543 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear@2x.png new file mode 100644 index 00000000..5e09bab7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/fruit-pear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c13c2c84c097d585eccdefc762fdcb3519def5c03af8b1b1cc28f7030c7bb56 +size 25444 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/gos.wav b/Skins/Aristia(Edit) + KaBa - Copy/gos.wav new file mode 100644 index 00000000..ab76f728 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef0c16be86f9a2de8301a5cd352e3b72df997f4d86cb3dce7d6bae5b58d851d +size 77868 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit0.png b/Skins/Aristia(Edit) + KaBa - Copy/hit0.png new file mode 100644 index 00000000..a964edec --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e98979eed17ae293fde5a7c2317f603830c1c99f98f5618c2df1a4adadea68c +size 1417 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit100.png b/Skins/Aristia(Edit) + KaBa - Copy/hit100.png new file mode 100644 index 00000000..cee44962 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b556641517431e6ccc2dd59b1dcae316c5c0cee46583174f69cb442133972c2 +size 1406 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit100k.png b/Skins/Aristia(Edit) + KaBa - Copy/hit100k.png new file mode 100644 index 00000000..cee44962 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b556641517431e6ccc2dd59b1dcae316c5c0cee46583174f69cb442133972c2 +size 1406 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300-0.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300-0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300-1.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300g-0.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300g-0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300g-1.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300g-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300g.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300g.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300g@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300g@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300k-0.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300k-0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300k-1.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300k-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300k.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300k.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit300k@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/hit300k@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit300k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit50.png b/Skins/Aristia(Edit) + KaBa - Copy/hit50.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hit50k.png b/Skins/Aristia(Edit) + KaBa - Copy/hit50k.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitcircle.png b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle.png new file mode 100644 index 00000000..58edacff --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e081bcb246d426acaac852fa4a6cd05e5c6804989d0187301144679128d77ec +size 9659 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitcircle.psd b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle.psd new file mode 100644 index 00000000..aef95212 Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitcircle2.psd b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle2.psd new file mode 100644 index 00000000..54235bce Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle2.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitcircle4.psd b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle4.psd new file mode 100644 index 00000000..651d08f0 Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle4.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitcircle@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle@2x.png new file mode 100644 index 00000000..26bdc2be --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:928f6170374e2c2bf9d6df83e910a1c57bc43f76ba134d7f94036914059f4c44 +size 23447 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitcircleoverlay.png b/Skins/Aristia(Edit) + KaBa - Copy/hitcircleoverlay.png new file mode 100644 index 00000000..e84ae01b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2242085fcfd0a3680fe53191a999547fe99a3703fbbae2925c799df6ef287b +size 8362 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitcircleoverlay.psd b/Skins/Aristia(Edit) + KaBa - Copy/hitcircleoverlay.psd new file mode 100644 index 00000000..0b5bf2fa Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/hitcircleoverlay.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitcircleoverlay2.psd b/Skins/Aristia(Edit) + KaBa - Copy/hitcircleoverlay2.psd new file mode 100644 index 00000000..6b027ac1 Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/hitcircleoverlay2.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/drum-hitclap.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/drum-hitclap.wav new file mode 100644 index 00000000..9ec14a23 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47fc05443aaeb6189987b2173116043d71a10618f144efb8717d8148b590ce23 +size 70160 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/drum-hitfinish.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/drum-hitfinish.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/drum-hitnormal.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/drum-hitnormal.wav new file mode 100644 index 00000000..45a6fe61 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07adc0619c7820ecae4f86884054d9e831985e17dd5a855047593cdfdf829e2 +size 10470 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitclap.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitclap.wav new file mode 100644 index 00000000..8b029bdc --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de76e30fa99991135977377a95d452b98c980fad51a46d58ac9aacfc1234f6c7 +size 88258 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitfinish.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitfinish.wav new file mode 100644 index 00000000..a1c3cfca --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c126ad4e7e45c120d9030dfaf6721e5a1e97ee9f24db1b6f9c67eda59d1cdfd3 +size 7516 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitnormal.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitnormal.wav new file mode 100644 index 00000000..45a6fe61 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07adc0619c7820ecae4f86884054d9e831985e17dd5a855047593cdfdf829e2 +size 10470 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitwhistle.wav new file mode 100644 index 00000000..7e0ed211 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a5859e9786465d167ce8419ebd4a3baa228992c3df26852541b7011f45f3b3e +size 25580 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-sliderslide.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-sliderwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-sliderwhistle.wav new file mode 100644 index 00000000..ca81266f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e9fc47debfdff56028ea82a0de24403187ddd7e3cccd61c538ca20ba81f427 +size 47580 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitclap.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitclap.wav new file mode 100644 index 00000000..ef421aaf --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91d5ec4924a7b32fce5648494a1e6882c1e7e73ceb5386a3b49410e6dfc881b +size 12708 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitfinish.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitfinish.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitnormal.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitnormal.wav new file mode 100644 index 00000000..45a6fe61 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07adc0619c7820ecae4f86884054d9e831985e17dd5a855047593cdfdf829e2 +size 10470 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitnormal_.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitnormal_.wav new file mode 100644 index 00000000..761efd54 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitnormal_.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8bed46dad819b8c2bc2916051479040aefb849684a3718c905dd05478384e7 +size 13430 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitwhistle.wav new file mode 100644 index 00000000..2ab5f914 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e223a58853820006f4776a4b573d63403ab921f39fc50eff9682b7ac5824d4ff +size 17666 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-sliderslide.wav b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/hitsound/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/inputoverlay-background.png b/Skins/Aristia(Edit) + KaBa - Copy/inputoverlay-background.png new file mode 100644 index 00000000..cd13c92a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae2af0287838ec6ea6a7350c091dfc5dbc7f823935a008afa9346801b695263 +size 1226 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/inputoverlay-key.png b/Skins/Aristia(Edit) + KaBa - Copy/inputoverlay-key.png new file mode 100644 index 00000000..2ab66b42 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a4f1472331d41a1f3ef8bd31d7d78244fb2b70d3ceae5cebc11006dcbf52f1 +size 3544 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/inputoverlay-key@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/inputoverlay-key@2x.png new file mode 100644 index 00000000..7dad1f1e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe382682230bea874d70aa399f8df041c14f4fe20f4b8e21135b741f4d38d3a9 +size 4317 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/key-press-1.wav b/Skins/Aristia(Edit) + KaBa - Copy/key-press-1.wav new file mode 100644 index 00000000..286126cd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/key-press-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a73f082fda18e45527888b5618f2f86aad381a269769b0288a633d30db902bb7 +size 47250 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/key-press-2.wav b/Skins/Aristia(Edit) + KaBa - Copy/key-press-2.wav new file mode 100644 index 00000000..7cd38041 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/key-press-2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57476fff21765b4bf853370a48356e24bbdfd7158d02dc2a1c16077df41ca7d +size 47250 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/key-press-3.wav b/Skins/Aristia(Edit) + KaBa - Copy/key-press-3.wav new file mode 100644 index 00000000..33482c5f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/key-press-3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a4a85149253660f44902e2de466e9ba43396865ddebcd94f149d9cc5bdddc0 +size 47250 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/key-press-4.wav b/Skins/Aristia(Edit) + KaBa - Copy/key-press-4.wav new file mode 100644 index 00000000..5446f766 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/key-press-4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ada7797f594ce0548c0b3d268c5f19f3ec7ba0d815ebc9e5e109c0e0a120af +size 47250 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lighting.png b/Skins/Aristia(Edit) + KaBa - Copy/lighting.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-0.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-0.png new file mode 100644 index 00000000..9e3dd128 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8861194d8a8fb762a788e9d887fe2d5b51b5f606588bcbacff8561f4ce2b8b8 +size 33853 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-1.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-1.png new file mode 100644 index 00000000..e78bf942 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ecbede73dbf1a945d3242b73add0edaf41c4e115eac70e72135da00a886a45 +size 34213 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-10.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-10.png new file mode 100644 index 00000000..06585de1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb649eb04796ced0076136f9fc138854e787a4f0e34db34f4d9ed30f330a8e7 +size 31145 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-11.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-11.png new file mode 100644 index 00000000..31e7cea8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d0612eeddb5e06816c985d962b2793495ea28e69c3a5a0ebd3af37f3bab818 +size 29656 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-2.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-2.png new file mode 100644 index 00000000..8d3904f2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc21f3c77838a6725970119e0526fa7226cf2ba226a15773b13b0ce61bbc87c +size 33675 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-3.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-3.png new file mode 100644 index 00000000..2d1ca15a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0656913d6362e4226a644f16d10c9814af8f28801fa1147a7bfe9ab0fa4a70f4 +size 35347 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-4.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-4.png new file mode 100644 index 00000000..0f06e506 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c818c93ccde01b15d0f4c0b194a8880b5e37cd0c8a9fcce01b45cb79c10a9f0 +size 34690 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-5.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-5.png new file mode 100644 index 00000000..fb5745c2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a243225116e0830de208f5ae28b8574164031a137cb5ec99723a66641a89f470 +size 35131 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-6.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-6.png new file mode 100644 index 00000000..cb25298e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f988e09acc3a3510302863187d0b088fe0a2f0613ac1f216ef4d47d040eb61 +size 34009 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-7.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-7.png new file mode 100644 index 00000000..0dd7c51b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6b0cde86c3aac6e7dc0709a6e74f03266a9b5742620bd06152302ccb9911fa +size 32190 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-8.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-8.png new file mode 100644 index 00000000..d5e83d58 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85de2e7db027e8537d61ae80adc98869a2a7efd2ea2ebaece96cb3ea595284a +size 25741 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingL-9.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-9.png new file mode 100644 index 00000000..f32b1880 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingL-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8358bd8679249d7c58cc3df865f09f3abfe181014e3d2d08cb22ff8cc9ce4db4 +size 30058 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-0.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-0.png new file mode 100644 index 00000000..535822f9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230513b8ad4eb0be22b4b6c5853bc10cee19cb2cb203f7df0b33b169160f1c59 +size 8713 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-1.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-1.png new file mode 100644 index 00000000..1b8eeec9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecdecf1de378660028766321ab6428005dc686875465e11995fc2a041ae6859c +size 13475 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-10.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-10.png new file mode 100644 index 00000000..0dd7c51b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6b0cde86c3aac6e7dc0709a6e74f03266a9b5742620bd06152302ccb9911fa +size 32190 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-11.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-11.png new file mode 100644 index 00000000..233b93a5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbda31abaab22c2a13ac4df9a8ef8afec8fa70e8e657c4d51a191747538df499 +size 28485 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-2.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-2.png new file mode 100644 index 00000000..55319256 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a3846df181e8b564c83b03de5641e99a7e6dc7ef41c4e95b07cd71850d56137 +size 21952 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-3.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-3.png new file mode 100644 index 00000000..9e3dd128 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8861194d8a8fb762a788e9d887fe2d5b51b5f606588bcbacff8561f4ce2b8b8 +size 33853 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-4.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-4.png new file mode 100644 index 00000000..e78bf942 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ecbede73dbf1a945d3242b73add0edaf41c4e115eac70e72135da00a886a45 +size 34213 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-5.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-5.png new file mode 100644 index 00000000..8d3904f2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc21f3c77838a6725970119e0526fa7226cf2ba226a15773b13b0ce61bbc87c +size 33675 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-6.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-6.png new file mode 100644 index 00000000..2d1ca15a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0656913d6362e4226a644f16d10c9814af8f28801fa1147a7bfe9ab0fa4a70f4 +size 35347 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-7.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-7.png new file mode 100644 index 00000000..0f06e506 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c818c93ccde01b15d0f4c0b194a8880b5e37cd0c8a9fcce01b45cb79c10a9f0 +size 34690 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-8.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-8.png new file mode 100644 index 00000000..fb5745c2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a243225116e0830de208f5ae28b8574164031a137cb5ec99723a66641a89f470 +size 35131 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/lightingN-9.png b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-9.png new file mode 100644 index 00000000..cb25298e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/lightingN-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f988e09acc3a3510302863187d0b088fe0a2f0613ac1f216ef4d47d040eb61 +size 34009 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit0.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit0.png new file mode 100644 index 00000000..80f46c72 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4cf8bf03e6d681c9ba4e3bea6ba0d92b983c7845122e24179ad80c256904ece +size 9416 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit0@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit0@2x.png new file mode 100644 index 00000000..15949233 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:807d80462311424da3f748cc500e1c4c728c390ff883604b0a03d2b34b6c941e +size 17926 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit100.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit100.png new file mode 100644 index 00000000..786dea36 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4da2b98d63074852350338c7adcbe3b3e3f776757792497f146ca9cddf65cd +size 6365 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit100@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit100@2x.png new file mode 100644 index 00000000..8288709d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a35e420be396fbd999e87b0998f20f93896e3803021a45914d41efa0d87327 +size 7773 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit200.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit200.png new file mode 100644 index 00000000..c6a309fa --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit200.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4643ba714e47054195600a24865b881700a40a5c0b02782f7eb6f82b543df5d +size 6931 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit200@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit200@2x.png new file mode 100644 index 00000000..38a9bea2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit200@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b40965b239e38b3ebbf916b2f24092c738068aa6aba615e3918454a1e7492b85 +size 8956 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300.png new file mode 100644 index 00000000..a109540d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df63ed3d7a7dc567ebbb1d7f4652a456cb6a29936e75f05aa8b482a6e3cbdaa0 +size 9864 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300@2x.png new file mode 100644 index 00000000..38c873dd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20621faa06e2e1c78983a03c5becefbbe5ffdac1c6082b23e8a8be5a9b8573f9 +size 14542 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-0.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-0.png new file mode 100644 index 00000000..cc24dfc8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:291a8aeb2a9184f17de569e69d0802cdc6c4649e3d84d7ef22ca77c3126fb162 +size 10080 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-0@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-0@2x.png new file mode 100644 index 00000000..66a09120 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd40d2bf6ed4b0df82c716d92b12323b19e9d8815041ec74e7c9668a7d7363d6 +size 14767 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-1.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-1.png new file mode 100644 index 00000000..608d618b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996243714877b62aff5ce96ea748a3d8454e7763d98f7444fcf7bce9c1c99c11 +size 10047 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-1@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-1@2x.png new file mode 100644 index 00000000..59b3f27d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd35f7f662489793d7cb88ddd8432ad9ee026955d1216b1ad0cc2d744e09fac +size 14697 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-2.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-2.png new file mode 100644 index 00000000..9a050203 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f20017728280d2df2116de0232df2989679938df13e7a70c9b090ae141ec2f2 +size 10073 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-2@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-2@2x.png new file mode 100644 index 00000000..c56d30a4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit300g-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169af3a43ba6f1975fc57fac13a34ce9a3c1cc1d9aa23ccfc038b4cff0beb68b +size 14853 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit50.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit50.png new file mode 100644 index 00000000..bde1a31c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f581303935057a5d42f32bb6cdb680e6506b02f3d4b2fda44e02e30605d65b +size 5706 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-hit50@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit50@2x.png new file mode 100644 index 00000000..02e8f5a7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98d96348d9adab959014b715abb5798018a41ff63b2ffb04bec304e85fa3900 +size 7130 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-key1.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-key1.png new file mode 100644 index 00000000..bb591bcf --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-key1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34fd74373356d30b6bcb1043fd9dbde9b1fede7d7149f51caba58c4a981991a7 +size 3320 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-key1D.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-key1D.png new file mode 100644 index 00000000..433137fd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-key1D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c09e19f3744396b225c1a412b708b2dfc76fec5e530b46efeefec8f29e9821 +size 6464 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-key2.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-key2.png new file mode 100644 index 00000000..2e83fca8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-key2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aab788097b6be3b45f17cc64266a6c905cb19ddcd49aa225a90a793a6b25c92 +size 3293 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-key2D.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-key2D.png new file mode 100644 index 00000000..69fa3328 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-key2D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93633792d515d5bd70e29537741ae447c7b1befc9dc44ef2c2f784ec56ed48c3 +size 7748 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-keyS.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-keyS.png new file mode 100644 index 00000000..69f01ad0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-keyS.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e5591d1741e0a5dde8ac6b18df5b56aa80633234fba5937a80988c0ea6da42 +size 3715 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-keySD.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-keySD.png new file mode 100644 index 00000000..47472ef5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-keySD.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e485c59adf0d1dd11a20996408b42a93ba0b6d46cdcdefe0e56d2bd207db397f +size 8181 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-keyTURN.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-keyTURN.png new file mode 100644 index 00000000..c806a0b0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-keyTURN.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:142f1f4fc200490103be7ffcaf894bb1cd201e8f9c9bbe6c10c8e795f5935516 +size 9125 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-keyTURND.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-keyTURND.png new file mode 100644 index 00000000..47aa8270 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-keyTURND.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d87264029e36b0254bf400fe3c011467ded739e66a6fea0f84fb094331d1b71 +size 9756 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-note1.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-note1.png new file mode 100644 index 00000000..09124ab0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-note1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a427690a2fe4ba4731e17fc9b6a50a4406938db7a14e9f64d0b1db5b488bdc +size 10340 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-note1H.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-note1H.png new file mode 100644 index 00000000..32a2c926 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-note1H.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238374fcbb75566b7fee7db22edc35cc7709dbb323ee898c1d79ad317d79df5c +size 10641 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-note1L.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-note1L.png new file mode 100644 index 00000000..7a3b12a5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-note1L.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acdd36b15e04209f0c9fead171fa2c649b9c36397e64ff31bc785cf7e30b6c22 +size 4424 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-note2.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-note2.png new file mode 100644 index 00000000..14fdf89c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-note2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395be453d76e358811e14e9d388f6c7c8dd2750b96ec590b497c1b91c780813b +size 11181 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-note2H.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-note2H.png new file mode 100644 index 00000000..e0d03cd3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-note2H.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27cc32a06974c40c93fb7081e478bd6d2ce536b0b0ae217c2940b18377b55fac +size 11000 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-note2L.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-note2L.png new file mode 100644 index 00000000..3798d87d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-note2L.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598c26bb9d0418c678235c2cb1ac5b6629bfd051ecddecbbfe52433faffb6049 +size 5049 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-noteS.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-noteS.png new file mode 100644 index 00000000..4745ee37 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-noteS.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f941845f48b41f26e4dad8c92a01dd9d8d53be4724ec43b4ae0f8aeffeba56d9 +size 10809 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-noteSH.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-noteSH.png new file mode 100644 index 00000000..22127671 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-noteSH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba9a52392f4b27e5a2734f4a891d1137c175c8585ba027e76ed7ed3561e81b5f +size 11389 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-noteSL.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-noteSL.png new file mode 100644 index 00000000..f9608b07 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-noteSL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf3a19a9f460739524799d58473c7eac7591d2301e1c03794a5e0d91d091a14 +size 4544 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-bottom.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-bottom.png new file mode 100644 index 00000000..ac1049d7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52710f0c0528a9726ab0840946085dd1118268680e9015913d4e3f0d1d8b609 +size 4179 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-bottom@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-bottom@2x.png new file mode 100644 index 00000000..b5faaa64 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cad08e6c1e7a68e94a8484ee78a1c0b27f9fddbb0ae70c52259b4126181aac +size 3342 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-hint.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-hint.png new file mode 100644 index 00000000..2f48c4c5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-hint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ded5e04a27ac7cb72c3f0a67f3da0cd49717e84eb04c0278f6f9d45cdd54e04 +size 3322 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-left.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-left.png new file mode 100644 index 00000000..493d9703 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b13e7d6950f42207bbde6dc841cf71ebd795296796d02d1121d09e7e2407177 +size 6460 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-light.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-light.png new file mode 100644 index 00000000..7f8f77eb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-light.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea1e257429318c8111834363d8c8c8f282567a7d7a1ac6836828ac06efbbb7a +size 4595 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-right.png b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-right.png new file mode 100644 index 00000000..e59d2715 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mania-stage-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d249ba9503932b566f71ac74246a31d4d38ed59d967d5b83cc046cc9580e1d5d +size 6039 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/match-confirm.wav b/Skins/Aristia(Edit) + KaBa - Copy/match-confirm.wav new file mode 100644 index 00000000..e922b130 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4595654d484e82c779d95658d5d186e8f95f33191a9d26a926ff8e57433f861 +size 213372 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/match-leave.wav b/Skins/Aristia(Edit) + KaBa - Copy/match-leave.wav new file mode 100644 index 00000000..06237430 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/match-leave.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98418d513d53e6e59037d7889fc2d5ecc1fe6f0cecdedfe3e30f22bade89916f +size 124440 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/match-start.wav b/Skins/Aristia(Edit) + KaBa - Copy/match-start.wav new file mode 100644 index 00000000..e4fece60 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/match-start.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a1555df583eb738932d507521c9e1c6171397dbb9adbb53045a2ed3df9a4b0b +size 179036 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-0.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-0.png new file mode 100644 index 00000000..520e2965 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b59fea771a33cbebe0e17807be685be0029b70fbd457bfe66e31f8d4571ea43 +size 12007 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-0@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-0@2x.png new file mode 100644 index 00000000..1af0c1df --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb63b57fe2b88104b1f6797bb442a8534bd145a024ed682d481e02fc9d084fad +size 13670 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-1.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-1.png new file mode 100644 index 00000000..520e2965 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b59fea771a33cbebe0e17807be685be0029b70fbd457bfe66e31f8d4571ea43 +size 12007 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-10.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-10.png new file mode 100644 index 00000000..47090750 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c89b4e213d943abdec57ee9d170edb1a6ee34803e00373783c4b6df5d70050 +size 11032 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-10@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-10@2x.png new file mode 100644 index 00000000..699d6d11 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b53b82176eaacf610af523557c155eac64cd60399fa6b0f457d57837695a762 +size 13693 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-11.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-11.png new file mode 100644 index 00000000..47090750 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c89b4e213d943abdec57ee9d170edb1a6ee34803e00373783c4b6df5d70050 +size 11032 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-11@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-11@2x.png new file mode 100644 index 00000000..699d6d11 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b53b82176eaacf610af523557c155eac64cd60399fa6b0f457d57837695a762 +size 13693 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-12.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-12.png new file mode 100644 index 00000000..86d8ae01 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab48195692f293e1449111fb89145d3c5300faae1a9fdf38bc1061ae52282b4 +size 9687 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-12@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-12@2x.png new file mode 100644 index 00000000..8f49d149 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a0782e67186e6a70dd3bd6cbdf63fbd1eae0e9f16061d146681676bafe02de +size 12432 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-13.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-13.png new file mode 100644 index 00000000..86d8ae01 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab48195692f293e1449111fb89145d3c5300faae1a9fdf38bc1061ae52282b4 +size 9687 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-13@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-13@2x.png new file mode 100644 index 00000000..8f49d149 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a0782e67186e6a70dd3bd6cbdf63fbd1eae0e9f16061d146681676bafe02de +size 12432 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-14.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-14.png new file mode 100644 index 00000000..a75e4433 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2f782bf4531c5155fb3166f1fd9028cf24482eb9a0166ddddd91ac3576dc94 +size 9818 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-14@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-14@2x.png new file mode 100644 index 00000000..411b994b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1449531822c8718e207555f694656f0e08dc9f6092622e5710334ccc77ebb2c9 +size 12743 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-15.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-15.png new file mode 100644 index 00000000..a75e4433 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2f782bf4531c5155fb3166f1fd9028cf24482eb9a0166ddddd91ac3576dc94 +size 9818 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-15@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-15@2x.png new file mode 100644 index 00000000..411b994b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1449531822c8718e207555f694656f0e08dc9f6092622e5710334ccc77ebb2c9 +size 12743 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-16.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-16.png new file mode 100644 index 00000000..8e4c92cb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a45b9d91a65215291d6ab1e00738bac838ec3ca084597123fc1e58cce4367b +size 9882 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-16@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-16@2x.png new file mode 100644 index 00000000..61c0da2f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5076a6e799164b56ec4cb6cf22e7ecebe38117b45c232e793fc513c1097bc004 +size 12863 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-17.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-17.png new file mode 100644 index 00000000..8e4c92cb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a45b9d91a65215291d6ab1e00738bac838ec3ca084597123fc1e58cce4367b +size 9882 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-17@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-17@2x.png new file mode 100644 index 00000000..61c0da2f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5076a6e799164b56ec4cb6cf22e7ecebe38117b45c232e793fc513c1097bc004 +size 12863 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-18.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-18.png new file mode 100644 index 00000000..f8c8468f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5db0a04223b8c3f7254400034e1d775ed52001fdf7aae36e0bae6f315be88c5 +size 8555 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-18@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-18@2x.png new file mode 100644 index 00000000..0a0d0dd8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a92fdf082ec24395ee0bd9adaceb37b520aac9aa2f52d284b33861f089bcad +size 11378 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-19.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-19.png new file mode 100644 index 00000000..f8c8468f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5db0a04223b8c3f7254400034e1d775ed52001fdf7aae36e0bae6f315be88c5 +size 8555 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-19@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-19@2x.png new file mode 100644 index 00000000..0a0d0dd8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a92fdf082ec24395ee0bd9adaceb37b520aac9aa2f52d284b33861f089bcad +size 11378 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-1@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-1@2x.png new file mode 100644 index 00000000..1af0c1df --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb63b57fe2b88104b1f6797bb442a8534bd145a024ed682d481e02fc9d084fad +size 13670 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-2.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-2.png new file mode 100644 index 00000000..d88ec21c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04dd268294bc434a5dc67b659a78db67fb26b44e18d7a688703bd731404ef72a +size 12048 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-20.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-20.png new file mode 100644 index 00000000..eeb4bf0f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aefafc54290882b7b0924eb2b24ba3873786bbc860575bf09f212b7629f6630f +size 8521 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-20@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-20@2x.png new file mode 100644 index 00000000..78fb6bb6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b80015a3e2464bbe492323f437b22e69b35a29c40dce70f46b8b97bc7e1e610 +size 11357 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-21.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-21.png new file mode 100644 index 00000000..eeb4bf0f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aefafc54290882b7b0924eb2b24ba3873786bbc860575bf09f212b7629f6630f +size 8521 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-21@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-21@2x.png new file mode 100644 index 00000000..78fb6bb6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b80015a3e2464bbe492323f437b22e69b35a29c40dce70f46b8b97bc7e1e610 +size 11357 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-22.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-22.png new file mode 100644 index 00000000..4d4c8b11 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d402f04688efad7c852736bb1a810d438fc7ac73fe3da05c98b4d636f29eb2 +size 8532 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-22@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-22@2x.png new file mode 100644 index 00000000..f017da16 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f36f78b664179b08ea3f0a0dad45fe22f06d02bc3b8ac9fa6a44331d504c99 +size 11400 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-23.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-23.png new file mode 100644 index 00000000..4d4c8b11 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d402f04688efad7c852736bb1a810d438fc7ac73fe3da05c98b4d636f29eb2 +size 8532 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-23@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-23@2x.png new file mode 100644 index 00000000..f017da16 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f36f78b664179b08ea3f0a0dad45fe22f06d02bc3b8ac9fa6a44331d504c99 +size 11400 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-24.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-24.png new file mode 100644 index 00000000..79dc0141 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b3413038d8eec05556e78b4564acf9b37d03eaab22227b7aa7fdc29ca48b42d +size 7048 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-24@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-24@2x.png new file mode 100644 index 00000000..18717cf9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73c2ec94d7e1ea5a6ed89d0c88e112b001325ff49617d89eda8a92368b1483e +size 9944 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-25.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-25.png new file mode 100644 index 00000000..79dc0141 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b3413038d8eec05556e78b4564acf9b37d03eaab22227b7aa7fdc29ca48b42d +size 7048 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-25@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-25@2x.png new file mode 100644 index 00000000..18717cf9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73c2ec94d7e1ea5a6ed89d0c88e112b001325ff49617d89eda8a92368b1483e +size 9944 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-26.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-26.png new file mode 100644 index 00000000..be157871 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebbf403cc287792e0312be0dd4fc301f5181b914a933d4a05882bb15f7dc8e06 +size 6971 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-26@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-26@2x.png new file mode 100644 index 00000000..5e1b8eaa --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8271796b64a7e25530402b787851de955629f82dc84cd5be521cf0bb4c40c2 +size 9822 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-27.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-27.png new file mode 100644 index 00000000..be157871 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebbf403cc287792e0312be0dd4fc301f5181b914a933d4a05882bb15f7dc8e06 +size 6971 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-27@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-27@2x.png new file mode 100644 index 00000000..5e1b8eaa --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8271796b64a7e25530402b787851de955629f82dc84cd5be521cf0bb4c40c2 +size 9822 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-28.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-28.png new file mode 100644 index 00000000..1efe8288 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17c4d1306b8b41f88c376db5716a459dbf5e3b0cbad82844c9f68489f3f478a +size 6683 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-28@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-28@2x.png new file mode 100644 index 00000000..a4783804 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1ad68caba6e49eb790b5156dc9f3e817386f171060bf7e5a59bed6ff7cbe39 +size 9645 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-29.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-29.png new file mode 100644 index 00000000..1efe8288 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17c4d1306b8b41f88c376db5716a459dbf5e3b0cbad82844c9f68489f3f478a +size 6683 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-29@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-29@2x.png new file mode 100644 index 00000000..a4783804 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1ad68caba6e49eb790b5156dc9f3e817386f171060bf7e5a59bed6ff7cbe39 +size 9645 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-2@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-2@2x.png new file mode 100644 index 00000000..eb4d7a45 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0e15d43681470746d6c723c168b1708414f53d7ea1a218a4a4bb89db90cbe5 +size 13688 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-3.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-3.png new file mode 100644 index 00000000..d88ec21c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04dd268294bc434a5dc67b659a78db67fb26b44e18d7a688703bd731404ef72a +size 12048 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-30.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-30.png new file mode 100644 index 00000000..9e5a4366 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2fa5ebfa5280792124ed9a7689970d55f759c5d2f94757e3d030aea070eb7b +size 6791 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-30@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-30@2x.png new file mode 100644 index 00000000..7d40379e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f70ccc092c783840692be77237bf9c1aa096ac671e8ac57d2ac668a3ebf95e9c +size 9370 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-31.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-31.png new file mode 100644 index 00000000..9e5a4366 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2fa5ebfa5280792124ed9a7689970d55f759c5d2f94757e3d030aea070eb7b +size 6791 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-31@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-31@2x.png new file mode 100644 index 00000000..7d40379e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f70ccc092c783840692be77237bf9c1aa096ac671e8ac57d2ac668a3ebf95e9c +size 9370 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-32.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-32.png new file mode 100644 index 00000000..e6c12718 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe3e065a873affa59df42764a1c79859e72bbe0029c7bf5b5bfd991c6b73444 +size 6350 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-32@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-32@2x.png new file mode 100644 index 00000000..0e59afae --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7739de726adc6c62724603dfc55a112d3eae1bfa615b28e2262a1393e3005b39 +size 9047 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-33.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-33.png new file mode 100644 index 00000000..e6c12718 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe3e065a873affa59df42764a1c79859e72bbe0029c7bf5b5bfd991c6b73444 +size 6350 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-33@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-33@2x.png new file mode 100644 index 00000000..0e59afae --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7739de726adc6c62724603dfc55a112d3eae1bfa615b28e2262a1393e3005b39 +size 9047 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-34.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-34.png new file mode 100644 index 00000000..41218876 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4366df5147d4901e8f427cba8b93e602d268b06805c1c553f83728367fd3c8f8 +size 6164 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-34@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-34@2x.png new file mode 100644 index 00000000..2139f96f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5e336bf4388f3cb798bdf0a08baef760dfa3246b88cb8fe5cbc35e95fa0cb1e +size 8625 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-35.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-35.png new file mode 100644 index 00000000..41218876 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4366df5147d4901e8f427cba8b93e602d268b06805c1c553f83728367fd3c8f8 +size 6164 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-35@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-35@2x.png new file mode 100644 index 00000000..2139f96f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5e336bf4388f3cb798bdf0a08baef760dfa3246b88cb8fe5cbc35e95fa0cb1e +size 8625 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-36.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-36.png new file mode 100644 index 00000000..0f487a73 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e100e8a874917327ae3dc54d51d2d417fbddc4d51617267c0c2a13da9111ddf3 +size 6247 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-36@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-36@2x.png new file mode 100644 index 00000000..cd5736be --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8ffbbf7f0895a9cdadc66a83a2437ba44eb0d9330084e1e020f4fc0830ffca +size 8310 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-37.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-37.png new file mode 100644 index 00000000..0f487a73 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e100e8a874917327ae3dc54d51d2d417fbddc4d51617267c0c2a13da9111ddf3 +size 6247 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-37@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-37@2x.png new file mode 100644 index 00000000..cd5736be --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8ffbbf7f0895a9cdadc66a83a2437ba44eb0d9330084e1e020f4fc0830ffca +size 8310 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-38.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-38.png new file mode 100644 index 00000000..e0b7df73 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31886e71e1090cd0d5612333ce754937f7f9bb454d90329de2841b9811a6cc7d +size 7646 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-38@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-38@2x.png new file mode 100644 index 00000000..9611f76a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db12ddcd91f10138331d5cc7ffafd77383dc187042c83af1727d11fe5e4ceea3 +size 9419 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-39.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-39.png new file mode 100644 index 00000000..e0b7df73 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31886e71e1090cd0d5612333ce754937f7f9bb454d90329de2841b9811a6cc7d +size 7646 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-39@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-39@2x.png new file mode 100644 index 00000000..9611f76a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db12ddcd91f10138331d5cc7ffafd77383dc187042c83af1727d11fe5e4ceea3 +size 9419 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-3@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-3@2x.png new file mode 100644 index 00000000..eb4d7a45 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0e15d43681470746d6c723c168b1708414f53d7ea1a218a4a4bb89db90cbe5 +size 13688 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-4.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-4.png new file mode 100644 index 00000000..4e40548d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e1f03e5c4d27e9ce80388397cf32125959ca0840c775755db76c22565d6248 +size 12153 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-40.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-40.png new file mode 100644 index 00000000..b8ffb68c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86cbc4fdbd1c4add53f6281fae6f5f312d2a672962687cafd4a379bae7ed2f05 +size 7517 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-40@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-40@2x.png new file mode 100644 index 00000000..9fedfc30 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f12230f75cb5e88c41e692d2abcdeee9680df4a651cf7a36747cc0c426261bf +size 9251 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-41.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-41.png new file mode 100644 index 00000000..b8ffb68c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86cbc4fdbd1c4add53f6281fae6f5f312d2a672962687cafd4a379bae7ed2f05 +size 7517 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-41@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-41@2x.png new file mode 100644 index 00000000..9fedfc30 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f12230f75cb5e88c41e692d2abcdeee9680df4a651cf7a36747cc0c426261bf +size 9251 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-42.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-42.png new file mode 100644 index 00000000..98ace0cf --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a0b0c969780a2815d0fde54de0f2bb790f68e9c124e519381a855f18a4fa35 +size 7451 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-42@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-42@2x.png new file mode 100644 index 00000000..311c92d3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9e53483208d5c5de68d799d8fbdb4abc8c0d8b310fe716561bdd130d1f64a9 +size 9128 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-43.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-43.png new file mode 100644 index 00000000..98ace0cf --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a0b0c969780a2815d0fde54de0f2bb790f68e9c124e519381a855f18a4fa35 +size 7451 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-43@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-43@2x.png new file mode 100644 index 00000000..311c92d3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9e53483208d5c5de68d799d8fbdb4abc8c0d8b310fe716561bdd130d1f64a9 +size 9128 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-44.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-44.png new file mode 100644 index 00000000..80832fc9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a778a0c3ca5c7fb9d80b43510d2ce506c334944a652ffaf9b66b39e18dd3eb +size 8709 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-44@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-44@2x.png new file mode 100644 index 00000000..a23f3030 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d937a8bc7b925b559b083fee9374656705bd2eec1ba143a1927ce15f996ba7 +size 10710 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-45.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-45.png new file mode 100644 index 00000000..80832fc9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a778a0c3ca5c7fb9d80b43510d2ce506c334944a652ffaf9b66b39e18dd3eb +size 8709 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-45@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-45@2x.png new file mode 100644 index 00000000..a23f3030 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d937a8bc7b925b559b083fee9374656705bd2eec1ba143a1927ce15f996ba7 +size 10710 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-46.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-46.png new file mode 100644 index 00000000..349ae0d6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02732b4502924982862be94d91753bbe2fd5438eaaf25808225c751f34ab095 +size 8698 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-46@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-46@2x.png new file mode 100644 index 00000000..7e141613 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce96289d011acc0787b942b703dc1c730f43dcf89e6b78798099475d47c2570b +size 10750 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-47.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-47.png new file mode 100644 index 00000000..349ae0d6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02732b4502924982862be94d91753bbe2fd5438eaaf25808225c751f34ab095 +size 8698 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-47@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-47@2x.png new file mode 100644 index 00000000..7e141613 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce96289d011acc0787b942b703dc1c730f43dcf89e6b78798099475d47c2570b +size 10750 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-48.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-48.png new file mode 100644 index 00000000..4d0b2027 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2fd84f8ccadec924df0803435f8047d4133221da54ddc449d70c0c78c950c35 +size 8741 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-48@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-48@2x.png new file mode 100644 index 00000000..3bcf20f8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d344be4623ae0055aa20aadf4bb691b79e0a7b306988ef9adc5404efdec258 +size 10875 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-49.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-49.png new file mode 100644 index 00000000..4d0b2027 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2fd84f8ccadec924df0803435f8047d4133221da54ddc449d70c0c78c950c35 +size 8741 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-49@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-49@2x.png new file mode 100644 index 00000000..3bcf20f8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d344be4623ae0055aa20aadf4bb691b79e0a7b306988ef9adc5404efdec258 +size 10875 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-4@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-4@2x.png new file mode 100644 index 00000000..e9f02c62 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:660989295ec13d70b853d2ce2e2849e34bcc29aaaaf570e308f9e83706c5236c +size 13960 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-5.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-5.png new file mode 100644 index 00000000..4e40548d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e1f03e5c4d27e9ce80388397cf32125959ca0840c775755db76c22565d6248 +size 12153 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-50.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-50.png new file mode 100644 index 00000000..4b7fb67a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe5f0d694a2cb499c06b4ecd349b7c36f21e4b06f1044341db83ed038edd3b0 +size 10339 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-50@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-50@2x.png new file mode 100644 index 00000000..ee639623 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9db00d7df3d36153dce431ed4485925e398c4f3c626fda8985d53721a787a8 +size 12560 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-51.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-51.png new file mode 100644 index 00000000..4b7fb67a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe5f0d694a2cb499c06b4ecd349b7c36f21e4b06f1044341db83ed038edd3b0 +size 10339 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-51@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-51@2x.png new file mode 100644 index 00000000..ee639623 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-51@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9db00d7df3d36153dce431ed4485925e398c4f3c626fda8985d53721a787a8 +size 12560 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-52.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-52.png new file mode 100644 index 00000000..6fdfa6cb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cef55a04db2c3981e39b9c3e3cfd40fed7fefaf2ca3b1015458f926adcf9ddf +size 10519 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-52@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-52@2x.png new file mode 100644 index 00000000..75f967a9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-52@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012c78c999770d7bfc9f92d4a2eb365539adcf0147d873171fab0da38e7ff65f +size 12786 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-53.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-53.png new file mode 100644 index 00000000..6fdfa6cb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cef55a04db2c3981e39b9c3e3cfd40fed7fefaf2ca3b1015458f926adcf9ddf +size 10519 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-53@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-53@2x.png new file mode 100644 index 00000000..75f967a9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-53@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012c78c999770d7bfc9f92d4a2eb365539adcf0147d873171fab0da38e7ff65f +size 12786 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-54.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-54.png new file mode 100644 index 00000000..eeebe64d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57711c9db369aa453451b8d542f8e097146ba2949f22e88aeed328b3a3c52c5c +size 12151 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-54@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-54@2x.png new file mode 100644 index 00000000..15ab54c7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-54@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c02b8de83706d377297208a242fa03e96d443bc510fd39970acc691ce464a62 +size 14099 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-55.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-55.png new file mode 100644 index 00000000..eeebe64d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57711c9db369aa453451b8d542f8e097146ba2949f22e88aeed328b3a3c52c5c +size 12151 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-55@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-55@2x.png new file mode 100644 index 00000000..15ab54c7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-55@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c02b8de83706d377297208a242fa03e96d443bc510fd39970acc691ce464a62 +size 14099 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-56.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-56.png new file mode 100644 index 00000000..2d3b4edb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343ff3959bd9d8055ff4a3df1f00857fe85a03fb54d9acb8a28215d6c79da676 +size 12265 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-56@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-56@2x.png new file mode 100644 index 00000000..b828b633 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-56@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150d2060ad242855e36d495dce457bb3c500106f5b4d16bc49088e9136236094 +size 14260 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-57.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-57.png new file mode 100644 index 00000000..2d3b4edb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343ff3959bd9d8055ff4a3df1f00857fe85a03fb54d9acb8a28215d6c79da676 +size 12265 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-57@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-57@2x.png new file mode 100644 index 00000000..b828b633 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-57@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150d2060ad242855e36d495dce457bb3c500106f5b4d16bc49088e9136236094 +size 14260 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-58.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-58.png new file mode 100644 index 00000000..6ac34dbb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa044b142b46606739a24566c2b4bd98f6a019cba127999d887e0f614be29fbe +size 12490 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-58@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-58@2x.png new file mode 100644 index 00000000..4585d88d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-58@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21db788c90864e5c2af053c39c88cdc9d2df14323ab72d4e27692f1d673fc4da +size 14327 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-5@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-5@2x.png new file mode 100644 index 00000000..e9f02c62 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:660989295ec13d70b853d2ce2e2849e34bcc29aaaaf570e308f9e83706c5236c +size 13960 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-6.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-6.png new file mode 100644 index 00000000..cff02e36 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c54b31f6ab53880d865ba67459423e9b510ad6c1e34d69d5b43187780dada13 +size 12322 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-6@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-6@2x.png new file mode 100644 index 00000000..9338dac0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e59034181098d58fa6054056842e62ffb817e1e852b0e0e98c62de30cb9d583 +size 14264 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-7.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-7.png new file mode 100644 index 00000000..cff02e36 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c54b31f6ab53880d865ba67459423e9b510ad6c1e34d69d5b43187780dada13 +size 12322 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-7@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-7@2x.png new file mode 100644 index 00000000..9338dac0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e59034181098d58fa6054056842e62ffb817e1e852b0e0e98c62de30cb9d583 +size 14264 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-8.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-8.png new file mode 100644 index 00000000..a78ab3fa --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fab41469a49f6b4f41e5966b247ad1f1eaf0c5e5117114ebbdb9cb7b8d14c2a +size 10882 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-8@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-8@2x.png new file mode 100644 index 00000000..d72743e8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4efbd9c6a483c2b0cda283339d9b42c83675d552f801257578293fa8868e102 +size 13387 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-9.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-9.png new file mode 100644 index 00000000..a78ab3fa --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fab41469a49f6b4f41e5966b247ad1f1eaf0c5e5117114ebbdb9cb7b8d14c2a +size 10882 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-back-9@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-9@2x.png new file mode 100644 index 00000000..d72743e8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-back-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4efbd9c6a483c2b0cda283339d9b42c83675d552f801257578293fa8868e102 +size 13387 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-background - ___.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-background - ___.png new file mode 100644 index 00000000..8b0ca7db --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-background - ___.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac43a90f22b7437025d393ec6f17835712d16d16468783251a6a5b70bb07e8e +size 807977 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-background.jpg b/Skins/Aristia(Edit) + KaBa - Copy/menu-background.jpg new file mode 100644 index 00000000..ea903275 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bcd099a0de1b287882588a07a0b21ee573180312ca329af5e9781ada472159e +size 1023308 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-background.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-background.png new file mode 100644 index 00000000..d1d76f64 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421f36b0ffbac8ea9256b5e5f256ddcbf01243689b509b2e23dcd59ccc9ff877 +size 789399 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-button-background.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-button-background.png new file mode 100644 index 00000000..d639529e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69723e05af2aa213d3d3271187d86de72b52f8d2a7efb99c927c4514738166f +size 16026 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-button-background@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-button-background@2x.png new file mode 100644 index 00000000..6a393d6e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b5872b7e128e404520fbabc28c44b3125f8144c2289cc099bde7925582f2155 +size 41600 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menu-snow.png b/Skins/Aristia(Edit) + KaBa - Copy/menu-snow.png new file mode 100644 index 00000000..87028b03 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a314684e866e1f2c9099167b5bb1a25b9b5397a741376cca1f6b265cd3ab33a3 +size 3123 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menuback.wav b/Skins/Aristia(Edit) + KaBa - Copy/menuback.wav new file mode 100644 index 00000000..6b532117 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4605c29f51af0819c3e65609ea76abdac493550f947f1b1a1f1c335e5d62e9 +size 30448 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menuclick.wav b/Skins/Aristia(Edit) + KaBa - Copy/menuclick.wav new file mode 100644 index 00000000..bb687361 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811afe81261f3144ef306aca2108b0e426e79fc529a2ca5b9bfe00c353113e6e +size 144214 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/menuhit.wav b/Skins/Aristia(Edit) + KaBa - Copy/menuhit.wav new file mode 100644 index 00000000..0a50f012 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba0d7210bf6fc251841fdbe7aa7896278245b579a3a375462d0085aea8d5103 +size 361038 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-med.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-med.png new file mode 100644 index 00000000..2d3c4b3d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9cab661572f2f13b17084ceae473def96a017d417adb2df9a40a95ff5c9fd4c +size 6341 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-med@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-med@2x.png new file mode 100644 index 00000000..3afe5bab --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cde2bb413714bbecf4887c7a21c0996518871b54dbeb0564a2bd65bbb05a9a5 +size 10161 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-small.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-small.png new file mode 100644 index 00000000..a54f8f40 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac3496c5d2410048204a0a5a35ed7d26d062a4414d67d132979749ef8f54a474 +size 3467 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-small@2x.png new file mode 100644 index 00000000..a33aa966 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11060a9f3169edcf9cf90295c82cd5a52ff647483e17d725f856f749cb530e04 +size 4341 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits.png new file mode 100644 index 00000000..ddcedb79 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8806a2cca2137de5706a08d3045f9562e07809eaefc6390d8ce095038b4e9584 +size 15316 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits@2x.png new file mode 100644 index 00000000..2bb6e60d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-fruits@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ff5d181df503d964c7ca4591acd333fbb7c50ce7dd1d1726698316dd6b6dbd +size 21619 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-med.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-med.png new file mode 100644 index 00000000..b789159f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fda9c795a7773839e1e25f9fe9797a467f4f0d0bc58275a6739620ea45bf07b +size 7547 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-med@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-med@2x.png new file mode 100644 index 00000000..031c67c6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9b4c4bef3de5deadf2b4ec77b6cc762c4db76d3af856ddc0f3583db3d4e58ab +size 9238 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-small.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-small.png new file mode 100644 index 00000000..da2c43c2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c964892ee8c195473c9a911f76a0075bc30dbea6c05b32a4db59bfb20d5d5d52 +size 3496 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-small@2x.png new file mode 100644 index 00000000..41243abb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:060a692388d25ec4187bba7d7246c864567581ae77cdade6257e15097bfa9097 +size 3922 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-mania.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania.png new file mode 100644 index 00000000..894400c5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90981b4c2bc7bfd499062878a6495532a5b102978263a38d5358a0790d133e60 +size 17801 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-mania@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania@2x.png new file mode 100644 index 00000000..1806fcaa --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-mania@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e2c9e6788ae266d992a2816924415b02d411dc497b719431cc4455f2c252bf +size 19981 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-med.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-med.png new file mode 100644 index 00000000..68c17252 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0cbd5818b2aa0a4ee28868f0375a1c284fee030a39e4f65f277599ae653b74 +size 8581 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-med@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-med@2x.png new file mode 100644 index 00000000..956332eb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e72da18659255421990b7a19014d96c2997de056efde7993a75b7325d2d81e6 +size 14864 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-small.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-small.png new file mode 100644 index 00000000..764c47fd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1427b348e8c0a392eb6430d66bfb7d62e99db2150c6abb1b684df172aa63bd71 +size 2925 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-small@2x.png new file mode 100644 index 00000000..39d4d660 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a02938bc6aa3791b42e37555b8430e354f3a9ce073df262c6e2341f6532971 +size 6204 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-osu.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu.png new file mode 100644 index 00000000..92c0ce3d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c5d23fda3d817bdafc194b0916414c9cf50cd0d7f21c912e7fb2623d8a4287 +size 28240 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-osu@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu@2x.png new file mode 100644 index 00000000..4ec50604 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-osu@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c383b82fa48be1d4277523d58a8517cf1c53806f83556b6bc7e407dd731601c7 +size 37793 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-med.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-med.png new file mode 100644 index 00000000..3b2f645c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b441836eaebab6548e90eaff314bb4402533d2d3548b9b4a82c2ca4beb4da688 +size 7186 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-med@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-med@2x.png new file mode 100644 index 00000000..af32f73b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22b2bb3381acdce3dbd0d8ae5ab827f8d8dcf656bd539130dd9bdf903a29a33 +size 12068 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-small.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-small.png new file mode 100644 index 00000000..fc8b0e7f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05650121df8ed23731f8623675c77d82687cdc99952f53e1c8db29130d63f34e +size 2091 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-small@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-small@2x.png new file mode 100644 index 00000000..f2b0429a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f194e597f19b971decbec1b78db4dc925c2039badf1b198b9b242a051135b89c +size 4899 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko.png new file mode 100644 index 00000000..c0477d15 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6acf526213dd9c89298a0a4a9b305595317eaa1a7440b63016244e5df63bc4d +size 19725 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko@2x.png new file mode 100644 index 00000000..8fa98c0f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/mode-taiko@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a78738169b4a4ab9fba051e20877bbe142df82c5beacae140bd74396cc90dcb +size 28631 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-hitclap.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-hitclap2.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitclap2.wav new file mode 100644 index 00000000..5a2ba751 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a989cfa9852eefbe960d280ae807effe96e8ce04ff94ea3663f412459198e879 +size 129652 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-hitfinish.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-hitfinish2.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitfinish2.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-hitnormal.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-hitnormalh.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-hitnormalq.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitnormalq.wav new file mode 100644 index 00000000..98c1a1ef --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitnormalq.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057307aef17643996d76e8255be3767e644c4fc788276107eac6bd314327789e +size 25580 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-hitwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-sliderslide.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-slidertick.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/normal-sliderwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/SegoeUI.psd b/Skins/Aristia(Edit) + KaBa - Copy/num/SegoeUI.psd new file mode 100644 index 00000000..dbe5d662 Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/num/SegoeUI.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/SegoeUILite.psd b/Skins/Aristia(Edit) + KaBa - Copy/num/SegoeUILite.psd new file mode 100644 index 00000000..ba75be67 Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/num/SegoeUILite.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-0.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-0.png new file mode 100644 index 00000000..81179890 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d68083d095ecbd154fe813e35980f992b6e4dfabe80d56126c7642ca1e6738e9 +size 21598 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-1.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-1.png new file mode 100644 index 00000000..b22b5a07 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:064fb21912007e549404bc1ff8659eeb62d8fd0088d24baa95e7adc6cd92182c +size 20658 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-2.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-2.png new file mode 100644 index 00000000..9256422b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1bdccbccff935b7436c971089588857e9a9d149b7928181ce7ff307f6d1a952 +size 21333 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-3.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-3.png new file mode 100644 index 00000000..00c3c8e8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32320679de420b2ada3736982f00cfa67070f5b2c7b36558f9ad8d2609af1034 +size 21352 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-4.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-4.png new file mode 100644 index 00000000..eaf9cebe --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c4e7687330356639a3921f86acf599c7b8ad257dc38b128d2090e22a98d8ae +size 21254 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-5.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-5.png new file mode 100644 index 00000000..a0698feb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43adc7a0c217d37980e33683acc5cd4bd79ad54289ae45ffac423913b0145f3a +size 21304 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-6.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-6.png new file mode 100644 index 00000000..d4805107 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066beac39e9c100e7ac4175ee26cf9f9dd44330c94f0671deb263ec0f8188344 +size 21465 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-7.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-7.png new file mode 100644 index 00000000..262afc0c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d28951a51526483cbb24228d971c0af51fc396a301d578b6e8273627db9b3e +size 21113 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-8.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-8.png new file mode 100644 index 00000000..6f194027 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6daa0c3e5cf859b71da3aa6e90f96a63283fa3dd3e4452ae503b1088bb44b85 +size 21467 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-9.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-9.png new file mode 100644 index 00000000..db06acb5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fcd2a9ad46f581fce66155d455677dc06e27d4e609fda771ccf8f47e27eeb09 +size 21525 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-comma.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-comma.png new file mode 100644 index 00000000..08dfb53d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daeb2b0640b105ed9f385fdd701fff5569c2fea19bc4b0c25d980b75b98dc404 +size 3194 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-dot.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-dot.png new file mode 100644 index 00000000..0144ac3a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f4363b9e3ff927a77079b8b3d5234a5f14d508f6fe52fb9bccceb2e6daeb7a +size 3113 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-percent.png b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-percent.png new file mode 100644 index 00000000..c312a864 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074af5c3ea9ca2bd25fa8e94b25f6aa82e91be780efba7e6dcde9e4cf08addb6 +size 4116 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/berlin_neo.psd b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin_neo.psd new file mode 100644 index 00000000..f58d61f8 Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/num/berlin_neo.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-0.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-0.png new file mode 100644 index 00000000..9e0e369f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7030707373a305fff7d8801d3648de3b76fc999e04507390a780a0e24adb8cc +size 16566 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-1.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-1.png new file mode 100644 index 00000000..dbef8bd8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096a4c1034b24cb3fb40fa6f38a03cff89afa575da7aa43067c0bb096b9cae76 +size 16284 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-2.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-2.png new file mode 100644 index 00000000..ce2af1d9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e45c80c3d2e448ceefc287e5a542fb95ac437d70a1aa9c297b77f2e3d7e5d851 +size 16474 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-3.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-3.png new file mode 100644 index 00000000..f0c1a1f3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5dfa028d6598fcd411ff199703fef91e170901c23263ef2066ad1cd7686758 +size 16614 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-4.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-4.png new file mode 100644 index 00000000..72c1d105 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbef5c07b6d65725be8c578b634910d44e7f13e72b179fd7ec988f401ce01b0f +size 16588 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-5.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-5.png new file mode 100644 index 00000000..2db43449 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea61516249219dd111779d783a08173c00177df86e8d1fa07768f0d9c69e85ca +size 16572 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-6.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-6.png new file mode 100644 index 00000000..03a566fd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d9a3566b170465986e1f5dfcd16f1733f59df6ce11f8670ba2e8476fd21d23 +size 16539 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-7.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-7.png new file mode 100644 index 00000000..602c83f8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4083c3d8cced32d276dd9138e464944b11406df0c2eaecf1f824b7c29d5816f6 +size 16484 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-8.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-8.png new file mode 100644 index 00000000..064b5cca --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb50d876158c7ea2ff1f8d8cc129aa3a8f882cf73ac669cd9e0e58ad5ccafe83 +size 16568 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/default-9.png b/Skins/Aristia(Edit) + KaBa - Copy/num/default-9.png new file mode 100644 index 00000000..75ac358d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5798028b71f548b949cbcda6cf2be70096774165e405845e1db174dfb5281e2 +size 16604 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-0.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-0.png new file mode 100644 index 00000000..2f9d0de1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801bf44eeb100655407dd8a1398ec431c3e20c7c7c96069b9ac1c550d506bcaa +size 2316 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-1.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-1.png new file mode 100644 index 00000000..0f0bcdc0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ce02f1eebbc9fde970582790b93d69ef5a854f582fe0c1ea9bb6d6833b35a40 +size 1134 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-2.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-2.png new file mode 100644 index 00000000..bed2a3b0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3407e60d760a867b4f7efa167a757ae9ac0dd216ff1395506c0919b316bcbad +size 2096 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-3.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-3.png new file mode 100644 index 00000000..65259ead --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0311919f7ed4aabdf131a8df8f65c04092b9c194cadf38d431c25ba6c850df5f +size 2409 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-4.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-4.png new file mode 100644 index 00000000..ae291786 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ec9ca53baae4d04db9e8a387bd6538e2b4447ee298c486342a32aa517094ad +size 1986 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-5.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-5.png new file mode 100644 index 00000000..efcb2e74 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3387b7510fdfa0f33ac3a664fd4ed4726a9bebcbaf18c90632b2beddc1eb54 +size 2266 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-6.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-6.png new file mode 100644 index 00000000..fd1457b3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c535006839853046fbcfa897df2ae561a4f6835cc4a4e85575e2e9991e032d86 +size 2429 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-7.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-7.png new file mode 100644 index 00000000..61a20e9f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be1da1c29dc5dc709faaaff9f4289fa0e492b983e6538f413ab24be0ec73834 +size 1758 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-8.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-8.png new file mode 100644 index 00000000..70c5388e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9efb91665dcaabe3dc05d1f2ce931f094d245c2965f38630ea5a9f540b7394d +size 2563 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-9.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-9.png new file mode 100644 index 00000000..1921b4af --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2874a85190382c7f2d0c0b715da2ebc4abae11218208cb198293f83e3e3b4865 +size 2424 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-comma.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-comma.png new file mode 100644 index 00000000..772937c1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13708d4453c1713b59f5a4c8c77eb67bf53619ae8e782decf441b39a372bb29f +size 634 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-dot.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-dot.png new file mode 100644 index 00000000..8865d178 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f02e64247a1d557ac6a2ba07239875106468cc409d65fbe2393d58834696914 +size 507 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-percent.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-percent.png new file mode 100644 index 00000000..da7d127a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9722bce76096e5bb80ae6de8570023908194eaaf1be238e90956e098f3bb4908 +size 3579 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/num/score-x.png b/Skins/Aristia(Edit) + KaBa - Copy/num/score-x.png new file mode 100644 index 00000000..320b547e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/num/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cd4f95c4031d4365c14fe8772515dded3fd66bd1861a36271a005ad69a1ae4 +size 1743 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/pause-back.png b/Skins/Aristia(Edit) + KaBa - Copy/pause-back.png new file mode 100644 index 00000000..82f25532 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ababe3fdc267dcc6360a2081eeac9b3a3e520a77c101ee69ff4f0acde255ab4 +size 5269 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/pause-continue.png b/Skins/Aristia(Edit) + KaBa - Copy/pause-continue.png new file mode 100644 index 00000000..fe9798be --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c0711921b8704457dde21a53b227adee18a246e0ce6c8715370372f004533a +size 6238 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/pause-overlay.png b/Skins/Aristia(Edit) + KaBa - Copy/pause-overlay.png new file mode 100644 index 00000000..77effaee --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f199195ba55599c2f43e0096a801d965e167d64ef9a920886e99d8989507e4c1 +size 8953 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/pause-replay.png b/Skins/Aristia(Edit) + KaBa - Copy/pause-replay.png new file mode 100644 index 00000000..b5ed1467 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e39b4a0cb23ce80dce671960255e0568e86d017bac268e6b83f239db88d9dc +size 7261 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/pause-retry.png b/Skins/Aristia(Edit) + KaBa - Copy/pause-retry.png new file mode 100644 index 00000000..79399026 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94fc561f601124042d635530682fbb45a363dd162b985c91ff7ecf0b1898031 +size 6252 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/play-skip.png b/Skins/Aristia(Edit) + KaBa - Copy/play-skip.png new file mode 100644 index 00000000..1a854869 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a06fac047da29a4b88d51c1a03f208c24266105b2373036955deab5ad521259 +size 9123 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/play-skip@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/play-skip@2x.png new file mode 100644 index 00000000..0280031b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/play-skip@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c9a3abfafddff68fff03b69ff820e0e6c14189c45af10367d86620d28334d2 +size 15813 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/play-unranked.png b/Skins/Aristia(Edit) + KaBa - Copy/play-unranked.png new file mode 100644 index 00000000..7108ecb5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0f6e638e45aa6a0b695198fabd06b263613db2a6441960392577fea09100de +size 4004 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/play-unranked@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/play-unranked@2x.png new file mode 100644 index 00000000..5503d922 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac5ec02bd4603f01fc85ed952146c5a391c5377ebc3201f45162a34e405d2d2 +size 5046 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/play-warningarrow.png b/Skins/Aristia(Edit) + KaBa - Copy/play-warningarrow.png new file mode 100644 index 00000000..3b57e29c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7961a7b088b2e25b9d50b251033b2b18d28b8dc99e6f92b3d1d635d30f7373b1 +size 3907 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/play-warningarrow@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/play-warningarrow@2x.png new file mode 100644 index 00000000..d3a6d64b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/play-warningarrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93de9637b87e75eb765ab574d7fbb27518e170a34ac251fb34f0f041270165d2 +size 4526 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/playfield.jpg b/Skins/Aristia(Edit) + KaBa - Copy/playfield.jpg new file mode 100644 index 00000000..f4b5f117 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/playfield.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdada517fa9330cf2573c53dcb0b319b3edafbf174e7a26178cbed022905cb9a +size 147959 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/playfield@2x.jpg b/Skins/Aristia(Edit) + KaBa - Copy/playfield@2x.jpg new file mode 100644 index 00000000..f943210f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/playfield@2x.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a41d1b4ad0f8b23db7649b04834aa8f447de70c48a982cd3b2dad57072d9c16 +size 236653 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/point/followpoint-0.png b/Skins/Aristia(Edit) + KaBa - Copy/point/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/point/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/point/followpoint-1.png b/Skins/Aristia(Edit) + KaBa - Copy/point/followpoint-1.png new file mode 100644 index 00000000..52088883 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/point/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfdcf784ad0431ffcee82e1a2d0f10c7c39b8dc4ddaaecdf3ed929d44d4186a +size 3097 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/point/followpoint-2.png b/Skins/Aristia(Edit) + KaBa - Copy/point/followpoint-2.png new file mode 100644 index 00000000..52088883 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/point/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfdcf784ad0431ffcee82e1a2d0f10c7c39b8dc4ddaaecdf3ed929d44d4186a +size 3097 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-A.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-A.png new file mode 100644 index 00000000..d0c3e8c6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd65ca4fa074bf115b3d777774c348aa1a947b524d378b5ee26d04a6f5ccf8d0 +size 32249 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-B.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-B.png new file mode 100644 index 00000000..44446050 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b8cbbbbae894fc742a835a72a3cb408abb018ad0ed94a0f5ff15cf3f1359175 +size 34819 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-C.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-C.png new file mode 100644 index 00000000..72abf315 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46926558f7c6f9286f3c2ac1872a960837dde85cecd8ed0d8de584518b29e337 +size 26350 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-D.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-D.png new file mode 100644 index 00000000..e3f0c657 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf7437aac17376908500f4abfaed8aa4fb9cb867e3e6a2ab1f68664de4a2c92 +size 28303 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-S-small.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-S-small.png new file mode 100644 index 00000000..0f704721 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aba21d357ce76f2ae53c5da263a54cc1398fba784ac277b689e208a7ae76eee +size 2272 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-S.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-S.png new file mode 100644 index 00000000..89dc6108 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1179738dfd4cda7556f224f060325b396e868c9c04ccb9d324ad24e4448c14eb +size 27058 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-SH-small.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-SH-small.png new file mode 100644 index 00000000..c58cba89 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98a6420daea3c686b0c3766b48e815834919872da88bd983e942172ac32301d +size 1699 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-SH.PNG b/Skins/Aristia(Edit) + KaBa - Copy/ranking-SH.PNG new file mode 100644 index 00000000..f0441565 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-SH.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612c181ae756b9c4cb34ac8efec057da34200c648d464f2a8263e64562ae97de +size 15214 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-SH@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-SH@2x.png new file mode 100644 index 00000000..a25cfc7d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7f25b2e09f39db7962514719cda8e0dd65d0585883bbec9257d7c4790eb838 +size 21193 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-X-small.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-X-small.png new file mode 100644 index 00000000..067e9a1c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4947b02713595006489ec0429ffc7d88845f4466354a8974b65a221fb7d3ec +size 3722 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-X.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-X.png new file mode 100644 index 00000000..d6e51fa8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696e67e865ff4daccdf9674d929b1b876b1dbe1c9b1076e57e67be46824dee1c +size 27290 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-XH-small.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-XH-small.png new file mode 100644 index 00000000..ff9c8945 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:496355774b67e362395bdf16001c49cc5c7bf114ea84ded35b26b0ef50d2787e +size 3100 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-XH.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-XH.png new file mode 100644 index 00000000..35c63680 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d14e4462eec61477c1534ef1e49393bc4f9058b6042373f45c1bc9345c1cfc8 +size 20521 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-XH@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-XH@2x.png new file mode 100644 index 00000000..b44245f7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa5b4a97016a19a57625ae47490aa45014a1645bcc6f6a048e4fa6b8231cd08 +size 43661 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-a-small.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-a-small.png new file mode 100644 index 00000000..72aeee62 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcddaed01492f87ca74b1b4750625bcc3dc14e36b273f08cd2555f14c494d7b +size 2449 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-accuracy.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-accuracy.png new file mode 100644 index 00000000..5b5bf40a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524835a30be8c111e52d2e0fee0ac3a678b74e600ed5ecfc0fb5bd8f0a282636 +size 176 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-accuracy@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-accuracy@2x.png new file mode 100644 index 00000000..50b4678f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-accuracy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15e68c4df37076d1afb55b84fcd970819c8f72a6697e1a4abe05528cb91431a +size 3001 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-b-small.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-b-small.png new file mode 100644 index 00000000..94207d31 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca1302ad197cb4960fe6effa7caa3c67620179d11a0d9c45c22ff672038fc33 +size 2609 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-background-overlay.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-c-small.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-c-small.png new file mode 100644 index 00000000..564fdc9c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec2582294b981c4e3e629211304e60304589f0dd468c7c75da87883a95fa2ce +size 2231 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-d-small.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-d-small.png new file mode 100644 index 00000000..d9dd3701 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a74a765cdeb9d71439b84a559fa7cb3fd7dae90089a4c612c351837f1dd4cda +size 2373 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-graph.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-graph.png new file mode 100644 index 00000000..8d7f8254 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cf3f235ca0e6c5db2095fdaba206750d9bc7fda596a437c63a45e87c4b4e1c +size 15747 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-graph@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-graph@2x.png new file mode 100644 index 00000000..469f7b22 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54f5f9a5a7dd7f5d46f3f4f0a8fe2ac72c84adbd558bd9c0a0e6b5b32c8ed86 +size 44193 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-maxcombo.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-maxcombo.png new file mode 100644 index 00000000..5b5bf40a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524835a30be8c111e52d2e0fee0ac3a678b74e600ed5ecfc0fb5bd8f0a282636 +size 176 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-maxcombo@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-maxcombo@2x.png new file mode 100644 index 00000000..50b4678f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-maxcombo@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15e68c4df37076d1afb55b84fcd970819c8f72a6697e1a4abe05528cb91431a +size 3001 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel.png new file mode 100644 index 00000000..50aed162 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c2a142bcc292ee5dd5e99a87ac4ffbac8e605a6e54d1ff342fa9c73985e42d +size 8857 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel2.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel2.png new file mode 100644 index 00000000..50aed162 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c2a142bcc292ee5dd5e99a87ac4ffbac8e605a6e54d1ff342fa9c73985e42d +size 8857 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel2@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel2@2x.png new file mode 100644 index 00000000..0f9bc6ef --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0966cb07a1d1f8b360f1c5d78b66aad11b83844661c51ab0d6db3d22ad0c42c +size 17493 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel@2x.png new file mode 100644 index 00000000..0f9bc6ef --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0966cb07a1d1f8b360f1c5d78b66aad11b83844661c51ab0d6db3d22ad0c42c +size 17493 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-perfect.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-perfect.png new file mode 100644 index 00000000..09a91b13 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9345d26ba32b07bd61b5955472a58e1f16dababe5f69be828d2d4b3a46730c02 +size 3789 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ranking-winner.png b/Skins/Aristia(Edit) + KaBa - Copy/ranking-winner.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ready.mp3 b/Skins/Aristia(Edit) + KaBa - Copy/ready.mp3 new file mode 100644 index 00000000..1357e1c2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ready.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8df58cb4b10ac496960b7313db24af998fda30231b3d0c4091f4f661cc527cb +size 105642 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ready.png b/Skins/Aristia(Edit) + KaBa - Copy/ready.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/ready.wav b/Skins/Aristia(Edit) + KaBa - Copy/ready.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/ready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/readys.wav b/Skins/Aristia(Edit) + KaBa - Copy/readys.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/reversearrow.png b/Skins/Aristia(Edit) + KaBa - Copy/reversearrow.png new file mode 100644 index 00000000..bc91804e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91859a5818d90092adbfc1dc25d6aa819133fb296b73d420d3cae69516c8319 +size 3173 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/reversearrow@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/reversearrow@2x.png new file mode 100644 index 00000000..556f7a18 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c786a9909d65b60db2dc4e15aa7255c4d0ddc4b645aa1f74d94348108286e99 +size 10519 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/reversearrow@2x.psd b/Skins/Aristia(Edit) + KaBa - Copy/reversearrow@2x.psd new file mode 100644 index 00000000..40c96b8e Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/reversearrow@2x.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-0.png b/Skins/Aristia(Edit) + KaBa - Copy/score-0.png new file mode 100644 index 00000000..6616b550 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a176cf14396e519a559390acece187723a0fa17c353b8fa4b687fb2d62357f99 +size 1509 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-0@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-0@2x.png new file mode 100644 index 00000000..c2be1685 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f7afd2d5f7c36caeaa291de82742faefd08aea2700176edc1e1cc03ac9df3a4 +size 3966 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-1.png b/Skins/Aristia(Edit) + KaBa - Copy/score-1.png new file mode 100644 index 00000000..b2b101de --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786c2a9f2ce621f23e57741f280b3d10040fbc234c359a876f70c64fd0139010 +size 820 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-1@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-1@2x.png new file mode 100644 index 00000000..b1f7da88 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91737beb53809f27b42295cc8cb2ee7e2f023213ed2531cd5958ab61925463fd +size 3379 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-2.png b/Skins/Aristia(Edit) + KaBa - Copy/score-2.png new file mode 100644 index 00000000..3c63482a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ae83b67833d598f922ec9a9df03ef6e8ebfd905a092051dbae321b2b843674 +size 1506 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-2@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-2@2x.png new file mode 100644 index 00000000..257f737f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b36ea46c7b89530661e2236920c6fbad97dd6a41959fa88f40802c65b6cf526 +size 3977 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-3.png b/Skins/Aristia(Edit) + KaBa - Copy/score-3.png new file mode 100644 index 00000000..afd2901c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493843368da89a8ddbec8fdfb96dd0c58a84c64cb52d6399cf5b6e7fbe49dcd0 +size 1423 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-3@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-3@2x.png new file mode 100644 index 00000000..a6389f56 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290d1b3508b83e56beae6ea2a06a7ead6e17e0614f99ad2b9dc0cabf64fb6f1e +size 3890 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-4.png b/Skins/Aristia(Edit) + KaBa - Copy/score-4.png new file mode 100644 index 00000000..7208bef2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b50ef13e7f724a816b5d18d358fa8846cc879fda12cb15105bca554065aa6b54 +size 1414 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-4@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-4@2x.png new file mode 100644 index 00000000..405bfec4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e73962c3c7d32c9004c4ed9a623f9587e6c0f5d5d70517bd5b1948c6c15cb6 +size 4015 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-5.png b/Skins/Aristia(Edit) + KaBa - Copy/score-5.png new file mode 100644 index 00000000..bc70dbd0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffdb63ae4c6ada5713f4da2da3ccb5ffd891640b7161fe7e6e92a548eb538cd4 +size 1491 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-5@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-5@2x.png new file mode 100644 index 00000000..9f9976dc --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae2a4b5b88de48c3ff3c98200381f445c735d52b74736a42287e7a2b206196c +size 3991 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-6.png b/Skins/Aristia(Edit) + KaBa - Copy/score-6.png new file mode 100644 index 00000000..8b24a7bd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a410689d699da6ff68f1f386573e08a2860363cb097bbc1fec4655e809d9d5 +size 1505 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-6@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-6@2x.png new file mode 100644 index 00000000..2d41d2d6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe26901d2b527ac2d4b160617aa7ddbb3fcccdb4a4b4b38bea06c83ecd3a8ec +size 3937 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-7.png b/Skins/Aristia(Edit) + KaBa - Copy/score-7.png new file mode 100644 index 00000000..17a00ab4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f7aef854cc6641e19edbe79d038861fe0e2bc47278d58c2ce120e044cb7f63 +size 1033 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-7@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-7@2x.png new file mode 100644 index 00000000..f4f4de0f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0df6718ddbd87a6c995e18a5389b9c5327ef9a5f35c25368bd7b9c9318d6060 +size 3649 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-8.png b/Skins/Aristia(Edit) + KaBa - Copy/score-8.png new file mode 100644 index 00000000..5767f0de --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee54c2541acf7d01894e652392b3d86305d6db4d4f604e9461c78f091c302948 +size 1700 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-8@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-8@2x.png new file mode 100644 index 00000000..6dcce39f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15bcbca90486edc6ba6985bf812608a2eb3a5db1c87d56da2e441b2baf3043fa +size 4097 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-9.png b/Skins/Aristia(Edit) + KaBa - Copy/score-9.png new file mode 100644 index 00000000..354bed26 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e620d99397189ee6e026f0f34f0d7e625c1429a0dbc4d619cf376a468293e2e +size 1470 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-9@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-9@2x.png new file mode 100644 index 00000000..d9b8c6fd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ab29d48a98fad038e7d9fb2b954c368fccd76e3716686c38981be6cc908f466 +size 4003 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-comma.png b/Skins/Aristia(Edit) + KaBa - Copy/score-comma.png new file mode 100644 index 00000000..c4849ef4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9318b304295bc777f5cf3ac796310ada593e76380647491defb175448ae1af79 +size 2965 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-comma@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-comma@2x.png new file mode 100644 index 00000000..f9492ad2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77b8a9a81acc22cc89f8a7be319b17424c4a9fdc3bb90881d2839d6c7fdc4b4 +size 3073 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-dot.png b/Skins/Aristia(Edit) + KaBa - Copy/score-dot.png new file mode 100644 index 00000000..c4849ef4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9318b304295bc777f5cf3ac796310ada593e76380647491defb175448ae1af79 +size 2965 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-dot@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-dot@2x.png new file mode 100644 index 00000000..f9492ad2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77b8a9a81acc22cc89f8a7be319b17424c4a9fdc3bb90881d2839d6c7fdc4b4 +size 3073 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-percent.png b/Skins/Aristia(Edit) + KaBa - Copy/score-percent.png new file mode 100644 index 00000000..403f8741 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe4da43f0269f643baa134708008ca34aa00a43bbfbf43e966271c215a194b2 +size 2052 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-percent@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-percent@2x.png new file mode 100644 index 00000000..774d0ac2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:551549cbea99e9a6bba64bce8fa32c43419ec1c7cadc652f0ce7faea82384a61 +size 5028 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-x.png new file mode 100644 index 00000000..40454541 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e6d992adbf0f9c226e3dfe47ac0d6c6c510bf2d2a86f0b7fc16d7a84fffea44 +size 1665 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/score-x@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/score-x@2x.png new file mode 100644 index 00000000..82ad5476 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2cc3918de36fbb25a541bde611dc4db0b57e293d370e59cea5336c85aa5ff15 +size 5209 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/scorebar-bg.psd b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-bg.psd new file mode 100644 index 00000000..d42108a1 Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-bg.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/scorebar-bg2.psd b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-bg2.psd new file mode 100644 index 00000000..12636808 Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-bg2.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/scorebar-bg@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-bg@2x.png new file mode 100644 index 00000000..0422b8d9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365950368e874e3eb3f6705cb6fa173d1ee3ffc60577c49d096de419309c3e9b +size 232341 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/scorebar-colour-0.png b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-colour-0.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-colour-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/scorebar-ki.png b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-ki.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/scorebar-kidanger.png b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-kidanger.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/scorebar-kidanger2.png b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-kidanger2.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/section-fail.png b/Skins/Aristia(Edit) + KaBa - Copy/section-fail.png new file mode 100644 index 00000000..cbd82712 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c1b18ba173cc6866f2b2880a2651d5018eaec5fe2a79240d4e38c0591783fa6 +size 37943 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/section-fail@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/section-fail@2x.png new file mode 100644 index 00000000..6850a51c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:888541288fc58d35e338c2b22f3e52140d4ae165678c35d59f458397a5196172 +size 86237 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/section-pass.png b/Skins/Aristia(Edit) + KaBa - Copy/section-pass.png new file mode 100644 index 00000000..759611e9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e0c82cfd426e16e1e8444566cc3e2f597d541b503b8b849a4a7f3964f0d91d +size 40848 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/section-pass@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/section-pass@2x.png new file mode 100644 index 00000000..ce0517ab --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32033976c20088e52c746c038553a818e077d22d1f64e715ad83172892fa929 +size 92701 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sectionfail.mp3 b/Skins/Aristia(Edit) + KaBa - Copy/sectionfail.mp3 new file mode 100644 index 00000000..46faebd5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e69376507f7827f74a279e97b39d8d49f95b9f80817d2cef7283f81b5496d0d +size 62080 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sectionfail.wav b/Skins/Aristia(Edit) + KaBa - Copy/sectionfail.wav new file mode 100644 index 00000000..1371a14b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119f36074e78d3177aa8989e091e48c27292c578eb916596f28fc92fa4cff7cc +size 256430 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sectionpass.wav b/Skins/Aristia(Edit) + KaBa - Copy/sectionpass.wav new file mode 100644 index 00000000..5070e2b1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed9f921418e0bc1f1a9f1e29c83e037fe32d0e3b4cc4731e211b19218a42e93 +size 187142 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/seeya.wav b/Skins/Aristia(Edit) + KaBa - Copy/seeya.wav new file mode 100644 index 00000000..75d0517b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ad489409386bb84dffa21ee1a69be2e73d212993ea7b98aecfdc689b8ab88a +size 122364 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-autoplay.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-autoplay.png new file mode 100644 index 00000000..9525aa07 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21bfd285bf96137b2e4095695d7c83939e4fa8001256d0ccd007bd28decc6f7 +size 17134 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-autoplay@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..a03fd4f6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60536ed35173d1a720f89e7b5bacadcfd41d36c1713572fbfcf1a7eddcc0fe7 +size 26847 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-cinema.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-cinema.png new file mode 100644 index 00000000..d26a2f11 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519729037600d7f3f4cc186b0d35b54f9f59f2d5f7e90f3b56df1a6d9ebeac10 +size 17142 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-cinema@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-cinema@2x.png new file mode 100644 index 00000000..3dd70ecd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48fd185c4a91dac28d776d2d2719b405b8e602a4a9c40b4f6450ad9c414ab42 +size 26481 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-doubletime.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-doubletime.png new file mode 100644 index 00000000..2bc0f141 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e1bbb490a9a53d5c3e4e19226ad8b5d14d803e8cb79a898fe633555d7842aaa +size 15365 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-doubletime@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..fe8d3d16 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71bc005d6b76a1a11a1858f759e92f1d4cdd374b2246b38f47e8d694213921c3 +size 24095 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-easy.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-easy.png new file mode 100644 index 00000000..88b6cad9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83542fcae644c652d0fd156af96e55140ce8635261280e4dc415c84216dfabe +size 16809 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-easy@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-easy@2x.png new file mode 100644 index 00000000..dd24db65 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dffb2a09d93a178d24a6fa7acacda412a6ce31f6a52dd468d941132c86aaf54c +size 25986 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-fadein.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-fadein.png new file mode 100644 index 00000000..b5ff4066 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-fadein.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d5ec66fa18c58ecc5ef390daa6c90d66323d7146d522a7fa064012586c5755 +size 15244 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-fadein@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-fadein@2x.png new file mode 100644 index 00000000..feb0d080 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-fadein@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b8ac98181f2ba2ed2f1599e571450416f89dbfc28ad3ac7df69be268296db4 +size 23822 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-flashlight.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-flashlight.png new file mode 100644 index 00000000..1161a2f1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e12851ade61a49fa4d55493d8e8892b608e386c1d5a0643b724549c1fab5546 +size 15360 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-flashlight@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..c8c306ba --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7601f3b78402e7668dbe1a6c1741a8d5e16149ad52fdd2b22cc01a42225f09ff +size 23548 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-halftime.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-halftime.png new file mode 100644 index 00000000..c732dc3d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ead54d83943a1c4f9e595613c1e93b5e022b18ab016728cf9c103a9b73dfeaf +size 16734 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-halftime@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-halftime@2x.png new file mode 100644 index 00000000..fe2a8201 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e263c47d63397379c4a0c373ffb21dfcca42fe2967f391d97cfe3ba67b36954 +size 25482 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hardrock.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hardrock.png new file mode 100644 index 00000000..5cc0e554 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ece490dcc61749852d12b14980206e1298e18e08ee707b485cd6be06ef8c55 +size 15799 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hardrock@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..f00b97b5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d721a7f4ab353c3aa2e6ed6f0b43d88a530f44d2ff46dd65b15be74d475774 +size 24928 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hidden.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hidden.png new file mode 100644 index 00000000..4d900258 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7776afa4601d71aefd5a86b3aff7f073fdbf8dc76807ed5a2e516831d84266d +size 15811 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hidden@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hidden@2x.png new file mode 100644 index 00000000..58aa751b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68981843a9f3e116e64be9b32ad2b38b3456d72b54b3eb120b894d8160d0b8d +size 25271 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key1.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key1.png new file mode 100644 index 00000000..6af20dce --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47f7a51783ff09549e30e807cf96402a8190bb7da0d8b126b024f525f92e2f0e +size 16593 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key1@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key1@2x.png new file mode 100644 index 00000000..4c997887 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2d31b9ba2983c225aec67b1ba5b5d41509b45eae16ef867d07da875b3c56cb +size 25753 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key2.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key2.png new file mode 100644 index 00000000..dd660900 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4d03445e6c6bc2d3cbf958b32d1fe38b3916f40fee82b81af1bb0887cbc131c +size 16779 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key2@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key2@2x.png new file mode 100644 index 00000000..5eebb73e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac8dc39f151ff94d2de76ed4970f2b52aae718fed56bb7ae2b941cf119eb374 +size 26339 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key3.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key3.png new file mode 100644 index 00000000..5afa7138 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175291cd9d6716f26f16aae42c96043c13bd6b25bf1e3f786af22e4b1a6800d8 +size 16894 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key3@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key3@2x.png new file mode 100644 index 00000000..f08e2ca0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1194e11e3a69a5268a951eab40624c887293f4f1f98ff4fb8e8d6ccf80629cd1 +size 26409 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key4.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key4.png new file mode 100644 index 00000000..5c2f761f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccdf0e872f954dd4da23bc3a8a340183941c88b5432f8278eb2cc748bbc831a1 +size 16454 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key4@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key4@2x.png new file mode 100644 index 00000000..b9673020 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dee94ce8a892a2a15411860fcbb030d3305afc1e855da34bd51df56a49aa963 +size 25991 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key5.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key5.png new file mode 100644 index 00000000..9efd4395 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be2cea5f587e6750df4fdf2756e4f558b560dc9e39faa7988969824a19fde95 +size 16748 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key5@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key5@2x.png new file mode 100644 index 00000000..460b56f5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e79661a02d112c5fd945f0ba8e75daa6b965989755d216d0e105ca17cb3b0b +size 26341 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key6.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key6.png new file mode 100644 index 00000000..d5aeba34 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8637411572754842ce16afa9ecbb4daf822ed90d6b783565c68a131bb9c0d827 +size 16780 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key6@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key6@2x.png new file mode 100644 index 00000000..ae642e44 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2744e75a20a65305963001a8626bd25978ff0dd063b245269fe35c83f79b7b4f +size 26014 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key7.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key7.png new file mode 100644 index 00000000..31998b18 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2fa979368e2e7d454efc6ec60cc0f868403332a6e21649b27586c9865fef1b7 +size 16514 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key7@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key7@2x.png new file mode 100644 index 00000000..18b7b07d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8989727b3af0f1945db5e7cfaa5ae038d3aa3cb6e4d2ca13afdac3600e744c2d +size 25281 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key8.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key8.png new file mode 100644 index 00000000..64610a69 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666a2f0564140786044f3c7da5cf3dca1fc9879ac47ecce782b30ead2a56fcfa +size 16928 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key8@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key8@2x.png new file mode 100644 index 00000000..0b379c77 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846f9db1a253e431aca29cb7f3223800f076ec6e3236241997115e60330b2f13 +size 26181 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key9.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key9.png new file mode 100644 index 00000000..884ff82c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e249a7f5f0ab0741161c0785cd06dd53ca66dcd532d1d708fc8941f5c6ff7a +size 16715 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key9@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key9@2x.png new file mode 100644 index 00000000..d0438d2c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-key9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fd9e828cea09ffd0f13db1084b3fdc1ec32360110e2b9fd10a75e0a24f7068 +size 26375 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-keycoop.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-keycoop.png new file mode 100644 index 00000000..9d8b5746 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-keycoop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31656309b1ad7e882ca932a6aa68c416bc52d8b06846c5d0fb48fa2617a2512d +size 16401 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-keycoop@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-keycoop@2x.png new file mode 100644 index 00000000..e9c0598b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-keycoop@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf58b5acb39e95e96860e1c7e6432633c398429dfc6721bfc3873e7062fe757 +size 24512 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nightcore.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nightcore.png new file mode 100644 index 00000000..0ede4afb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248c89a34c839fea6da81e5abec36927adb5e2d73eaffefd31b9628edd65e24f +size 15701 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nightcore@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..f8aa966b --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:619ff074f71749cc251875fd727836cb271caece342ef9ffa1e1253262cc654b +size 24642 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nofail.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nofail.png new file mode 100644 index 00000000..9a5af972 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993f4d771f2427257dfb2c078508982dcb66c5043751e424067c1539d3dfb4f2 +size 17138 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nofail@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nofail@2x.png new file mode 100644 index 00000000..712befc5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2c0859215ad28da4f396a8aad16cec8b4e6b3b2302b0db66cc7b61e9638ea0 +size 26160 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-perfect.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-perfect.png new file mode 100644 index 00000000..3f209ae6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a42e66b0ca5211553cfeedb4f0c0762db041746ab1bd63dfee0e35e7ae6b6e +size 15145 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-perfect@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-perfect@2x.png new file mode 100644 index 00000000..3f69de0c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54a24e390d0706546daa25745d7f43ef8added283764e27e362905d91672c42 +size 22646 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-random.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-random.png new file mode 100644 index 00000000..0497c020 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83c62f3d7d4ef5e2fbae0acad1a297e5e4dee8b9b4515d5a4d8e0be40a0987a +size 16856 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-random@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-random@2x.png new file mode 100644 index 00000000..74cd4cf5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8fb6dfe4e1ab08cf24825d6c49329f663cb128a5a29be08012cc36e306f9ed +size 26290 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax.png new file mode 100644 index 00000000..2e72f4b8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad0a1a8ea89ccbb119d358a36e7c3e6517e5f13997b44920d4efda247be2a9e +size 16992 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax2.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax2.png new file mode 100644 index 00000000..6e4c1ac0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a3a05a542cbec940714cdde10081e93ac6b42c7c273db6c3581053af12a1207 +size 16893 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax2@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax2@2x.png new file mode 100644 index 00000000..06a3754c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5166c27076075f2efc6c65a482232c30dba99b05d9d53a713a73d833bafb0cd2 +size 26145 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax@2x.png new file mode 100644 index 00000000..8c4a1ba9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fcfba83a59fb42c4bffab90fcc38463825c1da126d1575f1d133ea65f394ec6 +size 27483 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-spunout.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-spunout.png new file mode 100644 index 00000000..dd8ed51c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4681139a1e303cb4a5b8000e1545a25157b4e062bf3f52bda3ce84fb3c1f31de +size 16866 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-spunout@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-spunout@2x.png new file mode 100644 index 00000000..31777045 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3a09c104954e887ced2d15eba1fea134c2b80dbc233b07f24510e7737b1c37 +size 25586 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-suddendeath.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-suddendeath.png new file mode 100644 index 00000000..b0ce33b3 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b9c8929b2035969e30e150c8120a96658adee4704b08d25d79620382d1622ff +size 15564 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-suddendeath@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..e1b977a8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d4cdd82e1d980c3b9f7afd04e64332a815f460b0fbadaca085c0ed32b35f49 +size 24721 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-target.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-target.png new file mode 100644 index 00000000..d0d28333 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835be156596f7c01fa12da33d87940cc923a1d412f46e6f4cafaa2bd5b3cc511 +size 16577 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-target@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-target@2x.png new file mode 100644 index 00000000..ce3dee57 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89a0314b99cec73dcbb2ed03da56a8fae71f370c08f2e4be372f62dc327c05c9 +size 24977 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mode-over.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mode-over.png new file mode 100644 index 00000000..63fc3d8d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1329f8a929b741c17947363259c79a03988206e8b72520983675c7d0aa535d +size 3460 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mode-over@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mode-over@2x.png new file mode 100644 index 00000000..42775c50 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ed543665bad79aea16da870d5ab9b7cce73afdc50d95b029bcfbefe33daa56 +size 3635 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mode.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mode.png new file mode 100644 index 00000000..73928ef9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144b73ebe2e38c6109213d0f09fa5eef9211ce2796f32d9b95176bb63e1ed37c +size 3468 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mode@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mode@2x.png new file mode 100644 index 00000000..14083f12 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07be10d1625bf1ca8be3bbf81125b53ebfbd4f7e033fcb80eaf18b6b0ab7655 +size 3709 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mods-over.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mods-over.png new file mode 100644 index 00000000..38a070a7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab314096f5ccba81e9547a632a64bd844c767c3ad3979608913c9ad17ea4e830 +size 4294 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mods-over@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mods-over@2x.png new file mode 100644 index 00000000..12957911 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe38e25d4741af628bf17196bd735015c63b481b138902ff61c23649036e885 +size 7602 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mods.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mods.png new file mode 100644 index 00000000..305605a2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4792b5f372cdd1bbd9c85e48800f500fa916ef21b111b7d5871332674bcc0445 +size 2736 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-mods@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-mods@2x.png new file mode 100644 index 00000000..5e4ffae7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a215cc0cee8e617860494cf425c7726642ab5aee52e4c8706ff3f17a07a1fa7 +size 4142 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-options-over.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-options-over.png new file mode 100644 index 00000000..1d05f084 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d745828809a2147a686a69cb045a46063bcbb5a153c8e4f2f3cad267ea25015 +size 6352 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-options-over@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-options-over@2x.png new file mode 100644 index 00000000..eadd4ee1 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b8f5ef18be3a9da582c8812eca352d110f6503161a9f13de4a39ac6ce33f47 +size 8495 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-options.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-options.png new file mode 100644 index 00000000..346a0b99 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd59b6aa04444a76f049cb1b69d6da2247c1f4a043d3bcd8e6b1ad984ec0ed1a +size 4576 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-options@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-options@2x.png new file mode 100644 index 00000000..64548260 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbdf778eae35acecb5497b6d9cd7f3cac0482e090340f25dd576bf67b94d3f7 +size 4691 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-random-over.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-random-over.png new file mode 100644 index 00000000..b949fefc --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb00fdcd4dfbf705c5a14289d930f66ccc9368a5f87d73b212c2114cae256fe9 +size 6640 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-random-over@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-random-over@2x.png new file mode 100644 index 00000000..ab37ff9d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ced4f52bd2b0f03e502a6a00b3ba8379990ce70a4d330f99897dd80945ce4a2 +size 15229 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-random.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-random.png new file mode 100644 index 00000000..7ae19afb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7bff50dce2cea241a03b5ada12b086dd98c6049ca3c29a286ab08f36d613213 +size 4638 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-random@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-random@2x.png new file mode 100644 index 00000000..0ac84ecd --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6645c281933dbd6ff3aef66d67adef7ca1fe9802738881baab130664ce2d7fc6 +size 7123 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-tab.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-tab.png new file mode 100644 index 00000000..bcd0d339 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4841d7dbc7ec27d5ecee785418e9b22f031afcefebc6a1adacbd38d996b4740 +size 3211 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/selection-tab@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/selection-tab@2x.png new file mode 100644 index 00000000..c8cee6dc --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/selection-tab@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb7ae7cebfaff20daae4fd853fd73069c7f910002c031a298cc235fe4342e0d +size 3418 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/shutter.wav b/Skins/Aristia(Edit) + KaBa - Copy/shutter.wav new file mode 100644 index 00000000..1a51b30a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/shutter.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645b7351876c870c825266b57e923ccff732d11b3459f65761bac3ad7241a9bd +size 472264 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/skin.ini b/Skins/Aristia(Edit) + KaBa - Copy/skin.ini new file mode 100644 index 00000000..94c12677 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/skin.ini @@ -0,0 +1,173 @@ +// skin.ini generated by osu! skin mixer v2.9.0 + +[General] +Name: Aristia(Edit) +Author: [Garin] + Aristia + Various +Version: 2.4 +SliderBallFlip: 1 +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 60 +HitCircleOverlayAboveNumer: 1 +SliderStyle: 2 +AllowSliderBallTint: 1 +SpinnerFadePlayfield: 0 + +[Colours] +Combo1: 0,190,255 +SongSelectActiveText: 250,250,250 +SongSelectInactiveText: 230,230,230 +InputOverlayText: 255, 255, 255 +SliderBorder: 120,120,120 +SliderTrackOverride: 3,3,12 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 6 +ScorePrefix: num/berlin +ScoreOverlap: 0 +ComboPrefix: num/berlin +ComboOverlap: 5 + +[Mania] +Keys: 4 +ColumnStart: 340 +HitPosition: 400 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 300 +ComboPosition: 275 +LightFramePerSecond: 24 +ColumnWidth: 45,45,45,45 +ColumnLineWidth: 0,0,0,0,0 +BarlineHeight: 0 +ColourLight1: 102,205,107,175 +ColourLight2: 69,188,250,175 +ColourLight3: 69,188,250,175 +ColourLight4: 102,205,107,175 +Colour1: 0,0,0,240 +Colour2: 0,0,0,240 +Colour3: 0,0,0,240 +Colour4: 0,0,0,240 +ColourHold: 255,230,0,255 + +[Mania] +Keys: 5 +ColumnStart: 336 +HitPosition: 400 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 300 +ComboPosition: 275 +LightFramePerSecond: 24 +ColumnWidth: 43,40,44,40,43 +ColumnLineWidth: 0,0,0,0,0,0 +BarlineHeight: 0 +ColourLight1: 102,205,107,175 +ColourLight2: 69,188,250,175 +ColourLight3: 205,102,102,175 +ColourLight4: 69,188,250,175 +ColourLight5: 102,205,107,175 +Colour1: 0,0,0,240 +Colour2: 0,0,0,240 +Colour3: 0,0,0,240 +Colour4: 0,0,0,240 +Colour5: 0,0,0,240 +ColourHold: 255,230,0,255 +KeyImage2: mania-keyS +KeyImage2D: mania-keySD +NoteImage2: mania-noteS +NoteImage2H: mania-noteSH +NoteImage2L: mania-noteSL + +[Mania] +Keys: 6 +ColumnStart: 336 +HitPosition: 400 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 300 +ComboPosition: 275 +LightFramePerSecond: 24 +ColumnWidth: 38,35,38,35,38,35 +ColumnLineWidth: 0,0,0,0,0,0,0 +BarlineHeight: 0 +ColourLight1: 102,205,107,175 +ColourLight2: 69,188,250,175 +ColourLight3: 102,205,107,175 +ColourLight4: 102,205,107,175 +ColourLight5: 69,188,250,175 +ColourLight6: 102,205,107,175 +Colour1: 0,0,0,240 +Colour2: 0,0,0,240 +Colour3: 0,0,0,240 +Colour4: 0,0,0,240 +Colour5: 0,0,0,240 +Colour6: 0,0,0,240 +ColourHold: 255,230,0,255 + +[Mania] +Keys: 7 +ColumnStart: 336 +HitPosition: 400 +ScorePosition: 300 +ComboPosition: 275 +JudgementLine: 0 +LightFramePerSecond: 24 +ColumnWidth: 36,34,36,38,36,34,38 +ColumnLineWidth: 0,0,0,0,0,0,0,0 +BarlineHeight: 0 +ColourLight1: 102,205,170,255 +ColourLight2: 69,188,250,175 +ColourLight3: 102,205,170,255 +ColourLight4: 205,102,102,175 +ColourLight5: 102,205,170,255 +ColourLight6: 69,188,250,175 +ColourLight7: 102,205,170,255 +Colour1: 0,0,0,240 +Colour2: 0,0,0,240 +Colour3: 0,0,0,240 +Colour4: 0,0,0,240 +Colour5: 0,0,0,240 +Colour6: 0,0,0,240 +Colour7: 0,0,0,240 +ColourHold: 255,230,0,255 + +[Mania] +Keys: 8 +ColumnStart: 336 +Barline: 0 +HitPosition: 400 +SpecialStyle: 1 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 300 +ComboPosition: 275 +LightFramePerSecond: 24 +ColumnWidth: 45,28,25,28,25,28,25,28 +ColumnLineWidth: 0,2,2,2,2,2,2,2,0 +BarlineHeight: 0 +Colour1: 0,0,0,240 +Colour2: 24,24,24,240 +Colour3: 0,0,0,240 +Colour4: 24,24,24,240 +Colour5: 0,0,0,240 +Colour6: 24,24,24,240 +Colour7: 0,0,0,240 +Colour8: 24,24,24,240 +ColourLight1: 205,102,102,175 +ColourLight2: 102,205,107,175 +ColourLight3: 69,188,250,175 +ColourLight4: 102,205,107,175 +ColourLight5: 69,188,250,175 +ColourLight6: 102,205,107,175 +ColourLight7: 69,188,250,175 +ColourLight8: 102,205,107,175 +ColourHold: 255,255,255,255 +ColourColumnLine: 99,99,99,255 +KeyImage0: Mania-keyT +KeyImage0D: Mania-KeyTD diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sliderb0.png b/Skins/Aristia(Edit) + KaBa - Copy/sliderb0.png new file mode 100644 index 00000000..f12daca4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98620ed2194d038ae91820426ab616245baaa4b2e4db5ec0eed3d3ce58c2a668 +size 10899 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sliderb0@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/sliderb0@2x.png new file mode 100644 index 00000000..2f1595cf --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adcd5ed345c40142a5b097fc1e896b9897c1ab6f419e3211afcd6f5ed7ec183 +size 23267 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sliderendcircle.png b/Skins/Aristia(Edit) + KaBa - Copy/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sliderfollowcircle.png b/Skins/Aristia(Edit) + KaBa - Copy/sliderfollowcircle.png new file mode 100644 index 00000000..1b469e3d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2dd29501507819796f2b221cb18f6ee38991812f7386d9c2d746c1a23e21eb +size 25882 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sliderfollowcircle@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/sliderfollowcircle@2x.png new file mode 100644 index 00000000..a810f256 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc593c5b23e96905fcec672388c04278426f88eadb6d47c80db5af030d8d90d +size 62302 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sliderpoint10.png b/Skins/Aristia(Edit) + KaBa - Copy/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sliderpoint30.png b/Skins/Aristia(Edit) + KaBa - Copy/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sliderscorepoint.png b/Skins/Aristia(Edit) + KaBa - Copy/sliderscorepoint.png new file mode 100644 index 00000000..01781551 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6f30039ae057b51522b2e4b5c69667761ae33827bfab55e6eb31f868819feb +size 3386 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/sliderstartcircleoverlay.png b/Skins/Aristia(Edit) + KaBa - Copy/sliderstartcircleoverlay.png new file mode 100644 index 00000000..17e287ad --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/sliderstartcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c885b1ed92ca55b734057c7d58d4228366c31ec45466e53a78286dc2edd84f62 +size 26648 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitclap.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitclap2.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitfinish.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitfinish2.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitfinish2.wav new file mode 100644 index 00000000..3e8856c5 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3708a5decda6b05082c11e4edd9bc03e80acbb6e32759feecc98636e9f2b797b +size 25804 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormal.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormal1.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormal2.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormalh.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormalhh.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormalhh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitnormalhh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitsoft.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-hitwhistle2.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-sliderslide.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-slidertick.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/soft-sliderwhistle.wav b/Skins/Aristia(Edit) + KaBa - Copy/soft-sliderwhistle.wav new file mode 100644 index 00000000..cfc0314c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b80e132dd7adf41d45f7e21352dc3420599474382dc87a3b1772f603ce32a81 +size 67256 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/songselect-bottom.png b/Skins/Aristia(Edit) + KaBa - Copy/songselect-bottom.png new file mode 100644 index 00000000..e07b7878 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d4e6d6587728d1727cf4c0c41cd03aaf2049b7dc719c2e22591b3dab04df11 +size 3104 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/songselect-bottom@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/songselect-bottom@2x.png new file mode 100644 index 00000000..6d0ed78d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a9acf3afbf4ed86fb3b9627c3bd6a886d634a3f7f7cd426d097eba3d02f8cb +size 3598 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-approachcircle.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-approachcircle.png new file mode 100644 index 00000000..0b50e694 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331953917673bf4b919c7b6a7116493b0714b26eea482d6531606b333122efb5 +size 45054 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-background.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-background.png new file mode 100644 index 00000000..6804aa0d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b506f9b2202e76c8ff060df170d4221243e2e137481759898dfbd64847338c9a +size 5456 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-background.psd b/Skins/Aristia(Edit) + KaBa - Copy/spinner-background.psd new file mode 100644 index 00000000..1bb5bafc Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/spinner-background.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-bottom.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-bottom.png new file mode 100644 index 00000000..6804aa0d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b506f9b2202e76c8ff060df170d4221243e2e137481759898dfbd64847338c9a +size 5456 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-circle.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-circle.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-circle.psd b/Skins/Aristia(Edit) + KaBa - Copy/spinner-circle.psd new file mode 100644 index 00000000..29cb2001 Binary files /dev/null and b/Skins/Aristia(Edit) + KaBa - Copy/spinner-circle.psd differ diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-clear.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-clear.png new file mode 100644 index 00000000..01097a68 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c6b7619a9165c6b1d7973a8706466289c332ab75ae2c19e1ea9d35041409ca +size 5226 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-glow.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-glow.png new file mode 100644 index 00000000..27dfebe6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beca027a9e8ccae72b4dde4be32b6fef240f1160778784d81a7445a2a62b451e +size 6797 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-middle.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-middle.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-middle2.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-middle2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-middle2@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-osu.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-rpm.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-rpm.png new file mode 100644 index 00000000..b5c1b90c --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d805e986882aa43417e2639001f2b339c174b3bb55e28ab66ca5ee150cd589ee +size 4488 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-spin.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-spin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-top.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-warning.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-warning.png new file mode 100644 index 00000000..1ef7e26e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a498d350685bae38f818e324ac3b42fa0d58f08d15ccdf335c86a9a98fedea +size 18558 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinner-warning@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/spinner-warning@2x.png new file mode 100644 index 00000000..1f7483f7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinner-warning@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f156141bd29b32798ce1abc7414cded52ae8b37d6cf544b35879d341e17fd9 +size 40490 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinnerbonus.wav b/Skins/Aristia(Edit) + KaBa - Copy/spinnerbonus.wav new file mode 100644 index 00000000..6e901ec0 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea3774c20fb4a84c33ab6e08b7db0042e2494173e26ca210ec6171c20da9c4 +size 178600 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/spinnerspin.wav b/Skins/Aristia(Edit) + KaBa - Copy/spinnerspin.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/star.png b/Skins/Aristia(Edit) + KaBa - Copy/star.png new file mode 100644 index 00000000..ad3ae6be --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88e34b3d45be8437bd928de3b6f815b8cdc8db0a153ac569c0cea3672da05ee +size 1321 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/star2.png b/Skins/Aristia(Edit) + KaBa - Copy/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/star2@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/star2@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider-fail.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider-fail.png new file mode 100644 index 00000000..11526314 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a47b7963a504ab3bf3d5dbe60e6a02587b422d986b1d4baaaa541155c582741b +size 23833 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider-fail@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider-fail@2x.png new file mode 100644 index 00000000..9c835748 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7bd05c25cc96080baf38ea012234182aaa154c413d2080bcaa39bccec3bd10a +size 50803 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider.png new file mode 100644 index 00000000..79d2890f --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f183d3b7c05f1fc72b8daf152eb8e278c55901ea487ec71e21d9db2650817d6a +size 48037 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider@2x.png new file mode 100644 index 00000000..1a615eab --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-Slider@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3241d4b7bc797bec5478ba908dcdee7f429c8cc4fe33bb7ccb11993a551a3a +size 104481 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-bar-right-glow.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-bar-right-glow.png new file mode 100644 index 00000000..f0e3240a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-bar-right-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a005ac944835dd4f49dd4dc7e5b691605b699a6cd2b62cba09702488ed08c6ce +size 8331 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-bar-right.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-bar-right.png new file mode 100644 index 00000000..4ee18e00 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-bar-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4594bd08efe0a619c6370aca15a7b3f500f2b6703bcb2bebb4b4710adec01851 +size 3827 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-inner.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-inner.png new file mode 100644 index 00000000..44ba63c6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-inner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d4f2326cbdc9cdf15f71ea498ede3bbf288ad646ae2ae6b5f8a087ad1129b4 +size 4092 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-inner@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-inner@2x.png new file mode 100644 index 00000000..4703d1f8 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-inner@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ef4e46e7bee3bf40530082c68a8f4789e60cc3c72142a3b458cb6d476d8201 +size 6337 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-outer.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-outer.png new file mode 100644 index 00000000..31f1e85a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c689b35cedc11c7b866bbc90855e2e2b64aec34460b273b34ee58483c75834 +size 5172 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-outer@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-outer@2x.png new file mode 100644 index 00000000..0fe5b72d --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-drum-outer@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5471a449955001bb3be9f386f21061e759556530d29cbc2b9183ebb0d794177c +size 9810 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit0.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit0.png new file mode 100644 index 00000000..cbbe4d51 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c606a8924a9614f0dd34cefddfa377b21661befe1d1383220b2d7c41fce411f2 +size 10496 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit0@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit0@2x.png new file mode 100644 index 00000000..591b6f6e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bee3e4357f83e2d0587863ca6562daf271fdc7d81a0ec3b3e3add3e6d436cd6 +size 20758 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100.png new file mode 100644 index 00000000..e7b4958e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6418adafb437f61e5f41a86ed270b6a1007fcab477673bd818ed185cdcb642 +size 11889 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100@2x.png new file mode 100644 index 00000000..d88a4562 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19dd453f34cb151174778a7b4233e73f507941f1dc40a00357630b20e2964d3 +size 21302 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100k.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100k.png new file mode 100644 index 00000000..e7b4958e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6418adafb437f61e5f41a86ed270b6a1007fcab477673bd818ed185cdcb642 +size 11889 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100k@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100k@2x.png new file mode 100644 index 00000000..d88a4562 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19dd453f34cb151174778a7b4233e73f507941f1dc40a00357630b20e2964d3 +size 21302 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300.png new file mode 100644 index 00000000..26675dba --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21be6a61e5d72fdbe0fc8e37d55aae8b71a92b67674bd4501d24271e28218145 +size 12814 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300@2x.png new file mode 100644 index 00000000..426271e2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50878db6ecd00f62b0070cee70eab058be9a1fb7541a375d436c87f29521d72 +size 22763 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300g.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300g.png new file mode 100644 index 00000000..26675dba --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21be6a61e5d72fdbe0fc8e37d55aae8b71a92b67674bd4501d24271e28218145 +size 12814 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300g@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300g@2x.png new file mode 100644 index 00000000..426271e2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50878db6ecd00f62b0070cee70eab058be9a1fb7541a375d436c87f29521d72 +size 22763 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300k.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300k.png new file mode 100644 index 00000000..26675dba --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21be6a61e5d72fdbe0fc8e37d55aae8b71a92b67674bd4501d24271e28218145 +size 12814 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300k@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300k@2x.png new file mode 100644 index 00000000..426271e2 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit300k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50878db6ecd00f62b0070cee70eab058be9a1fb7541a375d436c87f29521d72 +size 22763 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit50.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit50.png new file mode 100644 index 00000000..61c884aa --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3667d04ebb7a756cf6989f287590c1f37dd04b66b1c93b113cfe5129b45b9690 +size 11437 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit50k.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit50k.png new file mode 100644 index 00000000..61c884aa --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3667d04ebb7a756cf6989f287590c1f37dd04b66b1c93b113cfe5129b45b9690 +size 11437 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-end.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-end.png new file mode 100644 index 00000000..47a239d6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-end.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abee913306b6800d41e7de29dfd0d591b5a7080e7f917c42ed9f299a3036eb7 +size 5018 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-end@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-end@2x.png new file mode 100644 index 00000000..b828a9b6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-end@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0dded771c420a5cb60eadd47aa47923f2eecf8d5f7de8b1da2f8b6b5550e12 +size 7628 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-middle.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-middle.png new file mode 100644 index 00000000..b5af80e6 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76af91a67dd8ff72dbf6aeba7a82bab5a42ad7c257ec770dc9c8cab67e188262 +size 2842 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-middle@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-middle@2x.png new file mode 100644 index 00000000..38d37cc7 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taiko-roll-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827c4a104a23985230e6269786538e51c98ff5b6914a27bbae0d85d5dbdc78b5 +size 2842 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircle.png b/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircle.png new file mode 100644 index 00000000..a0e7c113 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0937f1c5bec061940029407fbb58c070aeee3cf04a97a971add7dd76e06ece15 +size 6746 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircle@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircle@2x.png new file mode 100644 index 00000000..0135508a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49fc9a0a090c9d09b6c6cf6fd235ef2f347011bfaa1120faf419da0b2fb8e4a0 +size 12374 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircleoverlay.png b/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircleoverlay.png new file mode 100644 index 00000000..27093a5e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e94c08069c79e055ae429efad72c30124222fbb059128587dd59b0b8850d670 +size 14720 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircleoverlay@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircleoverlay@2x.png new file mode 100644 index 00000000..c151cf56 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taikobigcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f154850a8cc9f4a5505d6bb82816f64065d069b0287323de6d69522255099b +size 31610 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircle.png b/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircle.png new file mode 100644 index 00000000..a0e7c113 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0937f1c5bec061940029407fbb58c070aeee3cf04a97a971add7dd76e06ece15 +size 6746 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircle@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircle@2x.png new file mode 100644 index 00000000..0135508a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49fc9a0a090c9d09b6c6cf6fd235ef2f347011bfaa1120faf419da0b2fb8e4a0 +size 12374 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircleoverlay.png b/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircleoverlay.png new file mode 100644 index 00000000..27093a5e --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e94c08069c79e055ae429efad72c30124222fbb059128587dd59b0b8850d670 +size 14720 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircleoverlay@2x.png b/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircleoverlay@2x.png new file mode 100644 index 00000000..c151cf56 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/taikohitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f154850a8cc9f4a5505d6bb82816f64065d069b0287323de6d69522255099b +size 31610 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/triangle.png b/Skins/Aristia(Edit) + KaBa - Copy/triangle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/triangle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/welcome.wav b/Skins/Aristia(Edit) + KaBa - Copy/welcome.wav new file mode 100644 index 00000000..eadf1e1a --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612afa49e9a3f648fb331de534639b3e3df85c82fe142749b251d5a9645acbc7 +size 188146 diff --git a/Skins/Aristia(Edit) + KaBa - Copy/whoosh.wav b/Skins/Aristia(Edit) + KaBa - Copy/whoosh.wav new file mode 100644 index 00000000..9c7d6314 --- /dev/null +++ b/Skins/Aristia(Edit) + KaBa - Copy/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85b2d6a3b96fd189a16b6198b05c261eb9ce60f1fb419cda96b8ad15c779d34 +size 44546 diff --git a/Skins/Rafis but SZ/4K.ini b/Skins/Rafis but SZ/4K.ini new file mode 100644 index 00000000..7e996620 --- /dev/null +++ b/Skins/Rafis but SZ/4K.ini @@ -0,0 +1,18 @@ +//Mania skin config +ColumnLineWidth: 0.7 +ColumnStart: 136 +BarlineWidth: 1.2 +HitPosition: 402 +SpecialStyle: 0 +SpecialPositionLeft: 1 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +FontCombo: score +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +ColumnLine: 1,1,1,1,1 +//Colours +//images +//Keys diff --git a/Skins/Rafis but SZ/DT Fix.zip b/Skins/Rafis but SZ/DT Fix.zip new file mode 100644 index 00000000..052aa245 Binary files /dev/null and b/Skins/Rafis but SZ/DT Fix.zip differ diff --git a/Skins/Rafis but SZ/applause.ogg b/Skins/Rafis but SZ/applause.ogg new file mode 100644 index 00000000..09a8ff8d --- /dev/null +++ b/Skins/Rafis but SZ/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5967d4cc318aa10d37d0b94ca1059e7c54fd9e9a55a7bb90485ac48a9325dc45 +size 207301 diff --git a/Skins/Rafis but SZ/approachcircle.png b/Skins/Rafis but SZ/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/Rafis but SZ/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/Rafis but SZ/button-left.png b/Skins/Rafis but SZ/button-left.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/Rafis but SZ/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/Rafis but SZ/button-middle.png b/Skins/Rafis but SZ/button-middle.png new file mode 100644 index 00000000..ff6450e6 --- /dev/null +++ b/Skins/Rafis but SZ/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26d1b2213d058c494c0e45c54638a1d05345e9317eaefee2e964e0cd45ae2be +size 2811 diff --git a/Skins/Rafis but SZ/button-right.png b/Skins/Rafis but SZ/button-right.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/Rafis but SZ/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/Rafis but SZ/coin.png b/Skins/Rafis but SZ/coin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/coin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/coins-bg.png b/Skins/Rafis but SZ/coins-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/coins-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/coins-buy.png b/Skins/Rafis but SZ/coins-buy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/coins-buy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/coins-earn.ogg b/Skins/Rafis but SZ/coins-earn.ogg new file mode 100644 index 00000000..c003fffc --- /dev/null +++ b/Skins/Rafis but SZ/coins-earn.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bb73cd5332977dc570d6c9a272f8237f0dd17242da9e57ba96ea0a782abc87 +size 4426 diff --git a/Skins/Rafis but SZ/coins-recharge.ogg b/Skins/Rafis but SZ/coins-recharge.ogg new file mode 100644 index 00000000..a997049e --- /dev/null +++ b/Skins/Rafis but SZ/coins-recharge.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb398a9eabb4e0cad7fc47335b0699c9198039f6e8dd3efb54927b7df57cc36c +size 4426 diff --git a/Skins/Rafis but SZ/coins-use.ogg b/Skins/Rafis but SZ/coins-use.ogg new file mode 100644 index 00000000..bbb5539b --- /dev/null +++ b/Skins/Rafis but SZ/coins-use.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b935490a33baff880be00a7b2e6f08b353b4869ad43a060bda2866c9dcd71b8d +size 4426 diff --git a/Skins/Rafis but SZ/coins.png b/Skins/Rafis but SZ/coins.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/coins.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/comboburst.png b/Skins/Rafis but SZ/comboburst.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/Rafis but SZ/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/Rafis but SZ/count1.png b/Skins/Rafis but SZ/count1.png new file mode 100644 index 00000000..c26ec9e8 --- /dev/null +++ b/Skins/Rafis but SZ/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d00000e327042e5a22f066d622acb87a6900f1a83e58aecd2c66f8a8e4c10ea +size 17232 diff --git a/Skins/Rafis but SZ/count1s.ogg b/Skins/Rafis but SZ/count1s.ogg new file mode 100644 index 00000000..ad79a312 --- /dev/null +++ b/Skins/Rafis but SZ/count1s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b218483ecd7e1b99f908cf68482e485a7830bdaf27d17325a2064d6b333e5384 +size 4426 diff --git a/Skins/Rafis but SZ/count2.png b/Skins/Rafis but SZ/count2.png new file mode 100644 index 00000000..6409b082 --- /dev/null +++ b/Skins/Rafis but SZ/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593cd74803be2c97fe9f5eac38fc70fe397b3df4a99206f0f85c70d071e151ee +size 17232 diff --git a/Skins/Rafis but SZ/count2s.ogg b/Skins/Rafis but SZ/count2s.ogg new file mode 100644 index 00000000..b1d2c239 --- /dev/null +++ b/Skins/Rafis but SZ/count2s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b4326a552e47a5fbb8cebbf6d0f4c443caf043f020adae0b8d37e441911ff8 +size 4426 diff --git a/Skins/Rafis but SZ/count3.png b/Skins/Rafis but SZ/count3.png new file mode 100644 index 00000000..7bd2b02b --- /dev/null +++ b/Skins/Rafis but SZ/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf7ada11b48390117bc6f16c043e9939051dedcd7485f99d3a30f12582f2998 +size 17232 diff --git a/Skins/Rafis but SZ/count3s.ogg b/Skins/Rafis but SZ/count3s.ogg new file mode 100644 index 00000000..c537f8b3 --- /dev/null +++ b/Skins/Rafis but SZ/count3s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074c9e1f49202d170640348931591ecaa8a2de026bc017275c53aa1b6ceab485 +size 4426 diff --git a/Skins/Rafis but SZ/cursor.png b/Skins/Rafis but SZ/cursor.png new file mode 100644 index 00000000..67093ba0 --- /dev/null +++ b/Skins/Rafis but SZ/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef759ef45c0c9e01a227f2473b4688c95b66cab5b40376be4011faa42b389ca9 +size 3628 diff --git a/Skins/Rafis but SZ/cursortail.png b/Skins/Rafis but SZ/cursortail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/cursortail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/cursortrail.png b/Skins/Rafis but SZ/cursortrail.png new file mode 100644 index 00000000..8c1273fd --- /dev/null +++ b/Skins/Rafis but SZ/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4999ed70d3818fbdbc9d088907c4402db5784d3437b972e06637dd3539cf9cc0 +size 4248 diff --git a/Skins/Rafis but SZ/default-0.png b/Skins/Rafis but SZ/default-0.png new file mode 100644 index 00000000..87cf9ef4 --- /dev/null +++ b/Skins/Rafis but SZ/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ec4cea2841295b91e809ff3256379bf901724d4aa4e1e1370e74d0a3dba49f5 +size 9589 diff --git a/Skins/Rafis but SZ/default-0@2x.png b/Skins/Rafis but SZ/default-0@2x.png new file mode 100644 index 00000000..4dd2655d --- /dev/null +++ b/Skins/Rafis but SZ/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98238b92c56e08f5ea49a0534b000e7e3f17cc30c28eb8ec6cd3441aa4869c5 +size 13848 diff --git a/Skins/Rafis but SZ/default-0@2x.psd b/Skins/Rafis but SZ/default-0@2x.psd new file mode 100644 index 00000000..66f4c373 Binary files /dev/null and b/Skins/Rafis but SZ/default-0@2x.psd differ diff --git a/Skins/Rafis but SZ/default-1.png b/Skins/Rafis but SZ/default-1.png new file mode 100644 index 00000000..3131f692 --- /dev/null +++ b/Skins/Rafis but SZ/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f2f8d778f34b7947e87a5004a28db708ca532567cbdf55a82044a82990cee6 +size 7953 diff --git a/Skins/Rafis but SZ/default-1@2x.png b/Skins/Rafis but SZ/default-1@2x.png new file mode 100644 index 00000000..e8fda0c5 --- /dev/null +++ b/Skins/Rafis but SZ/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70adcfe18fa15b351943190f51fba1989938e400119a8b29fd47d4865172ed9 +size 9960 diff --git a/Skins/Rafis but SZ/default-2.png b/Skins/Rafis but SZ/default-2.png new file mode 100644 index 00000000..23791dfc --- /dev/null +++ b/Skins/Rafis but SZ/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:242b16e72768d52ef26ec6052aace66cc170c6ed3e655aed2285bbf84782f0aa +size 9514 diff --git a/Skins/Rafis but SZ/default-2@2x.png b/Skins/Rafis but SZ/default-2@2x.png new file mode 100644 index 00000000..10394159 --- /dev/null +++ b/Skins/Rafis but SZ/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:582f0ad233fb7a4cd87587d4b0c723c5e7ea4703171c2406a3745a3e18d6b067 +size 13773 diff --git a/Skins/Rafis but SZ/default-3.png b/Skins/Rafis but SZ/default-3.png new file mode 100644 index 00000000..547a7904 --- /dev/null +++ b/Skins/Rafis but SZ/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4cc42097dc798e6b869541a274fcee62e88b01327e389cd4055f6a7d23bf59a +size 9837 diff --git a/Skins/Rafis but SZ/default-3@2x.png b/Skins/Rafis but SZ/default-3@2x.png new file mode 100644 index 00000000..f625ee48 --- /dev/null +++ b/Skins/Rafis but SZ/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853789fbb0b6d74fcb7d0069321c43aa8332f0b09badbc5c473fd8fa1974d61c +size 14656 diff --git a/Skins/Rafis but SZ/default-4.png b/Skins/Rafis but SZ/default-4.png new file mode 100644 index 00000000..be6567b0 --- /dev/null +++ b/Skins/Rafis but SZ/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcdff8091634b96532bec17d42e05056a3225d58b44e6162f5b11ae5a7b8f4a +size 8859 diff --git a/Skins/Rafis but SZ/default-4@2x.png b/Skins/Rafis but SZ/default-4@2x.png new file mode 100644 index 00000000..680f1292 --- /dev/null +++ b/Skins/Rafis but SZ/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f117fbef2d649ce127583bf028352a9f8a871c69273d7028dd78e501dc9e4ca +size 12046 diff --git a/Skins/Rafis but SZ/default-5.png b/Skins/Rafis but SZ/default-5.png new file mode 100644 index 00000000..f1351af0 --- /dev/null +++ b/Skins/Rafis but SZ/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be031670321c8dd039f14b551b4fb5f2a910d2a3915eee564ec0bf8fc03ee293 +size 9552 diff --git a/Skins/Rafis but SZ/default-5@2x.png b/Skins/Rafis but SZ/default-5@2x.png new file mode 100644 index 00000000..1b991023 --- /dev/null +++ b/Skins/Rafis but SZ/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66104b84145d89225b2d50ff01300f7bcc10e43340e5af0dc9a557d442a5707c +size 13913 diff --git a/Skins/Rafis but SZ/default-6.png b/Skins/Rafis but SZ/default-6.png new file mode 100644 index 00000000..1510d948 --- /dev/null +++ b/Skins/Rafis but SZ/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:424bb33ea0c3409684b0d56e10e5fb61b7c7bb2746126954d35102beef138638 +size 9796 diff --git a/Skins/Rafis but SZ/default-6@2x.png b/Skins/Rafis but SZ/default-6@2x.png new file mode 100644 index 00000000..0514ce6e --- /dev/null +++ b/Skins/Rafis but SZ/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f229b2f0026e17a0b35170ee7bab5006ed525f956af206144b2d53fbab07d75 +size 14630 diff --git a/Skins/Rafis but SZ/default-7.png b/Skins/Rafis but SZ/default-7.png new file mode 100644 index 00000000..b17d194c --- /dev/null +++ b/Skins/Rafis but SZ/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e0a6dc4a707227b004964eaed2e03ae670ac38d980404c7514517ac14ff393 +size 8689 diff --git a/Skins/Rafis but SZ/default-7@2x.png b/Skins/Rafis but SZ/default-7@2x.png new file mode 100644 index 00000000..baba9a3c --- /dev/null +++ b/Skins/Rafis but SZ/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a52641a066eae9f9ef326bde40e15c81079f20395eb472f0c08d1598e8c931 +size 11699 diff --git a/Skins/Rafis but SZ/default-8.png b/Skins/Rafis but SZ/default-8.png new file mode 100644 index 00000000..9d32eddd --- /dev/null +++ b/Skins/Rafis but SZ/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b7aa2d20f6c43438c049d3f49e7f144e1915219eed9791790cc083c5725dd84 +size 9868 diff --git a/Skins/Rafis but SZ/default-8@2x.png b/Skins/Rafis but SZ/default-8@2x.png new file mode 100644 index 00000000..d0fd4c08 --- /dev/null +++ b/Skins/Rafis but SZ/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeeb9e18158a460c087848a06ebffff7a7666ef0ef3ea97dce0db1b2ae285610 +size 14748 diff --git a/Skins/Rafis but SZ/default-9.png b/Skins/Rafis but SZ/default-9.png new file mode 100644 index 00000000..24aef1db --- /dev/null +++ b/Skins/Rafis but SZ/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ecf013a18e2fd562024a4d6f5e8c90abd66e9be09c125687c85493837ee597c +size 9784 diff --git a/Skins/Rafis but SZ/default-9@2x.png b/Skins/Rafis but SZ/default-9@2x.png new file mode 100644 index 00000000..335501a4 --- /dev/null +++ b/Skins/Rafis but SZ/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5529655312c0fb413ae6b1f21e971cad3d86a4975cd85a0626fe546c4b693bf +size 14506 diff --git a/Skins/Rafis but SZ/drum--hitwhistle.ogg b/Skins/Rafis but SZ/drum--hitwhistle.ogg new file mode 100644 index 00000000..6616f5ab --- /dev/null +++ b/Skins/Rafis but SZ/drum--hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e25b951022cc21468e6391381b05a9b98e6e5745e97d1b8fa5a8c76f42ccd8b +size 4426 diff --git a/Skins/Rafis but SZ/drum-hitclap.ogg b/Skins/Rafis but SZ/drum-hitclap.ogg new file mode 100644 index 00000000..b0540174 --- /dev/null +++ b/Skins/Rafis but SZ/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0090d97ee26d03be66ab0965153fa3460d7c10d4787760f18e2f6a8b801f6c +size 4909 diff --git a/Skins/Rafis but SZ/drum-hitclap2.ogg b/Skins/Rafis but SZ/drum-hitclap2.ogg new file mode 100644 index 00000000..8ca3742f --- /dev/null +++ b/Skins/Rafis but SZ/drum-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad3745a5ced85a257671befabe399c3ee5beb34dbdb21d85df5f7adb95dfdf3 +size 18985 diff --git a/Skins/Rafis but SZ/drum-hitfinish.ogg b/Skins/Rafis but SZ/drum-hitfinish.ogg new file mode 100644 index 00000000..e708f36d --- /dev/null +++ b/Skins/Rafis but SZ/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd673a02d88be045ea44115c2b6f6769ec488b2d1937b7b1d14dad06ca48c262 +size 6846 diff --git a/Skins/Rafis but SZ/drum-hitnormal.ogg b/Skins/Rafis but SZ/drum-hitnormal.ogg new file mode 100644 index 00000000..83778fda --- /dev/null +++ b/Skins/Rafis but SZ/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941c895c2b3d81cfe5c4b53c95457e1ce0684160602ee78fe9e0356aec557050 +size 7527 diff --git a/Skins/Rafis but SZ/drum-hitwhistle.ogg b/Skins/Rafis but SZ/drum-hitwhistle.ogg new file mode 100644 index 00000000..0b853991 --- /dev/null +++ b/Skins/Rafis but SZ/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bae33fb90f5f4ebe449c02add71d2aba704d261b374aa0dc4823fb9cec6f87 +size 4426 diff --git a/Skins/Rafis but SZ/drum-sliderslide.ogg b/Skins/Rafis but SZ/drum-sliderslide.ogg new file mode 100644 index 00000000..ca1afbde --- /dev/null +++ b/Skins/Rafis but SZ/drum-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0e12d4a6358e8ba8f4ef6f8c15c095495bf177683e4d8afc6caa37ecfb55f6 +size 4426 diff --git a/Skins/Rafis but SZ/fail-background.png b/Skins/Rafis but SZ/fail-background.png new file mode 100644 index 00000000..9b12374c --- /dev/null +++ b/Skins/Rafis but SZ/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6be4d37ec7123663a9cc739f2bf2ee1bb01eaefdb90e4a08cdab9870f2d426 +size 2575985 diff --git a/Skins/Rafis but SZ/failsound.ogg b/Skins/Rafis but SZ/failsound.ogg new file mode 100644 index 00000000..4fe160c6 --- /dev/null +++ b/Skins/Rafis but SZ/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d7278404437fab0e8146f5949186b7bf0b499182f54617609cdf012d496cf4 +size 44902 diff --git a/Skins/Rafis but SZ/followpoint-0.png b/Skins/Rafis but SZ/followpoint-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/Rafis but SZ/followpoint-1.png b/Skins/Rafis but SZ/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/followpoint-2.png b/Skins/Rafis but SZ/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/followpoint-3.png b/Skins/Rafis but SZ/followpoint-3.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/Rafis but SZ/followpoint-4.png b/Skins/Rafis but SZ/followpoint-4.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/Rafis but SZ/followpoint-5.png b/Skins/Rafis but SZ/followpoint-5.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/Rafis but SZ/followpoint-6.png b/Skins/Rafis but SZ/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/followpoint-7.png b/Skins/Rafis but SZ/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/followpoint-8.png b/Skins/Rafis but SZ/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/followpoint-9.png b/Skins/Rafis but SZ/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/followpoint.png b/Skins/Rafis but SZ/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/Rafis but SZ/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/Rafis but SZ/go.png b/Skins/Rafis but SZ/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Rafis but SZ/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Rafis but SZ/gos.ogg b/Skins/Rafis but SZ/gos.ogg new file mode 100644 index 00000000..4d4118d0 --- /dev/null +++ b/Skins/Rafis but SZ/gos.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984bb54cb198ef4bb12b81b2861643990f1cfbc3053ecbf84276c1d577c41421 +size 4426 diff --git a/Skins/Rafis but SZ/hit0.png b/Skins/Rafis but SZ/hit0.png new file mode 100644 index 00000000..5234ccdc --- /dev/null +++ b/Skins/Rafis but SZ/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4cd4105f144f84a339d748422a71a5d69ff9ae122e1b284e804f2387a7892b +size 68458 diff --git a/Skins/Rafis but SZ/hit100-0.png b/Skins/Rafis but SZ/hit100-0.png new file mode 100644 index 00000000..ee6907fb --- /dev/null +++ b/Skins/Rafis but SZ/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2cce5a187f49f5a2f2875a39de7e1bf7f4f96dceab79177b3a81bd6f22118b4 +size 4680 diff --git a/Skins/Rafis but SZ/hit100-0@2x.png b/Skins/Rafis but SZ/hit100-0@2x.png new file mode 100644 index 00000000..7086fc9d --- /dev/null +++ b/Skins/Rafis but SZ/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1926c7306214d4dc4a866e9a4c0c1c79e2725b135de3f9a3045566b9be9a5191 +size 6643 diff --git a/Skins/Rafis but SZ/hit100.png b/Skins/Rafis but SZ/hit100.png new file mode 100644 index 00000000..34d04279 --- /dev/null +++ b/Skins/Rafis but SZ/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9cc41ce28e07e020920b7924731cfafbca1921004e9640e5002493238bd2f1a +size 10869 diff --git a/Skins/Rafis but SZ/hit100@2x.png b/Skins/Rafis but SZ/hit100@2x.png new file mode 100644 index 00000000..165e1352 --- /dev/null +++ b/Skins/Rafis but SZ/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bb8815e994d9919a5a94ef0ba18a5a4952814464bcb555cecf19af9c8ff49d +size 9905 diff --git a/Skins/Rafis but SZ/hit100k-0.png b/Skins/Rafis but SZ/hit100k-0.png new file mode 100644 index 00000000..f6eda795 --- /dev/null +++ b/Skins/Rafis but SZ/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a9b4644feda8a874b832423401dbe9190349d9180e2c08840f1701d09e03ae +size 6481 diff --git a/Skins/Rafis but SZ/hit100k-0@2x.png b/Skins/Rafis but SZ/hit100k-0@2x.png new file mode 100644 index 00000000..6fe97234 --- /dev/null +++ b/Skins/Rafis but SZ/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d2d65d765d7af47a87cd93106ef56033e146960ed490a738fd5a962e0bb837 +size 13252 diff --git a/Skins/Rafis but SZ/hit100k.png b/Skins/Rafis but SZ/hit100k.png new file mode 100644 index 00000000..51939af7 --- /dev/null +++ b/Skins/Rafis but SZ/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42c317d7e74c60ecd0d5ef8c1b493b94b6749e82d5466d6840073801f117ea9 +size 14781 diff --git a/Skins/Rafis but SZ/hit100k@2x.png b/Skins/Rafis but SZ/hit100k@2x.png new file mode 100644 index 00000000..2f07b86a --- /dev/null +++ b/Skins/Rafis but SZ/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0554d1f5f80c40db813f2e885d389c8451f5c042ea36b7a2d2aa33432e8ed3f7 +size 19758 diff --git a/Skins/Rafis but SZ/hit300-0.png b/Skins/Rafis but SZ/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Rafis but SZ/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Rafis but SZ/hit300.png b/Skins/Rafis but SZ/hit300.png new file mode 100644 index 00000000..bebee13d --- /dev/null +++ b/Skins/Rafis but SZ/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92a0efa1f778b60e87c45472aefff9eca355205f548c97922982369f4ca67f9 +size 15303 diff --git a/Skins/Rafis but SZ/hit300g-0.png b/Skins/Rafis but SZ/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Rafis but SZ/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Rafis but SZ/hit300g.png b/Skins/Rafis but SZ/hit300g.png new file mode 100644 index 00000000..06898bd1 --- /dev/null +++ b/Skins/Rafis but SZ/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9dce9a7b07b046e0339f3d42f6533d4c192a82152a35c8604a6ca2acce8139 +size 15303 diff --git a/Skins/Rafis but SZ/hit300k-0.png b/Skins/Rafis but SZ/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Rafis but SZ/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Rafis but SZ/hit300k.png b/Skins/Rafis but SZ/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/Rafis but SZ/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/Rafis but SZ/hit50-0.png b/Skins/Rafis but SZ/hit50-0.png new file mode 100644 index 00000000..dbb30eb9 --- /dev/null +++ b/Skins/Rafis but SZ/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c4a3c3677b16ee43b1f39466d6b9ee83fdd6454323806956f317ed4414d29fc +size 4089 diff --git a/Skins/Rafis but SZ/hit50-0@2x.png b/Skins/Rafis but SZ/hit50-0@2x.png new file mode 100644 index 00000000..b088dfe1 --- /dev/null +++ b/Skins/Rafis but SZ/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dd52aac33996a5e10a5363e998e9c618c799e2f56b1ac3a061322a8116d9a1 +size 7141 diff --git a/Skins/Rafis but SZ/hit50.png b/Skins/Rafis but SZ/hit50.png new file mode 100644 index 00000000..6b37b8a6 --- /dev/null +++ b/Skins/Rafis but SZ/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca60c16158ac3d0236c313732b758acd99b0bd3f1e0d66a6dfdfb7fdaf677253 +size 8973 diff --git a/Skins/Rafis but SZ/hit50@2x.png b/Skins/Rafis but SZ/hit50@2x.png new file mode 100644 index 00000000..63298ee7 --- /dev/null +++ b/Skins/Rafis but SZ/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86411bd11e3ae0108701e2d3eaa4d208c894315e568b41329788c4d8ffcf6e3 +size 11102 diff --git a/Skins/Rafis but SZ/hitcircle.png b/Skins/Rafis but SZ/hitcircle.png new file mode 100644 index 00000000..e4ed457f --- /dev/null +++ b/Skins/Rafis but SZ/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a7c3d1e22c74ab6d42c54237174b0fc65ede58a01766166882196c503f5797 +size 12200 diff --git a/Skins/Rafis but SZ/hitcircle@2x.png b/Skins/Rafis but SZ/hitcircle@2x.png new file mode 100644 index 00000000..6fa924d3 --- /dev/null +++ b/Skins/Rafis but SZ/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eba8c4a6a5d9eb38b3be492adbf0817dfe8bf4b8585da39791ddbdf5e962e28 +size 25305 diff --git a/Skins/Rafis but SZ/hitcircle@2x.psd b/Skins/Rafis but SZ/hitcircle@2x.psd new file mode 100644 index 00000000..6f4e60fa Binary files /dev/null and b/Skins/Rafis but SZ/hitcircle@2x.psd differ diff --git a/Skins/Rafis but SZ/hitcircleoverlay.png b/Skins/Rafis but SZ/hitcircleoverlay.png new file mode 100644 index 00000000..aa3898e5 --- /dev/null +++ b/Skins/Rafis but SZ/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57183ab62d5662a99b5dd7b8b0d9268423b66df3ad8e361dbf0dd7bd25c354e5 +size 13175 diff --git a/Skins/Rafis but SZ/hitcircleoverlay@2x.png b/Skins/Rafis but SZ/hitcircleoverlay@2x.png new file mode 100644 index 00000000..96696ce8 --- /dev/null +++ b/Skins/Rafis but SZ/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62bf273b161152fc13ef8b7b7ab47b7899b632cee04628d8f59ef400ef809ca +size 25992 diff --git a/Skins/Rafis but SZ/hitcircleselect.png b/Skins/Rafis but SZ/hitcircleselect.png new file mode 100644 index 00000000..016ce9fc --- /dev/null +++ b/Skins/Rafis but SZ/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d2d6ea62c23d370b06640e82c190d995ebdcd97a11d4daad2813630442d2d4 +size 6957 diff --git a/Skins/Rafis but SZ/hitcircleselect@2x.png b/Skins/Rafis but SZ/hitcircleselect@2x.png new file mode 100644 index 00000000..796fa239 --- /dev/null +++ b/Skins/Rafis but SZ/hitcircleselect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948dc3875aea0743ff0c5e79cc4dea2d38e73909620296371c52e341af91e05 +size 10181 diff --git a/Skins/Rafis but SZ/inputoverlay-background.png b/Skins/Rafis but SZ/inputoverlay-background.png new file mode 100644 index 00000000..98692fce --- /dev/null +++ b/Skins/Rafis but SZ/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd822d24a4078d4e6be438962e5e3314ad14386eeb702dda06e82e2ab7c219b2 +size 4154 diff --git a/Skins/Rafis but SZ/inputoverlay-background@2x.png b/Skins/Rafis but SZ/inputoverlay-background@2x.png new file mode 100644 index 00000000..1332731e --- /dev/null +++ b/Skins/Rafis but SZ/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e056f914e28bcd028beb496ca31b7e72922f611ff1eeca2a81733ca4b5d978 +size 6305 diff --git a/Skins/Rafis but SZ/inputoverlay-key.png b/Skins/Rafis but SZ/inputoverlay-key.png new file mode 100644 index 00000000..a01fd519 --- /dev/null +++ b/Skins/Rafis but SZ/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:828d7aad27269fca30a20348688f3d566793e971519c848779e92ef49fee7ee3 +size 3544 diff --git a/Skins/Rafis but SZ/inputoverlay-key@2x.png b/Skins/Rafis but SZ/inputoverlay-key@2x.png new file mode 100644 index 00000000..7dad1f1e --- /dev/null +++ b/Skins/Rafis but SZ/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe382682230bea874d70aa399f8df041c14f4fe20f4b8e21135b741f4d38d3a9 +size 4317 diff --git a/Skins/Rafis but SZ/menu-back-0.PNG b/Skins/Rafis but SZ/menu-back-0.PNG new file mode 100644 index 00000000..83987805 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-0.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f0728dfd1d6ff65af0523cca75ba66b6afa41d59cd7a69563182acf5a41913 +size 37465 diff --git a/Skins/Rafis but SZ/menu-back-0@2x.png b/Skins/Rafis but SZ/menu-back-0@2x.png new file mode 100644 index 00000000..bdd9b0cc --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd12daa1645b24c0071433023e757a23f07d245ecc7ff5e2c62021a181c8f1 +size 93326 diff --git a/Skins/Rafis but SZ/menu-back-1.PNG b/Skins/Rafis but SZ/menu-back-1.PNG new file mode 100644 index 00000000..83987805 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-1.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f0728dfd1d6ff65af0523cca75ba66b6afa41d59cd7a69563182acf5a41913 +size 37465 diff --git a/Skins/Rafis but SZ/menu-back-10.PNG b/Skins/Rafis but SZ/menu-back-10.PNG new file mode 100644 index 00000000..1f39c042 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-10.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be160ac49ce520fa6d43e4b46bed27e7102e176c4da22f69963627b7a330432a +size 37310 diff --git a/Skins/Rafis but SZ/menu-back-10@2x.png b/Skins/Rafis but SZ/menu-back-10@2x.png new file mode 100644 index 00000000..37965dbc --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce7114d78f876d57c55468d3e00638c9fddc0a2090e2aef2d37c2d4362676bc +size 93057 diff --git a/Skins/Rafis but SZ/menu-back-11.PNG b/Skins/Rafis but SZ/menu-back-11.PNG new file mode 100644 index 00000000..1f39c042 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-11.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be160ac49ce520fa6d43e4b46bed27e7102e176c4da22f69963627b7a330432a +size 37310 diff --git a/Skins/Rafis but SZ/menu-back-11@2x.png b/Skins/Rafis but SZ/menu-back-11@2x.png new file mode 100644 index 00000000..37965dbc --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce7114d78f876d57c55468d3e00638c9fddc0a2090e2aef2d37c2d4362676bc +size 93057 diff --git a/Skins/Rafis but SZ/menu-back-1@2x.png b/Skins/Rafis but SZ/menu-back-1@2x.png new file mode 100644 index 00000000..bdd9b0cc --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd12daa1645b24c0071433023e757a23f07d245ecc7ff5e2c62021a181c8f1 +size 93326 diff --git a/Skins/Rafis but SZ/menu-back-2.png b/Skins/Rafis but SZ/menu-back-2.png new file mode 100644 index 00000000..83987805 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f0728dfd1d6ff65af0523cca75ba66b6afa41d59cd7a69563182acf5a41913 +size 37465 diff --git a/Skins/Rafis but SZ/menu-back-2@2x.png b/Skins/Rafis but SZ/menu-back-2@2x.png new file mode 100644 index 00000000..bdd9b0cc --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd12daa1645b24c0071433023e757a23f07d245ecc7ff5e2c62021a181c8f1 +size 93326 diff --git a/Skins/Rafis but SZ/menu-back-3.PNG b/Skins/Rafis but SZ/menu-back-3.PNG new file mode 100644 index 00000000..282c2f31 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-3.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37882664ff7ea4e3c0ce5774c31ee0258cc730226801dd29aba7652e1040ab24 +size 37283 diff --git a/Skins/Rafis but SZ/menu-back-3@2x.png b/Skins/Rafis but SZ/menu-back-3@2x.png new file mode 100644 index 00000000..ec9a0e90 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbc6c28a8cc354c4aa61e26ed303bfbaf7440167ddab6a6369df494bb7f2c5b +size 93119 diff --git a/Skins/Rafis but SZ/menu-back-4.png b/Skins/Rafis but SZ/menu-back-4.png new file mode 100644 index 00000000..282c2f31 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37882664ff7ea4e3c0ce5774c31ee0258cc730226801dd29aba7652e1040ab24 +size 37283 diff --git a/Skins/Rafis but SZ/menu-back-4@2x.png b/Skins/Rafis but SZ/menu-back-4@2x.png new file mode 100644 index 00000000..ec9a0e90 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbc6c28a8cc354c4aa61e26ed303bfbaf7440167ddab6a6369df494bb7f2c5b +size 93119 diff --git a/Skins/Rafis but SZ/menu-back-5.PNG b/Skins/Rafis but SZ/menu-back-5.PNG new file mode 100644 index 00000000..282c2f31 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-5.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37882664ff7ea4e3c0ce5774c31ee0258cc730226801dd29aba7652e1040ab24 +size 37283 diff --git a/Skins/Rafis but SZ/menu-back-5@2x.png b/Skins/Rafis but SZ/menu-back-5@2x.png new file mode 100644 index 00000000..ec9a0e90 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbc6c28a8cc354c4aa61e26ed303bfbaf7440167ddab6a6369df494bb7f2c5b +size 93119 diff --git a/Skins/Rafis but SZ/menu-back-6.PNG b/Skins/Rafis but SZ/menu-back-6.PNG new file mode 100644 index 00000000..4c4f1312 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-6.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4aa52070a63e536bb797378354c01c0bcc6b415faafce38ca2a7ed3024e51 +size 37271 diff --git a/Skins/Rafis but SZ/menu-back-6@2x.png b/Skins/Rafis but SZ/menu-back-6@2x.png new file mode 100644 index 00000000..4992cecd --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dbf83d2f9bbf96629aeb19e3f89ca7373f2daf9bc9366bf8b83e040df7d5e4 +size 93082 diff --git a/Skins/Rafis but SZ/menu-back-7.PNG b/Skins/Rafis but SZ/menu-back-7.PNG new file mode 100644 index 00000000..4c4f1312 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-7.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4aa52070a63e536bb797378354c01c0bcc6b415faafce38ca2a7ed3024e51 +size 37271 diff --git a/Skins/Rafis but SZ/menu-back-7@2x.png b/Skins/Rafis but SZ/menu-back-7@2x.png new file mode 100644 index 00000000..4992cecd --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dbf83d2f9bbf96629aeb19e3f89ca7373f2daf9bc9366bf8b83e040df7d5e4 +size 93082 diff --git a/Skins/Rafis but SZ/menu-back-8.PNG b/Skins/Rafis but SZ/menu-back-8.PNG new file mode 100644 index 00000000..4c4f1312 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-8.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4aa52070a63e536bb797378354c01c0bcc6b415faafce38ca2a7ed3024e51 +size 37271 diff --git a/Skins/Rafis but SZ/menu-back-8@2x.png b/Skins/Rafis but SZ/menu-back-8@2x.png new file mode 100644 index 00000000..4992cecd --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dbf83d2f9bbf96629aeb19e3f89ca7373f2daf9bc9366bf8b83e040df7d5e4 +size 93082 diff --git a/Skins/Rafis but SZ/menu-back-9.PNG b/Skins/Rafis but SZ/menu-back-9.PNG new file mode 100644 index 00000000..1f39c042 --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-9.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be160ac49ce520fa6d43e4b46bed27e7102e176c4da22f69963627b7a330432a +size 37310 diff --git a/Skins/Rafis but SZ/menu-back-9@2x.png b/Skins/Rafis but SZ/menu-back-9@2x.png new file mode 100644 index 00000000..37965dbc --- /dev/null +++ b/Skins/Rafis but SZ/menu-back-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce7114d78f876d57c55468d3e00638c9fddc0a2090e2aef2d37c2d4362676bc +size 93057 diff --git a/Skins/Rafis but SZ/menu-background.jpg b/Skins/Rafis but SZ/menu-background.jpg new file mode 100644 index 00000000..d194201a --- /dev/null +++ b/Skins/Rafis but SZ/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15523f24ed453d1abd699ed2ef26ed49befb9a3e505f1f47e42640b4305a73d0 +size 435652 diff --git a/Skins/Rafis but SZ/menu-button-background.png b/Skins/Rafis but SZ/menu-button-background.png new file mode 100644 index 00000000..1ea6975e --- /dev/null +++ b/Skins/Rafis but SZ/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5153e4c598d4a29e9c42a7eb7210696c1759b010b27b4f03da60e840f8546c61 +size 18633 diff --git a/Skins/Rafis but SZ/menu-snow.png b/Skins/Rafis but SZ/menu-snow.png new file mode 100644 index 00000000..1a99fc1c --- /dev/null +++ b/Skins/Rafis but SZ/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d074942bd55ab12d342ede71123d4face48997afb14c895e8c0aa9331817a830 +size 6570 diff --git a/Skins/Rafis but SZ/menu-snow@2x.png b/Skins/Rafis but SZ/menu-snow@2x.png new file mode 100644 index 00000000..7486006b --- /dev/null +++ b/Skins/Rafis but SZ/menu-snow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4f68274d893821a0de6a604c4759eca03270efcb9cbdfa244d0dae4cec023 +size 8157 diff --git a/Skins/Rafis but SZ/menuback.ogg b/Skins/Rafis but SZ/menuback.ogg new file mode 100644 index 00000000..63636a12 --- /dev/null +++ b/Skins/Rafis but SZ/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89457cfba16f8e37edf826a00b03024b0e15da6432dce485d60863c99f0f473 +size 5118 diff --git a/Skins/Rafis but SZ/menuclick.ogg b/Skins/Rafis but SZ/menuclick.ogg new file mode 100644 index 00000000..e0e0d08d --- /dev/null +++ b/Skins/Rafis but SZ/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a1e7c1dc48306a57367bacd0940c01a89c32ed08d825f7673021793fee20a3 +size 3967 diff --git a/Skins/Rafis but SZ/menuhit.ogg b/Skins/Rafis but SZ/menuhit.ogg new file mode 100644 index 00000000..b6270d1c --- /dev/null +++ b/Skins/Rafis but SZ/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da40ab88658dafbcd63f4e30aaf7e883be40c042de374a2e3e2747eb828dc5c0 +size 4784 diff --git a/Skins/Rafis but SZ/normal-hitclap.ogg b/Skins/Rafis but SZ/normal-hitclap.ogg new file mode 100644 index 00000000..ec0e3b04 --- /dev/null +++ b/Skins/Rafis but SZ/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1049b6d14e749927b1507f3d12c1af3545f4b30a1313b385d1e72c4b8d98b204 +size 4426 diff --git a/Skins/Rafis but SZ/normal-hitclap2.ogg b/Skins/Rafis but SZ/normal-hitclap2.ogg new file mode 100644 index 00000000..a5ac38e6 --- /dev/null +++ b/Skins/Rafis but SZ/normal-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ef388f18b6ae70d7240c86a15b2d521fcc09805c1101617704a360efdc6448 +size 18985 diff --git a/Skins/Rafis but SZ/normal-hitfinish.ogg b/Skins/Rafis but SZ/normal-hitfinish.ogg new file mode 100644 index 00000000..8a3b29a6 --- /dev/null +++ b/Skins/Rafis but SZ/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2779da6e866b9f7807f974fd02ed5a13f46f097be629284d079207378624f42f +size 7205 diff --git a/Skins/Rafis but SZ/normal-hitfinish2.ogg b/Skins/Rafis but SZ/normal-hitfinish2.ogg new file mode 100644 index 00000000..15a5e48d --- /dev/null +++ b/Skins/Rafis but SZ/normal-hitfinish2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a6a663a012e60ac1be757038ce93724326f164ef68935ed0d0682ce789496f +size 38310 diff --git a/Skins/Rafis but SZ/normal-hitnormal.ogg b/Skins/Rafis but SZ/normal-hitnormal.ogg new file mode 100644 index 00000000..caadf4b5 --- /dev/null +++ b/Skins/Rafis but SZ/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736d1629d8fac0c4ba97bb0cb432a837c870f52bfb4f69d2fc99c09ce2bed246 +size 8106 diff --git a/Skins/Rafis but SZ/normal-hitnormal2.ogg b/Skins/Rafis but SZ/normal-hitnormal2.ogg new file mode 100644 index 00000000..837a7ff8 --- /dev/null +++ b/Skins/Rafis but SZ/normal-hitnormal2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d176aa259b133472378b8a6aa4a57ed56f83b15fc851ea72f44572a7d04c9a2d +size 10576 diff --git a/Skins/Rafis but SZ/normal-hitwhistle.ogg b/Skins/Rafis but SZ/normal-hitwhistle.ogg new file mode 100644 index 00000000..e57fa9c7 --- /dev/null +++ b/Skins/Rafis but SZ/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656c4781427d993099d1cc092c2765cc61970cba3c1a4c8492d48d32bcf200fc +size 20498 diff --git a/Skins/Rafis but SZ/normal-hitwhistle2.ogg b/Skins/Rafis but SZ/normal-hitwhistle2.ogg new file mode 100644 index 00000000..99842891 --- /dev/null +++ b/Skins/Rafis but SZ/normal-hitwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a41f988eeea6ea9b67d596fd6ebc0feb606d2952e467ea5c1c166cabaefb76f +size 20837 diff --git a/Skins/Rafis but SZ/normal-hitwistle.ogg b/Skins/Rafis but SZ/normal-hitwistle.ogg new file mode 100644 index 00000000..7433d679 --- /dev/null +++ b/Skins/Rafis but SZ/normal-hitwistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56301dc35dd095ff25d8b519eabcc4a681f324aaa342a83d0d21a01f03ae24bf +size 7572 diff --git a/Skins/Rafis but SZ/normal-sliderslide2.ogg b/Skins/Rafis but SZ/normal-sliderslide2.ogg new file mode 100644 index 00000000..f91d830e --- /dev/null +++ b/Skins/Rafis but SZ/normal-sliderslide2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2035e7687e21e5171454b54e500f1cd0a905ec8f372b738b300c3b99e233f857 +size 4426 diff --git a/Skins/Rafis but SZ/normal-slidertick.ogg b/Skins/Rafis but SZ/normal-slidertick.ogg new file mode 100644 index 00000000..45fe02cc --- /dev/null +++ b/Skins/Rafis but SZ/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9387191b2235dcfecfda8c8b0aecf648fda1cfe5a366eca69a43df141f4ee63 +size 6882 diff --git a/Skins/Rafis but SZ/normal-slidertick2.ogg b/Skins/Rafis but SZ/normal-slidertick2.ogg new file mode 100644 index 00000000..32d8e68c --- /dev/null +++ b/Skins/Rafis but SZ/normal-slidertick2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ed08b6d97964430ac1684ac146eb29e345e0d5c15ff654579fbe596c6f487f +size 4426 diff --git a/Skins/Rafis but SZ/normal-sliderwhistle2.ogg b/Skins/Rafis but SZ/normal-sliderwhistle2.ogg new file mode 100644 index 00000000..0353f513 --- /dev/null +++ b/Skins/Rafis but SZ/normal-sliderwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4238dbfda3a88dbe9516b82e0831ce2516f6c2cec1712b08762e672d4ca2dff9 +size 4426 diff --git a/Skins/Rafis but SZ/pause-back.png b/Skins/Rafis but SZ/pause-back.png new file mode 100644 index 00000000..72dc34eb --- /dev/null +++ b/Skins/Rafis but SZ/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab410942cd87d21f86ce16a42e6d92d3ac51aa5007ed0540e0bea9738ab621bf +size 201453 diff --git a/Skins/Rafis but SZ/pause-continue.png b/Skins/Rafis but SZ/pause-continue.png new file mode 100644 index 00000000..d00fc2d3 --- /dev/null +++ b/Skins/Rafis but SZ/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09be14408ea61690e593d76037a1c351ea129888fef4524330ac78f5a6a4ae9e +size 201437 diff --git a/Skins/Rafis but SZ/pause-overlay.png b/Skins/Rafis but SZ/pause-overlay.png new file mode 100644 index 00000000..73ea9bc7 --- /dev/null +++ b/Skins/Rafis but SZ/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7346e1f433d34ee96637f40548fc7b0064d916c2f8d2f87981f17197c14138 +size 2575414 diff --git a/Skins/Rafis but SZ/pause-replay.png b/Skins/Rafis but SZ/pause-replay.png new file mode 100644 index 00000000..d1675289 --- /dev/null +++ b/Skins/Rafis but SZ/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0df02f3ae59a1b3f121ec8ce8aaab210a5f3cfb5fcdcd93b69fbcffc748b0a1 +size 10419 diff --git a/Skins/Rafis but SZ/pause-replay@2x.png b/Skins/Rafis but SZ/pause-replay@2x.png new file mode 100644 index 00000000..2ff6687a --- /dev/null +++ b/Skins/Rafis but SZ/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e737feb07fd2c5e915b3bb24e50af36104cb06d6d644249e967f25a131fc162 +size 16969 diff --git a/Skins/Rafis but SZ/pause-retry.png b/Skins/Rafis but SZ/pause-retry.png new file mode 100644 index 00000000..e1975c95 --- /dev/null +++ b/Skins/Rafis but SZ/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76f9fa46d46d2616503986ed09bc8a2b85fe212801c1b09878443ef146f57cc +size 201425 diff --git a/Skins/Rafis but SZ/play-skip-0.png b/Skins/Rafis but SZ/play-skip-0.png new file mode 100644 index 00000000..7a4ac870 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac945a4f1cb79142fcfb9203f5611c5e4dd6c50f5976a79826bcdb7d09315a10 +size 168253 diff --git a/Skins/Rafis but SZ/play-skip-0@2x.png b/Skins/Rafis but SZ/play-skip-0@2x.png new file mode 100644 index 00000000..b935fe57 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77903dd47078efb8ef1e527a2db1d4d19d9de512399e7c54383d7c94e33be283 +size 400443 diff --git a/Skins/Rafis but SZ/play-skip-1.PNG b/Skins/Rafis but SZ/play-skip-1.PNG new file mode 100644 index 00000000..7b3c5a5d --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-1.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9cd0b361c8a68fb4070956903d71962d8f6486409e31183accd424af061b4f +size 169480 diff --git a/Skins/Rafis but SZ/play-skip-10.PNG b/Skins/Rafis but SZ/play-skip-10.PNG new file mode 100644 index 00000000..74325723 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-10.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a045048ef31ab9e6e14b9eba5342b981f5d1aeb3a7c521a4e6ae97c3247554 +size 169392 diff --git a/Skins/Rafis but SZ/play-skip-10@2x.png b/Skins/Rafis but SZ/play-skip-10@2x.png new file mode 100644 index 00000000..bf7448cc --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e551f9c79477ec0e415e005a5c038cebbc29ca6adca6683fe88699ff20018545 +size 400753 diff --git a/Skins/Rafis but SZ/play-skip-11.PNG b/Skins/Rafis but SZ/play-skip-11.PNG new file mode 100644 index 00000000..2a9d1c1f --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-11.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56b87c12a0c0a20615dfd21d43e7334f3abd873c94a7fceed76176bcd9431a0 +size 169427 diff --git a/Skins/Rafis but SZ/play-skip-11@2x.png b/Skins/Rafis but SZ/play-skip-11@2x.png new file mode 100644 index 00000000..c97f43f8 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eed75a5f9c54cd853f8551ae8c322fe2e87336571eb3d57856a508ba5804bba +size 400862 diff --git a/Skins/Rafis but SZ/play-skip-12.PNG b/Skins/Rafis but SZ/play-skip-12.PNG new file mode 100644 index 00000000..3c0e78c6 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-12.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423353d667c357dd602c76a8b79a56a7b85eb7fe1fc01c4c07f0e36743e51a66 +size 169593 diff --git a/Skins/Rafis but SZ/play-skip-12@2x.png b/Skins/Rafis but SZ/play-skip-12@2x.png new file mode 100644 index 00000000..11f57bd7 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfe5d63f150308f61148d4e980c922582523532241d243d8b9ef4915272639e +size 400819 diff --git a/Skins/Rafis but SZ/play-skip-13.png b/Skins/Rafis but SZ/play-skip-13.png new file mode 100644 index 00000000..90847447 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008a6ef149e2e1345cf58b863c79bf3d9a5804fb916fcffd881cbc3db04cf9dc +size 169661 diff --git a/Skins/Rafis but SZ/play-skip-13@2x.png b/Skins/Rafis but SZ/play-skip-13@2x.png new file mode 100644 index 00000000..ea552c9d --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff7a7583627157fe9a3f4fce1b131f584a01366286b78b699f6ad3849a3e896 +size 400751 diff --git a/Skins/Rafis but SZ/play-skip-14.png b/Skins/Rafis but SZ/play-skip-14.png new file mode 100644 index 00000000..877881cd --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389039ddd02cb72f7424601e9ac9811e7e7f5457b5753a8c8183ab8f1ce06fbf +size 170113 diff --git a/Skins/Rafis but SZ/play-skip-14@2x.png b/Skins/Rafis but SZ/play-skip-14@2x.png new file mode 100644 index 00000000..59f030c2 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d317a90b259adbc5f504444a779a393a523bacbf183e494fc64e5d004b6cb7 +size 401234 diff --git a/Skins/Rafis but SZ/play-skip-15.PNG b/Skins/Rafis but SZ/play-skip-15.PNG new file mode 100644 index 00000000..877881cd --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-15.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389039ddd02cb72f7424601e9ac9811e7e7f5457b5753a8c8183ab8f1ce06fbf +size 170113 diff --git a/Skins/Rafis but SZ/play-skip-15@2x.png b/Skins/Rafis but SZ/play-skip-15@2x.png new file mode 100644 index 00000000..59f030c2 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d317a90b259adbc5f504444a779a393a523bacbf183e494fc64e5d004b6cb7 +size 401234 diff --git a/Skins/Rafis but SZ/play-skip-16.PNG b/Skins/Rafis but SZ/play-skip-16.PNG new file mode 100644 index 00000000..877881cd --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-16.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389039ddd02cb72f7424601e9ac9811e7e7f5457b5753a8c8183ab8f1ce06fbf +size 170113 diff --git a/Skins/Rafis but SZ/play-skip-16@2x.png b/Skins/Rafis but SZ/play-skip-16@2x.png new file mode 100644 index 00000000..59f030c2 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d317a90b259adbc5f504444a779a393a523bacbf183e494fc64e5d004b6cb7 +size 401234 diff --git a/Skins/Rafis but SZ/play-skip-17.PNG b/Skins/Rafis but SZ/play-skip-17.PNG new file mode 100644 index 00000000..90847447 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-17.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008a6ef149e2e1345cf58b863c79bf3d9a5804fb916fcffd881cbc3db04cf9dc +size 169661 diff --git a/Skins/Rafis but SZ/play-skip-17@2x.png b/Skins/Rafis but SZ/play-skip-17@2x.png new file mode 100644 index 00000000..ea552c9d --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff7a7583627157fe9a3f4fce1b131f584a01366286b78b699f6ad3849a3e896 +size 400751 diff --git a/Skins/Rafis but SZ/play-skip-18.PNG b/Skins/Rafis but SZ/play-skip-18.PNG new file mode 100644 index 00000000..3c0e78c6 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-18.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423353d667c357dd602c76a8b79a56a7b85eb7fe1fc01c4c07f0e36743e51a66 +size 169593 diff --git a/Skins/Rafis but SZ/play-skip-18@2x.png b/Skins/Rafis but SZ/play-skip-18@2x.png new file mode 100644 index 00000000..11f57bd7 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfe5d63f150308f61148d4e980c922582523532241d243d8b9ef4915272639e +size 400819 diff --git a/Skins/Rafis but SZ/play-skip-19.PNG b/Skins/Rafis but SZ/play-skip-19.PNG new file mode 100644 index 00000000..2a9d1c1f --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-19.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56b87c12a0c0a20615dfd21d43e7334f3abd873c94a7fceed76176bcd9431a0 +size 169427 diff --git a/Skins/Rafis but SZ/play-skip-19@2x.png b/Skins/Rafis but SZ/play-skip-19@2x.png new file mode 100644 index 00000000..c97f43f8 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eed75a5f9c54cd853f8551ae8c322fe2e87336571eb3d57856a508ba5804bba +size 400862 diff --git a/Skins/Rafis but SZ/play-skip-1@2x.png b/Skins/Rafis but SZ/play-skip-1@2x.png new file mode 100644 index 00000000..559edeb6 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74b0e1b897b8afc8323597a4319db0812746e1286b8817454d5c1f71e8668e7 +size 401000 diff --git a/Skins/Rafis but SZ/play-skip-2.PNG b/Skins/Rafis but SZ/play-skip-2.PNG new file mode 100644 index 00000000..73fe7d53 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-2.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75c9c28cecc06eda638ac10597136f15d0b7530a45f36e22ade1f6e5ff3728 +size 170129 diff --git a/Skins/Rafis but SZ/play-skip-20.PNG b/Skins/Rafis but SZ/play-skip-20.PNG new file mode 100644 index 00000000..74325723 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-20.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a045048ef31ab9e6e14b9eba5342b981f5d1aeb3a7c521a4e6ae97c3247554 +size 169392 diff --git a/Skins/Rafis but SZ/play-skip-20@2x.png b/Skins/Rafis but SZ/play-skip-20@2x.png new file mode 100644 index 00000000..bf7448cc --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e551f9c79477ec0e415e005a5c038cebbc29ca6adca6683fe88699ff20018545 +size 400753 diff --git a/Skins/Rafis but SZ/play-skip-2@2x.png b/Skins/Rafis but SZ/play-skip-2@2x.png new file mode 100644 index 00000000..8af3cfa2 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60155863589ea3c35bf904201037db42c639d6ec28df0fb8407ddcf7b2a47779 +size 401192 diff --git a/Skins/Rafis but SZ/play-skip-3.PNG b/Skins/Rafis but SZ/play-skip-3.PNG new file mode 100644 index 00000000..5c2e984b --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-3.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ee6ee2e279cfd9335c9ffd4ee1e3387b638c95881cb1dc6f5aa9b9dc3683cb +size 170056 diff --git a/Skins/Rafis but SZ/play-skip-3@2x.png b/Skins/Rafis but SZ/play-skip-3@2x.png new file mode 100644 index 00000000..1901d9f6 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a092f4e658654e8ff643db7c6dce1fd9728be43864eab8da4b4de38c49f3e445 +size 401165 diff --git a/Skins/Rafis but SZ/play-skip-4.PNG b/Skins/Rafis but SZ/play-skip-4.PNG new file mode 100644 index 00000000..1500fd67 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-4.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8239c5dfa54785f630019f16ddbc29f674ac12c54102f29b97353730035783 +size 170198 diff --git a/Skins/Rafis but SZ/play-skip-4@2x.png b/Skins/Rafis but SZ/play-skip-4@2x.png new file mode 100644 index 00000000..edc9056b --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb9b2848044de4f1ec670ff656760794668e8d25c287b80fe0d8fbce971fc5d +size 401146 diff --git a/Skins/Rafis but SZ/play-skip-5.png b/Skins/Rafis but SZ/play-skip-5.png new file mode 100644 index 00000000..1500fd67 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8239c5dfa54785f630019f16ddbc29f674ac12c54102f29b97353730035783 +size 170198 diff --git a/Skins/Rafis but SZ/play-skip-5@2x.png b/Skins/Rafis but SZ/play-skip-5@2x.png new file mode 100644 index 00000000..edc9056b --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb9b2848044de4f1ec670ff656760794668e8d25c287b80fe0d8fbce971fc5d +size 401146 diff --git a/Skins/Rafis but SZ/play-skip-6.PNG b/Skins/Rafis but SZ/play-skip-6.PNG new file mode 100644 index 00000000..5c2e984b --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-6.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ee6ee2e279cfd9335c9ffd4ee1e3387b638c95881cb1dc6f5aa9b9dc3683cb +size 170056 diff --git a/Skins/Rafis but SZ/play-skip-6@2x.png b/Skins/Rafis but SZ/play-skip-6@2x.png new file mode 100644 index 00000000..1901d9f6 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a092f4e658654e8ff643db7c6dce1fd9728be43864eab8da4b4de38c49f3e445 +size 401165 diff --git a/Skins/Rafis but SZ/play-skip-7.png b/Skins/Rafis but SZ/play-skip-7.png new file mode 100644 index 00000000..73fe7d53 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75c9c28cecc06eda638ac10597136f15d0b7530a45f36e22ade1f6e5ff3728 +size 170129 diff --git a/Skins/Rafis but SZ/play-skip-7@2x.png b/Skins/Rafis but SZ/play-skip-7@2x.png new file mode 100644 index 00000000..8af3cfa2 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60155863589ea3c35bf904201037db42c639d6ec28df0fb8407ddcf7b2a47779 +size 401192 diff --git a/Skins/Rafis but SZ/play-skip-8.PNG b/Skins/Rafis but SZ/play-skip-8.PNG new file mode 100644 index 00000000..7b3c5a5d --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-8.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9cd0b361c8a68fb4070956903d71962d8f6486409e31183accd424af061b4f +size 169480 diff --git a/Skins/Rafis but SZ/play-skip-8@2x.png b/Skins/Rafis but SZ/play-skip-8@2x.png new file mode 100644 index 00000000..559edeb6 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74b0e1b897b8afc8323597a4319db0812746e1286b8817454d5c1f71e8668e7 +size 401000 diff --git a/Skins/Rafis but SZ/play-skip-9.PNG b/Skins/Rafis but SZ/play-skip-9.PNG new file mode 100644 index 00000000..7a4ac870 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-9.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac945a4f1cb79142fcfb9203f5611c5e4dd6c50f5976a79826bcdb7d09315a10 +size 168253 diff --git a/Skins/Rafis but SZ/play-skip-9@2x.png b/Skins/Rafis but SZ/play-skip-9@2x.png new file mode 100644 index 00000000..b935fe57 --- /dev/null +++ b/Skins/Rafis but SZ/play-skip-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77903dd47078efb8ef1e527a2db1d4d19d9de512399e7c54383d7c94e33be283 +size 400443 diff --git a/Skins/Rafis but SZ/play-unranked.png b/Skins/Rafis but SZ/play-unranked.png new file mode 100644 index 00000000..16bd9eb9 --- /dev/null +++ b/Skins/Rafis but SZ/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7354fb979b7e07973ed224085e1b6053fc334c2180ac3f59a77c60faad5b88 +size 9534 diff --git a/Skins/Rafis but SZ/play-unranked@2x.png b/Skins/Rafis but SZ/play-unranked@2x.png new file mode 100644 index 00000000..467eb22f --- /dev/null +++ b/Skins/Rafis but SZ/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b6b6b29b3d8258b9d8a8ee7d254a7002bb895aede2a3a7a3e178944cc7e793 +size 9859 diff --git a/Skins/Rafis but SZ/play-warningarrow.png b/Skins/Rafis but SZ/play-warningarrow.png new file mode 100644 index 00000000..1a2c72fe --- /dev/null +++ b/Skins/Rafis but SZ/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406c0c260958fa3a1e2a637605be042fe7d957c935f39532c7115738eedacd95 +size 3328 diff --git a/Skins/Rafis but SZ/play-warningarrow@2x.png b/Skins/Rafis but SZ/play-warningarrow@2x.png new file mode 100644 index 00000000..a852aa4b --- /dev/null +++ b/Skins/Rafis but SZ/play-warningarrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e264b76bb14ea8d07baf834d3620d8ca0eb7ecce28d8c1cf55f52578c0350c +size 3899 diff --git a/Skins/Rafis but SZ/ranking-A-small.png b/Skins/Rafis but SZ/ranking-A-small.png new file mode 100644 index 00000000..4c84ce62 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f18dfac929985d55e3f50b1c4c7d52fcecd21f4d32640c9adc467c2c8f2b9498 +size 2037 diff --git a/Skins/Rafis but SZ/ranking-A-small@2x.png b/Skins/Rafis but SZ/ranking-A-small@2x.png new file mode 100644 index 00000000..b6141b3b --- /dev/null +++ b/Skins/Rafis but SZ/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49ee7e6985eb843740814c990ab2a1e422a28b0193b46cea9b6654aa6d6797f +size 28644 diff --git a/Skins/Rafis but SZ/ranking-A.png b/Skins/Rafis but SZ/ranking-A.png new file mode 100644 index 00000000..e3153813 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d813ccccb69adac6179c3c94f1e3cce7bc19b394d7acc3da735ffb45fc8ffaa +size 32249 diff --git a/Skins/Rafis but SZ/ranking-A@2x.png b/Skins/Rafis but SZ/ranking-A@2x.png new file mode 100644 index 00000000..c07a22c7 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70c7f0714da1e9724a659e0dc00b09a24756cc62b488f75d459accbf38b2fb5 +size 29424 diff --git a/Skins/Rafis but SZ/ranking-B-small.png b/Skins/Rafis but SZ/ranking-B-small.png new file mode 100644 index 00000000..394828c2 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c66e6bcf4f165039a0dbf4c57769ba75a521fcf8f383c1c76734b6955415d2 +size 2066 diff --git a/Skins/Rafis but SZ/ranking-B-small@2x.png b/Skins/Rafis but SZ/ranking-B-small@2x.png new file mode 100644 index 00000000..f51a915c --- /dev/null +++ b/Skins/Rafis but SZ/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4b23f9fba30f5bde8283384ee50c1904c17c0425385739938bd618618bd062 +size 28936 diff --git a/Skins/Rafis but SZ/ranking-B.png b/Skins/Rafis but SZ/ranking-B.png new file mode 100644 index 00000000..21841229 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cfa6ad1a229938992d5ef76f597bcae6232ed33713b661889171239d70e071d +size 34819 diff --git a/Skins/Rafis but SZ/ranking-B@2x.png b/Skins/Rafis but SZ/ranking-B@2x.png new file mode 100644 index 00000000..394c76a3 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f343de9aa42b5dd01894b17af1d364da6cc9123478757ba30b49aac417cc4f2 +size 35789 diff --git a/Skins/Rafis but SZ/ranking-C-small.png b/Skins/Rafis but SZ/ranking-C-small.png new file mode 100644 index 00000000..6e25fc40 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146697ce94485addae27085ac33b0970e879506d95fb209a04cbd127d96524c7 +size 1736 diff --git a/Skins/Rafis but SZ/ranking-C-small@2x.png b/Skins/Rafis but SZ/ranking-C-small@2x.png new file mode 100644 index 00000000..8438fdba --- /dev/null +++ b/Skins/Rafis but SZ/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a66710694d63a28ea6a8f45ed153773b5d80f53a9d90cecbe1de4443f7a3d6 +size 29139 diff --git a/Skins/Rafis but SZ/ranking-C.png b/Skins/Rafis but SZ/ranking-C.png new file mode 100644 index 00000000..66d1baae --- /dev/null +++ b/Skins/Rafis but SZ/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033238a9a177e5afd1b2b9bda5098c4fb3a6ffb1221b7ae0ddb42f474b8077bb +size 26350 diff --git a/Skins/Rafis but SZ/ranking-C@2x.png b/Skins/Rafis but SZ/ranking-C@2x.png new file mode 100644 index 00000000..2a97d6cb --- /dev/null +++ b/Skins/Rafis but SZ/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89565f3b2b84ceaaa28b812943997b1398ad60d0b2dd1407565ba35efeffca9 +size 29103 diff --git a/Skins/Rafis but SZ/ranking-D-small.png b/Skins/Rafis but SZ/ranking-D-small.png new file mode 100644 index 00000000..d0e2dd7a --- /dev/null +++ b/Skins/Rafis but SZ/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86a7200a56a3c5ea3a15d45353af48d01c0274f7810a086a0b169e428950a4e +size 2116 diff --git a/Skins/Rafis but SZ/ranking-D-small@2x.png b/Skins/Rafis but SZ/ranking-D-small@2x.png new file mode 100644 index 00000000..d2357bf9 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b687f3e9cd5f39b85a410f1555c63a3998356a3980b31902bec7a10bd0862b50 +size 29353 diff --git a/Skins/Rafis but SZ/ranking-D.png b/Skins/Rafis but SZ/ranking-D.png new file mode 100644 index 00000000..99984e18 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b13c1fa4ee2886f4136f38f05735b025a22f1fb13f54a401742077581e56c4 +size 28303 diff --git a/Skins/Rafis but SZ/ranking-D@2x.png b/Skins/Rafis but SZ/ranking-D@2x.png new file mode 100644 index 00000000..562487e8 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9aafa65fcd93b8d3461a53ce7e6984a09122c6cad6a8e807a25fd5ff9f6091 +size 25199 diff --git a/Skins/Rafis but SZ/ranking-S-small.png b/Skins/Rafis but SZ/ranking-S-small.png new file mode 100644 index 00000000..8d295930 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d8cc283bfd47fd7614dafd65f0be13be13682e0242388cbde4c4517ba97e05 +size 1791 diff --git a/Skins/Rafis but SZ/ranking-S-small@2x.png b/Skins/Rafis but SZ/ranking-S-small@2x.png new file mode 100644 index 00000000..afaaf42b --- /dev/null +++ b/Skins/Rafis but SZ/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec712148a0452073279eae3ed5cf04f053361c5e39468e1ca8eb0bbd2449331 +size 28870 diff --git a/Skins/Rafis but SZ/ranking-S.png b/Skins/Rafis but SZ/ranking-S.png new file mode 100644 index 00000000..e49f223a --- /dev/null +++ b/Skins/Rafis but SZ/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b139a7641b8315fe558608f12b4094dbc4bb4d9514e8e9b125e387e53556929f +size 27058 diff --git a/Skins/Rafis but SZ/ranking-S@2x.png b/Skins/Rafis but SZ/ranking-S@2x.png new file mode 100644 index 00000000..5ca466ce --- /dev/null +++ b/Skins/Rafis but SZ/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ef38d29b147734ff59d4f0364f40d9a3ce88880de57ff49f8baa24386fbdec +size 32768 diff --git a/Skins/Rafis but SZ/ranking-SH-small.png b/Skins/Rafis but SZ/ranking-SH-small.png new file mode 100644 index 00000000..9425a669 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea48642afb8ef6e8b99f6d878b1e7fb604eeab969729fbc77c22d8f2cc39e91 +size 1112 diff --git a/Skins/Rafis but SZ/ranking-SH-small@2x.png b/Skins/Rafis but SZ/ranking-SH-small@2x.png new file mode 100644 index 00000000..f6b7ec67 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f95660f5bec80c271a077fd2160181a44a875b54d39671cad1044b489c03cf2 +size 28466 diff --git a/Skins/Rafis but SZ/ranking-SH.png b/Skins/Rafis but SZ/ranking-SH.png new file mode 100644 index 00000000..21246676 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bdd3bba987ce7138b03ba89a9c6a23fdae1d1ce7164448c164eb9cea07e352 +size 15214 diff --git a/Skins/Rafis but SZ/ranking-SH@2x.png b/Skins/Rafis but SZ/ranking-SH@2x.png new file mode 100644 index 00000000..a25cfc7d --- /dev/null +++ b/Skins/Rafis but SZ/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7f25b2e09f39db7962514719cda8e0dd65d0585883bbec9257d7c4790eb838 +size 21193 diff --git a/Skins/Rafis but SZ/ranking-X-small.png b/Skins/Rafis but SZ/ranking-X-small.png new file mode 100644 index 00000000..b23aeb49 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62633019c4cb476df98a5a5f1fd7b948eb3368d1f933eec9da056674505d877 +size 2180 diff --git a/Skins/Rafis but SZ/ranking-X-small@2x.png b/Skins/Rafis but SZ/ranking-X-small@2x.png new file mode 100644 index 00000000..a385cf84 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4c1d7996f0b0ba32684fdfd06681f16b0c060b1eb95a2a1940c7e481bacb01 +size 29315 diff --git a/Skins/Rafis but SZ/ranking-X.png b/Skins/Rafis but SZ/ranking-X.png new file mode 100644 index 00000000..5be2c1c1 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e93f0066ebe7b372771fec584ca2f179bb0c7032b563027d0ee4a720a8be58 +size 52314 diff --git a/Skins/Rafis but SZ/ranking-X@2x.png b/Skins/Rafis but SZ/ranking-X@2x.png new file mode 100644 index 00000000..6b0640e8 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fc57c0d9ce25a2e406cb97da1a0e34d6c3a95cba393a16292ae3764899f326 +size 62076 diff --git a/Skins/Rafis but SZ/ranking-XH-small.png b/Skins/Rafis but SZ/ranking-XH-small.png new file mode 100644 index 00000000..0220fd64 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd4591775127ca0cb3509e1b01f9a4467373bd8487884cbdbaef20d3ed7e157 +size 1551 diff --git a/Skins/Rafis but SZ/ranking-XH-small@2x.png b/Skins/Rafis but SZ/ranking-XH-small@2x.png new file mode 100644 index 00000000..4b3f9f30 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8b406c571f4de236b82a80142809aecb38914d423d2b49d57342fb75a900da +size 29209 diff --git a/Skins/Rafis but SZ/ranking-XH.png b/Skins/Rafis but SZ/ranking-XH.png new file mode 100644 index 00000000..c80e468e --- /dev/null +++ b/Skins/Rafis but SZ/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c36e80b7c832e17379f8a471de579a3a7963434cc6a211e6a564a12f882cdf +size 36125 diff --git a/Skins/Rafis but SZ/ranking-XH@2x.png b/Skins/Rafis but SZ/ranking-XH@2x.png new file mode 100644 index 00000000..b44245f7 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa5b4a97016a19a57625ae47490aa45014a1645bcc6f6a048e4fa6b8231cd08 +size 43661 diff --git a/Skins/Rafis but SZ/ranking-accuracy.png b/Skins/Rafis but SZ/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Rafis but SZ/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Rafis but SZ/ranking-background-overlay.png b/Skins/Rafis but SZ/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/ranking-graph.png b/Skins/Rafis but SZ/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/Rafis but SZ/ranking-graph@2x.png b/Skins/Rafis but SZ/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/Rafis but SZ/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/Rafis but SZ/ranking-maxcombo.png b/Skins/Rafis but SZ/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Rafis but SZ/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Rafis but SZ/ranking-panel.png b/Skins/Rafis but SZ/ranking-panel.png new file mode 100644 index 00000000..24c02b09 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec0aa346a5eb87809ee995aeec90a45634cafab266e338e94836fb4956a1058 +size 9533 diff --git a/Skins/Rafis but SZ/ranking-panel@2x.png b/Skins/Rafis but SZ/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/Rafis but SZ/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/Rafis but SZ/ranking-perfect.png b/Skins/Rafis but SZ/ranking-perfect.png new file mode 100644 index 00000000..31c56e88 --- /dev/null +++ b/Skins/Rafis but SZ/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61a1bf548dc3120a80ed66e81fea31ff1402493f2efa4d349f2978c5679bb22 +size 18197 diff --git a/Skins/Rafis but SZ/ranking-perfect@2x.png b/Skins/Rafis but SZ/ranking-perfect@2x.png new file mode 100644 index 00000000..2bc2735c --- /dev/null +++ b/Skins/Rafis but SZ/ranking-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57147624197a1f7227031cd600a1a6bb598c1838280b2c10f1f641a2543c8f6 +size 22727 diff --git a/Skins/Rafis but SZ/ranking-title.png b/Skins/Rafis but SZ/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/Rafis but SZ/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/Rafis but SZ/ready.png b/Skins/Rafis but SZ/ready.png new file mode 100644 index 00000000..d4077227 --- /dev/null +++ b/Skins/Rafis but SZ/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8762e9e54d5d3f51350402e2fd7ff47545adca14e1927688cb42bbf24ad12ca3 +size 14510 diff --git a/Skins/Rafis but SZ/readys.ogg b/Skins/Rafis but SZ/readys.ogg new file mode 100644 index 00000000..6b2f09a9 --- /dev/null +++ b/Skins/Rafis but SZ/readys.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd8b55e73cf7f38920ae3290ad02792b47d171283086d4aeafe6d513bda31a5 +size 4426 diff --git a/Skins/Rafis but SZ/reversearrow.png b/Skins/Rafis but SZ/reversearrow.png new file mode 100644 index 00000000..3a2bea61 --- /dev/null +++ b/Skins/Rafis but SZ/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08fd4cf8314a63bb6bf113268ae6ede49561d275c7067145bf9f526ec35dc6b6 +size 5904 diff --git a/Skins/Rafis but SZ/score-0.png b/Skins/Rafis but SZ/score-0.png new file mode 100644 index 00000000..b0d97ed3 --- /dev/null +++ b/Skins/Rafis but SZ/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394197cdee2bf3ec3a87019a6a29d10a085e56021f54099c8fcce50e3ddacebc +size 3433 diff --git a/Skins/Rafis but SZ/score-1.png b/Skins/Rafis but SZ/score-1.png new file mode 100644 index 00000000..0d1ebe0d --- /dev/null +++ b/Skins/Rafis but SZ/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d113cfde1f6f8cc8a2bbfa52bb0ad35a5d85e259ee0bc3a15e03f4c7b74c6e90 +size 2926 diff --git a/Skins/Rafis but SZ/score-2.png b/Skins/Rafis but SZ/score-2.png new file mode 100644 index 00000000..408e1cdb --- /dev/null +++ b/Skins/Rafis but SZ/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2782ad0951a15087a845367afa8f2cba7473c284a68f2ff85aeb6c517e9f6c6 +size 3414 diff --git a/Skins/Rafis but SZ/score-3.png b/Skins/Rafis but SZ/score-3.png new file mode 100644 index 00000000..86177a14 --- /dev/null +++ b/Skins/Rafis but SZ/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf66868678715dbb35d4fa05bdec44967a86a79c6182e8b4b1080fe6c5bb817 +size 3439 diff --git a/Skins/Rafis but SZ/score-4.png b/Skins/Rafis but SZ/score-4.png new file mode 100644 index 00000000..245c95ee --- /dev/null +++ b/Skins/Rafis but SZ/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90311b953c402d7351eb6fff11c42e71f47e0113fc5533e19845570a251b6e53 +size 3334 diff --git a/Skins/Rafis but SZ/score-5.png b/Skins/Rafis but SZ/score-5.png new file mode 100644 index 00000000..725ce736 --- /dev/null +++ b/Skins/Rafis but SZ/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ad9cb986cf1c8e7ec73f11052c7f80cb44f6155a267c177ca874183651e63a +size 3323 diff --git a/Skins/Rafis but SZ/score-6.png b/Skins/Rafis but SZ/score-6.png new file mode 100644 index 00000000..9213868c --- /dev/null +++ b/Skins/Rafis but SZ/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cfc4cd71cd6f602d4765cd7a4f77739c20499b5803ff685e95636bb5f56fa3 +size 3541 diff --git a/Skins/Rafis but SZ/score-7.png b/Skins/Rafis but SZ/score-7.png new file mode 100644 index 00000000..b3895d5b --- /dev/null +++ b/Skins/Rafis but SZ/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbec68017836b68bae612827f74a8a0356c2c4f877e99e274cd7d619c3d66117 +size 3287 diff --git a/Skins/Rafis but SZ/score-8.png b/Skins/Rafis but SZ/score-8.png new file mode 100644 index 00000000..c31c805b --- /dev/null +++ b/Skins/Rafis but SZ/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33dfd72a1c67a7ea68dfe103227dd6962371a91882d62735f4132f04e64dc57b +size 3667 diff --git a/Skins/Rafis but SZ/score-9.png b/Skins/Rafis but SZ/score-9.png new file mode 100644 index 00000000..aeaaf0c4 --- /dev/null +++ b/Skins/Rafis but SZ/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d1a5ebc31a64edff85c84a28b9a7da2297acd516e4047649df9fdf1b5a20d4 +size 3534 diff --git a/Skins/Rafis but SZ/score-comma.png b/Skins/Rafis but SZ/score-comma.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/Rafis but SZ/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/Rafis but SZ/score-dot.png b/Skins/Rafis but SZ/score-dot.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/Rafis but SZ/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/Rafis but SZ/score-percent.png b/Skins/Rafis but SZ/score-percent.png new file mode 100644 index 00000000..69be85f4 --- /dev/null +++ b/Skins/Rafis but SZ/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463688b71d33f4c476deddd20df83dfcffbb450f7a5277704442f494fbc49570 +size 3038 diff --git a/Skins/Rafis but SZ/score-x.png b/Skins/Rafis but SZ/score-x.png new file mode 100644 index 00000000..906648fa --- /dev/null +++ b/Skins/Rafis but SZ/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ff24028255e3787e38390106f32b20bb8c6af2943c418f3436b584ce9d5674 +size 2810 diff --git a/Skins/Rafis but SZ/scorebar-bg.png b/Skins/Rafis but SZ/scorebar-bg.png new file mode 100644 index 00000000..750c65b6 --- /dev/null +++ b/Skins/Rafis but SZ/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ba8e57e5fbf0c9893065b4c80bb987328a5d65b86fbc968832d06323f76e16 +size 602 diff --git a/Skins/Rafis but SZ/scorebar-colour.png b/Skins/Rafis but SZ/scorebar-colour.png new file mode 100644 index 00000000..88225865 --- /dev/null +++ b/Skins/Rafis but SZ/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b61b8e28b3971e7532ad573539e839389158927b51e4cf1f848ee2f69466ce +size 2867 diff --git a/Skins/Rafis but SZ/scorebar-colour@2x.png b/Skins/Rafis but SZ/scorebar-colour@2x.png new file mode 100644 index 00000000..32d9be61 --- /dev/null +++ b/Skins/Rafis but SZ/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77621d494471192e54d53316d843af3d8bc1da13d15407b0250e96e27dac35a4 +size 4974 diff --git a/Skins/Rafis but SZ/scorebar-ki.png b/Skins/Rafis but SZ/scorebar-ki.png new file mode 100644 index 00000000..fac29168 --- /dev/null +++ b/Skins/Rafis but SZ/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620234b2f7442c73273afc2f3d90769c6d7ac8813f8d2c14849ba316d7281af7 +size 2803 diff --git a/Skins/Rafis but SZ/scorebar-kidanger.png b/Skins/Rafis but SZ/scorebar-kidanger.png new file mode 100644 index 00000000..ddab0bf6 --- /dev/null +++ b/Skins/Rafis but SZ/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4595cab4b46b51c203c2c6e22629fac69343bed05ec2fe778f509acfd24e0298 +size 2803 diff --git a/Skins/Rafis but SZ/scorebar-kidanger2.png b/Skins/Rafis but SZ/scorebar-kidanger2.png new file mode 100644 index 00000000..5ed877c3 --- /dev/null +++ b/Skins/Rafis but SZ/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0d08de15725e6c4e84824e5cb71b04dbb8d8f9fcfdc8b498163993114cae8f +size 2803 diff --git a/Skins/Rafis but SZ/section-fail.png b/Skins/Rafis but SZ/section-fail.png new file mode 100644 index 00000000..2d866807 --- /dev/null +++ b/Skins/Rafis but SZ/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403b392c04dcd7cf2391cb4d607d91c14606d170b71ac1046980574c8c6fbcb8 +size 28763 diff --git a/Skins/Rafis but SZ/section-pass.png b/Skins/Rafis but SZ/section-pass.png new file mode 100644 index 00000000..a14fa84c --- /dev/null +++ b/Skins/Rafis but SZ/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f2ac59baccb61aeabf94a2ea4ef31cfe6f7193adecae18a441ebbd33830482 +size 20967 diff --git a/Skins/Rafis but SZ/sectionfail.ogg b/Skins/Rafis but SZ/sectionfail.ogg new file mode 100644 index 00000000..194b58a4 --- /dev/null +++ b/Skins/Rafis but SZ/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f420a1f095236b7fd7a94b72dbfc9774479bafb16ecb73f0e5d94a33e366e9ee +size 47184 diff --git a/Skins/Rafis but SZ/sectionpass.ogg b/Skins/Rafis but SZ/sectionpass.ogg new file mode 100644 index 00000000..d662ed42 --- /dev/null +++ b/Skins/Rafis but SZ/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cceb7306cddcaf24890e7d1ffb75888a83be212fe3b2c8a39f3cb2a518192c1d +size 56854 diff --git a/Skins/Rafis but SZ/selection-mod-autoplay.png b/Skins/Rafis but SZ/selection-mod-autoplay.png new file mode 100644 index 00000000..28f71f67 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2519a646700842ce9daaa07ed7bfe5efc4a72e30447c93babeb55727ae43f07b +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-autoplay@2x.png b/Skins/Rafis but SZ/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..6af9b88d --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1573d9f938dc43410b8df076b2a098365d5ad7aa13a6dd90f0a7662b1133c8b2 +size 58538 diff --git a/Skins/Rafis but SZ/selection-mod-cinema.png b/Skins/Rafis but SZ/selection-mod-cinema.png new file mode 100644 index 00000000..8682104c --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c2505987aae7f188f13dcc56b96f30da8ad4f9f5c77a3ca7e3293917aa5838 +size 5108 diff --git a/Skins/Rafis but SZ/selection-mod-doubletime.png b/Skins/Rafis but SZ/selection-mod-doubletime.png new file mode 100644 index 00000000..155ba105 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819cd6984bc8d4a75f442da823fc763c3df0e484b3b112881ba7319ab93fff12 +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-doubletime@2x.png b/Skins/Rafis but SZ/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6b54bd24 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ff27e05a8059f17bc901de9d3fe54fa57df62f583bdb87ca90028b92ca39c9 +size 55027 diff --git a/Skins/Rafis but SZ/selection-mod-easy.png b/Skins/Rafis but SZ/selection-mod-easy.png new file mode 100644 index 00000000..8f66629e --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad4be4139039ab123c028ba272c7b1f8a338b4605da225685c1cf724fa67034 +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-easy@2x.png b/Skins/Rafis but SZ/selection-mod-easy@2x.png new file mode 100644 index 00000000..c55a688b --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3373684ef9725ae4992ddb0e529036dff31d69a97974e8894f295ff70d9e609e +size 58539 diff --git a/Skins/Rafis but SZ/selection-mod-fadein.png b/Skins/Rafis but SZ/selection-mod-fadein.png new file mode 100644 index 00000000..6176a80f --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-fadein.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4771b029b739e11ed76e87803fce174a2827b6151e5ac0d48a97d8368952ad +size 15244 diff --git a/Skins/Rafis but SZ/selection-mod-fadein@2x.png b/Skins/Rafis but SZ/selection-mod-fadein@2x.png new file mode 100644 index 00000000..feb0d080 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-fadein@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b8ac98181f2ba2ed2f1599e571450416f89dbfc28ad3ac7df69be268296db4 +size 23822 diff --git a/Skins/Rafis but SZ/selection-mod-flashlight.png b/Skins/Rafis but SZ/selection-mod-flashlight.png new file mode 100644 index 00000000..05b0a5f7 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9d570bb0b379699eec81ff699e08c46711f961c0c43d8c60a95869b8609185 +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-flashlight@2x.png b/Skins/Rafis but SZ/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..7c83b048 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7527d1a800704da867948cc201d99b195ad1e9384619dae09afe54ee2f6027a +size 56128 diff --git a/Skins/Rafis but SZ/selection-mod-halftime.png b/Skins/Rafis but SZ/selection-mod-halftime.png new file mode 100644 index 00000000..33da66e0 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dba908936b1936d9472a372736a08e693bd5ae7fc1d25d1f6f1d739163db3db +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-halftime@2x.png b/Skins/Rafis but SZ/selection-mod-halftime@2x.png new file mode 100644 index 00000000..a1cbdafa --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff3a888ecdea0266bf96fdc7c7fbe8483380343cbaaeebc8840a2367c179152 +size 47976 diff --git a/Skins/Rafis but SZ/selection-mod-hardrock.png b/Skins/Rafis but SZ/selection-mod-hardrock.png new file mode 100644 index 00000000..d22f6949 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59ab02fe50d87fb52e70d8aff6c1f12799ece9a2231b7aab8b430b2f30d873a +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-hardrock@2x.png b/Skins/Rafis but SZ/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..59110cd7 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a8f2dd93517ebb5d213e0d635b5d7991dd4f96f9bb83c9aea1e9667b08ef4e1 +size 60033 diff --git a/Skins/Rafis but SZ/selection-mod-hidden.png b/Skins/Rafis but SZ/selection-mod-hidden.png new file mode 100644 index 00000000..cd0c698d --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62df9d17c52ff0875e6cae6ee1b227fb66c6d48b377967dfab25b06ee3e19a3b +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-hidden@2x.png b/Skins/Rafis but SZ/selection-mod-hidden@2x.png new file mode 100644 index 00000000..392ebb61 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a6b62747cc8bc7431af23350db50718cae2b92b6c1541d637fa64b7116d1b7 +size 59815 diff --git a/Skins/Rafis but SZ/selection-mod-key1.png b/Skins/Rafis but SZ/selection-mod-key1.png new file mode 100644 index 00000000..a023b284 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b7b94f9341cf71d532fe740c7b3d8bed167f90db0a69c1063fb880c2261c9d +size 16593 diff --git a/Skins/Rafis but SZ/selection-mod-key1@2x.png b/Skins/Rafis but SZ/selection-mod-key1@2x.png new file mode 100644 index 00000000..4c997887 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2d31b9ba2983c225aec67b1ba5b5d41509b45eae16ef867d07da875b3c56cb +size 25753 diff --git a/Skins/Rafis but SZ/selection-mod-key2.png b/Skins/Rafis but SZ/selection-mod-key2.png new file mode 100644 index 00000000..a3a696ba --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59bb1c8cedefeb8c101cc16285505db36a2a8b7bd1b7a8640ab4f40bb1d4d4f1 +size 16779 diff --git a/Skins/Rafis but SZ/selection-mod-key2@2x.png b/Skins/Rafis but SZ/selection-mod-key2@2x.png new file mode 100644 index 00000000..5eebb73e --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac8dc39f151ff94d2de76ed4970f2b52aae718fed56bb7ae2b941cf119eb374 +size 26339 diff --git a/Skins/Rafis but SZ/selection-mod-key3.png b/Skins/Rafis but SZ/selection-mod-key3.png new file mode 100644 index 00000000..e269ca52 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ae195731e7b937bc44067f5131bd7f533b16c24e4fbb79d35d7c204c9c05d4 +size 16894 diff --git a/Skins/Rafis but SZ/selection-mod-key3@2x.png b/Skins/Rafis but SZ/selection-mod-key3@2x.png new file mode 100644 index 00000000..f08e2ca0 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1194e11e3a69a5268a951eab40624c887293f4f1f98ff4fb8e8d6ccf80629cd1 +size 26409 diff --git a/Skins/Rafis but SZ/selection-mod-key4.png b/Skins/Rafis but SZ/selection-mod-key4.png new file mode 100644 index 00000000..b7f64572 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ed7802f161ec4d0427b8be84db592edf9672877a8ad2a4938c7cdf4ed46d0d +size 16454 diff --git a/Skins/Rafis but SZ/selection-mod-key4@2x.png b/Skins/Rafis but SZ/selection-mod-key4@2x.png new file mode 100644 index 00000000..b9673020 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dee94ce8a892a2a15411860fcbb030d3305afc1e855da34bd51df56a49aa963 +size 25991 diff --git a/Skins/Rafis but SZ/selection-mod-key5.png b/Skins/Rafis but SZ/selection-mod-key5.png new file mode 100644 index 00000000..7275e4fe --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b98636d74a32c5d9651a44cd19837acefad6ad3112c4ed6b41c9deb085dfc7 +size 16748 diff --git a/Skins/Rafis but SZ/selection-mod-key5@2x.png b/Skins/Rafis but SZ/selection-mod-key5@2x.png new file mode 100644 index 00000000..460b56f5 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e79661a02d112c5fd945f0ba8e75daa6b965989755d216d0e105ca17cb3b0b +size 26341 diff --git a/Skins/Rafis but SZ/selection-mod-key6.png b/Skins/Rafis but SZ/selection-mod-key6.png new file mode 100644 index 00000000..d401e4aa --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0858c0d91f62af661a4fbe8dd8946d02e31a557190a6b779677ca5e884349f49 +size 16780 diff --git a/Skins/Rafis but SZ/selection-mod-key6@2x.png b/Skins/Rafis but SZ/selection-mod-key6@2x.png new file mode 100644 index 00000000..ae642e44 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2744e75a20a65305963001a8626bd25978ff0dd063b245269fe35c83f79b7b4f +size 26014 diff --git a/Skins/Rafis but SZ/selection-mod-key7.png b/Skins/Rafis but SZ/selection-mod-key7.png new file mode 100644 index 00000000..33652cae --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:836431dc85a171861aa51052bc4b120f83c5dc77e2e535185d2a179cfaae4d7f +size 16514 diff --git a/Skins/Rafis but SZ/selection-mod-key7@2x.png b/Skins/Rafis but SZ/selection-mod-key7@2x.png new file mode 100644 index 00000000..18b7b07d --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8989727b3af0f1945db5e7cfaa5ae038d3aa3cb6e4d2ca13afdac3600e744c2d +size 25281 diff --git a/Skins/Rafis but SZ/selection-mod-key8.png b/Skins/Rafis but SZ/selection-mod-key8.png new file mode 100644 index 00000000..2e304fb5 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b689f3d61a919f745101cfb67e7b65271ba462fa655646327e70ddda6f0a33 +size 16928 diff --git a/Skins/Rafis but SZ/selection-mod-key8@2x.png b/Skins/Rafis but SZ/selection-mod-key8@2x.png new file mode 100644 index 00000000..0b379c77 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846f9db1a253e431aca29cb7f3223800f076ec6e3236241997115e60330b2f13 +size 26181 diff --git a/Skins/Rafis but SZ/selection-mod-key9.png b/Skins/Rafis but SZ/selection-mod-key9.png new file mode 100644 index 00000000..c1d490fd --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7927f4f382b32d9122cd4482043a8edf3ea035b5241b9b72305b74e51da3de9d +size 16715 diff --git a/Skins/Rafis but SZ/selection-mod-key9@2x.png b/Skins/Rafis but SZ/selection-mod-key9@2x.png new file mode 100644 index 00000000..d0438d2c --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-key9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fd9e828cea09ffd0f13db1084b3fdc1ec32360110e2b9fd10a75e0a24f7068 +size 26375 diff --git a/Skins/Rafis but SZ/selection-mod-keycoop.png b/Skins/Rafis but SZ/selection-mod-keycoop.png new file mode 100644 index 00000000..d9c4157a --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-keycoop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968564f9fb2dd3d20b22d42484c571a954e02d8fd4e436f0193346e5c2daab82 +size 16401 diff --git a/Skins/Rafis but SZ/selection-mod-keycoop@2x.png b/Skins/Rafis but SZ/selection-mod-keycoop@2x.png new file mode 100644 index 00000000..e9c0598b --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-keycoop@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf58b5acb39e95e96860e1c7e6432633c398429dfc6721bfc3873e7062fe757 +size 24512 diff --git a/Skins/Rafis but SZ/selection-mod-nightcore.png b/Skins/Rafis but SZ/selection-mod-nightcore.png new file mode 100644 index 00000000..e06bc3c3 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f372f00e1286d50ed08f0a2b88e4c1d1f1aadfae71404e5b700ea70fab24bf22 +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-nightcore@2x.png b/Skins/Rafis but SZ/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..c8d11bf1 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2ba8650f886cddbe6e8eabfb3cf08c3b384af67e0a94382a86ed87174e2fdd +size 54730 diff --git a/Skins/Rafis but SZ/selection-mod-nofail.png b/Skins/Rafis but SZ/selection-mod-nofail.png new file mode 100644 index 00000000..4b3db2a1 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1511af803e84e79da49f01190b2f1159a9269400d7eed45cc0e5c5e512ed5a +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-nofail@2x.png b/Skins/Rafis but SZ/selection-mod-nofail@2x.png new file mode 100644 index 00000000..70b9454c --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2895e203a397a2f1acc86b006995130bcc75d01d3a872f727c1312abc090cfaf +size 56825 diff --git a/Skins/Rafis but SZ/selection-mod-perfect.png b/Skins/Rafis but SZ/selection-mod-perfect.png new file mode 100644 index 00000000..9dd01a39 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8ddacac3d72596af2c9d3ea8da2782973f262c824dda5f3a3481f0fb9d7c2d +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-perfect@2x.png b/Skins/Rafis but SZ/selection-mod-perfect@2x.png new file mode 100644 index 00000000..19bbbf3d --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1939152335d45fd730c1a8936b8d702e8bf8cbcb8985dbac4662feccc018254e +size 61159 diff --git a/Skins/Rafis but SZ/selection-mod-random.png b/Skins/Rafis but SZ/selection-mod-random.png new file mode 100644 index 00000000..45368a79 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4929a02442cef3af3d1a41d8aba4da0e27be738bf3bfb25551ce6caeb5e17b74 +size 16856 diff --git a/Skins/Rafis but SZ/selection-mod-random@2x.png b/Skins/Rafis but SZ/selection-mod-random@2x.png new file mode 100644 index 00000000..74cd4cf5 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8fb6dfe4e1ab08cf24825d6c49329f663cb128a5a29be08012cc36e306f9ed +size 26290 diff --git a/Skins/Rafis but SZ/selection-mod-relax.png b/Skins/Rafis but SZ/selection-mod-relax.png new file mode 100644 index 00000000..8a35a647 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecfdf0d80661aeba607ac00170d0c6dc86b317f612636fa547441735f791f27 +size 17193 diff --git a/Skins/Rafis but SZ/selection-mod-relax2.png b/Skins/Rafis but SZ/selection-mod-relax2.png new file mode 100644 index 00000000..f84b1f71 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c11c54ad385c3873bef00803cc63c221a8585bfab3cad4dd025f9ece4f49e9 +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-relax2@2x.png b/Skins/Rafis but SZ/selection-mod-relax2@2x.png new file mode 100644 index 00000000..8eefb999 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48e18f8c2130d25e977a5668162faa2cf88b819534834cb67ca69b076fc0e25 +size 60300 diff --git a/Skins/Rafis but SZ/selection-mod-relax@2x.png b/Skins/Rafis but SZ/selection-mod-relax@2x.png new file mode 100644 index 00000000..0c09a89f --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24baa72317f31c1d0802acf4d673d535956a37cbcd2671b5b365425a2f509e18 +size 63049 diff --git a/Skins/Rafis but SZ/selection-mod-scorev2.png b/Skins/Rafis but SZ/selection-mod-scorev2.png new file mode 100644 index 00000000..67214d66 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c23160d331750ef80389360d627a58765eed18b0ef5127a604ad1bb5fe501b +size 16334 diff --git a/Skins/Rafis but SZ/selection-mod-scorev2@2x.png b/Skins/Rafis but SZ/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..63cc37fb --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8dae8b62b0aa3d6192a26767ed1e0c500752fc1cfe2fc33d6ff1f0fb936ea96 +size 58197 diff --git a/Skins/Rafis but SZ/selection-mod-spunout.png b/Skins/Rafis but SZ/selection-mod-spunout.png new file mode 100644 index 00000000..7c651b03 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adfd713818f977b74d556a0c991562f70a17521cd56952bcdaff8963f839d53 +size 40279 diff --git a/Skins/Rafis but SZ/selection-mod-spunout@2x.png b/Skins/Rafis but SZ/selection-mod-spunout@2x.png new file mode 100644 index 00000000..ce15eebb --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c2dca481d848090dc684218b35d25e9246ad960e580053da4b822b1e8a36af +size 61577 diff --git a/Skins/Rafis but SZ/selection-mod-suddendeath.png b/Skins/Rafis but SZ/selection-mod-suddendeath.png new file mode 100644 index 00000000..ceb7cbc8 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22642a94eddaa516d8dea8fd0dfc5588a623f9a4ad13b3d678ff5a6572eeaf94 +size 48701 diff --git a/Skins/Rafis but SZ/selection-mod-suddendeath@2x.png b/Skins/Rafis but SZ/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..d549d65a --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20dff217a096f4753ea22fa97b8286c1b63e16de62b93aab201a69d932f405a0 +size 61757 diff --git a/Skins/Rafis but SZ/selection-mod-target.png b/Skins/Rafis but SZ/selection-mod-target.png new file mode 100644 index 00000000..e37be890 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b60b004811e6208e0c37217bda24e69c3baea634a169096167dda3b308aff26 +size 8225 diff --git a/Skins/Rafis but SZ/selection-mod-target@2x.png b/Skins/Rafis but SZ/selection-mod-target@2x.png new file mode 100644 index 00000000..c623ea88 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5725065ca3f4261bade2742ca2522aeb3843f577c4b8e4f055412afe1bbc34d8 +size 14174 diff --git a/Skins/Rafis but SZ/selection-mode-over.png b/Skins/Rafis but SZ/selection-mode-over.png new file mode 100644 index 00000000..f523b94b --- /dev/null +++ b/Skins/Rafis but SZ/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45bddb9ee842a7cfe55db446d18715ce75814f0f0c5b304bfa0a8d9a12339bae +size 3460 diff --git a/Skins/Rafis but SZ/selection-mode-over@2x.png b/Skins/Rafis but SZ/selection-mode-over@2x.png new file mode 100644 index 00000000..42775c50 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ed543665bad79aea16da870d5ab9b7cce73afdc50d95b029bcfbefe33daa56 +size 3635 diff --git a/Skins/Rafis but SZ/selection-mode.png b/Skins/Rafis but SZ/selection-mode.png new file mode 100644 index 00000000..8d239a44 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f2ccaaa49d7a3ca550e94c9f1037c81c79c2793aa0d287ed2bd46905090948 +size 3468 diff --git a/Skins/Rafis but SZ/selection-mode@2x.png b/Skins/Rafis but SZ/selection-mode@2x.png new file mode 100644 index 00000000..14083f12 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07be10d1625bf1ca8be3bbf81125b53ebfbd4f7e033fcb80eaf18b6b0ab7655 +size 3709 diff --git a/Skins/Rafis but SZ/selection-mods-over.png b/Skins/Rafis but SZ/selection-mods-over.png new file mode 100644 index 00000000..ec004aa7 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb204960a484a58be09530d4a95614d6b0c7866ca44926cb9ab2301a9774048 +size 5653 diff --git a/Skins/Rafis but SZ/selection-mods-over@2x.png b/Skins/Rafis but SZ/selection-mods-over@2x.png new file mode 100644 index 00000000..30069079 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115e5ed8b0b0fbf476407773fc72543de965f0fd0576ba944861f33cb94dd7a6 +size 28199 diff --git a/Skins/Rafis but SZ/selection-mods.png b/Skins/Rafis but SZ/selection-mods.png new file mode 100644 index 00000000..2cfb0147 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6426bd47c2a14700a3c23281f65c5237934d5a0709ff4b536c2b2b2a5f8b66d +size 2391 diff --git a/Skins/Rafis but SZ/selection-mods@2x.png b/Skins/Rafis but SZ/selection-mods@2x.png new file mode 100644 index 00000000..39c24218 --- /dev/null +++ b/Skins/Rafis but SZ/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d7e61caac697d909fccb6ac01ac80afd711375e96922b154ddadcce52ade49 +size 4089 diff --git a/Skins/Rafis but SZ/selection-options-over.png b/Skins/Rafis but SZ/selection-options-over.png new file mode 100644 index 00000000..7db72bc9 --- /dev/null +++ b/Skins/Rafis but SZ/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df099c20daa720cdbc20c5c73d4ce364cfc73a5b5450ce86558475f375e69ce +size 5461 diff --git a/Skins/Rafis but SZ/selection-options-over@2x.png b/Skins/Rafis but SZ/selection-options-over@2x.png new file mode 100644 index 00000000..eadd4ee1 --- /dev/null +++ b/Skins/Rafis but SZ/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b8f5ef18be3a9da582c8812eca352d110f6503161a9f13de4a39ac6ce33f47 +size 8495 diff --git a/Skins/Rafis but SZ/selection-options.png b/Skins/Rafis but SZ/selection-options.png new file mode 100644 index 00000000..57e49230 --- /dev/null +++ b/Skins/Rafis but SZ/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e825990abac32d986dd030a71e785704f8be1a18f4870199667d280bd77c13 +size 4121 diff --git a/Skins/Rafis but SZ/selection-options@2x.png b/Skins/Rafis but SZ/selection-options@2x.png new file mode 100644 index 00000000..64548260 --- /dev/null +++ b/Skins/Rafis but SZ/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbdf778eae35acecb5497b6d9cd7f3cac0482e090340f25dd576bf67b94d3f7 +size 4691 diff --git a/Skins/Rafis but SZ/selection-random-over.png b/Skins/Rafis but SZ/selection-random-over.png new file mode 100644 index 00000000..8546dbbc --- /dev/null +++ b/Skins/Rafis but SZ/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb04db3429b427d4ed5be7a361cebabed56de2a4c4ebb184bd3b32ddc15ef8d +size 6022 diff --git a/Skins/Rafis but SZ/selection-random-over@2x.png b/Skins/Rafis but SZ/selection-random-over@2x.png new file mode 100644 index 00000000..ab37ff9d --- /dev/null +++ b/Skins/Rafis but SZ/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ced4f52bd2b0f03e502a6a00b3ba8379990ce70a4d330f99897dd80945ce4a2 +size 15229 diff --git a/Skins/Rafis but SZ/selection-random.png b/Skins/Rafis but SZ/selection-random.png new file mode 100644 index 00000000..e441c835 --- /dev/null +++ b/Skins/Rafis but SZ/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b316d38e3bfae56d2756d8e137061b2dded0e1060857b4f3da545480ba7768f3 +size 4228 diff --git a/Skins/Rafis but SZ/selection-random@2x.png b/Skins/Rafis but SZ/selection-random@2x.png new file mode 100644 index 00000000..0ac84ecd --- /dev/null +++ b/Skins/Rafis but SZ/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6645c281933dbd6ff3aef66d67adef7ca1fe9802738881baab130664ce2d7fc6 +size 7123 diff --git a/Skins/Rafis but SZ/selection-selectoptions-over.png b/Skins/Rafis but SZ/selection-selectoptions-over.png new file mode 100644 index 00000000..ef49e7a7 --- /dev/null +++ b/Skins/Rafis but SZ/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d17470c892f72405e6e836dcd880030be0c8edc4c891c74e9a448de4a01a38 +size 3904 diff --git a/Skins/Rafis but SZ/selection-selectoptions.png b/Skins/Rafis but SZ/selection-selectoptions.png new file mode 100644 index 00000000..bd52ae1c --- /dev/null +++ b/Skins/Rafis but SZ/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500167adb5b2a8a487b6678724eeb23f1f453fee3baef9f284cd0f5c1be9ad6 +size 3652 diff --git a/Skins/Rafis but SZ/selection-tab.png b/Skins/Rafis but SZ/selection-tab.png new file mode 100644 index 00000000..73f15121 --- /dev/null +++ b/Skins/Rafis but SZ/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec16bd5a867810ee6dadcc2751eef1e537e8f34e660304f308e3ce1e2cd262d2 +size 3506 diff --git a/Skins/Rafis but SZ/skin.ini b/Skins/Rafis but SZ/skin.ini new file mode 100644 index 00000000..2726b9c2 --- /dev/null +++ b/Skins/Rafis but SZ/skin.ini @@ -0,0 +1,66 @@ +//Formatted by ck // pepega tools // cyperdark#6890 +[General] + Name: Rafis but SZ + Author: DDK RPK + Profile: https://osu.ppy.sh/users/5593777 + ╔=====================================╗ + ║ Downloaded from https://ck1t.ru/ss ╚========╗ + ║ Skin https://ck1t.ru/s-Rafis 2018-03-26 HDDT ║ + ╚==============================================╝ + Version: 2.2 + +// ╔════ Cursor ════╗ \\ + CursorCentre: 1 + CursorExpand: 0 + CursorRotate: 0 + +// ╔════ Combo bursts ════╗ \\ + ComboBurstRandom: 0 + +// ╔════ Slider ════╗ \\ + SliderBallFlip: 0 + SliderBallFrames: 1 + SliderStyle: 2 + +[Colours] +// ╔════ Combo Colors ════╗ \\ + Combo1: 255,255,255 // #ffffff + Combo2: 255,255,255 // #ffffff + Combo3: 255,255,255 // #ffffff + Combo4: 255,255,255 // #ffffff + MenuGlow: 0,0,190 // #0000be + SliderBorder: 255, 255, 255 // #ffffff + SliderTrackOverride: 0,0,0 // #000000 + +// ╔════ Song Select ════╗ \\ + SongSelectActiveText: 240,240,240 // #f0f0f0 + SongSelectInactiveText: 230,230,230 // #e6e6e6 + +[Fonts] +// ╔════ HitCircle ════╗ \\ + HitCirclePrefix: default + HitCircleOverlap: 150 + +// ╔════ Score ════╗ \\ + ScorePrefix: score + ScoreOverlap: 2 + +[Mania] + Keys: 4 + +// ╔════ Column ════╗ \\ + ColumnStart: 136 + ColumnWidth: 30,30,30,30 + +// ╔════ Combo ════╗ \\ + ComboPosition: 111 + +// ╔════ Hits ════╗ \\ + HitPosition: 402 + JudgementLine: 1 + +// ╔════ Lighting ════╗ \\ + LightFramePerSecond: 24 + ScorePosition: 325 + SpecialStyle: 0 + UpsideDown: 0 diff --git a/Skins/Rafis but SZ/sliderb.png b/Skins/Rafis but SZ/sliderb.png new file mode 100644 index 00000000..b0ddd37a --- /dev/null +++ b/Skins/Rafis but SZ/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702aaff001d20d5627d71654ed8a64f6efb88e0eda18c4d20b81e04605751197 +size 15457 diff --git a/Skins/Rafis but SZ/sliderendcircle.png b/Skins/Rafis but SZ/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/Rafis but SZ/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/Rafis but SZ/sliderfollowcircle.png b/Skins/Rafis but SZ/sliderfollowcircle.png new file mode 100644 index 00000000..347ffa7a --- /dev/null +++ b/Skins/Rafis but SZ/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252b7dffab8def1f7ea3ddd3dcc0b2fbff8d5f8fd6e262865c070c6be4925fe2 +size 42835 diff --git a/Skins/Rafis but SZ/sliderpoint10.png b/Skins/Rafis but SZ/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/sliderpoint30.png b/Skins/Rafis but SZ/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/sliderscorepoint.png b/Skins/Rafis but SZ/sliderscorepoint.png new file mode 100644 index 00000000..cf83f494 --- /dev/null +++ b/Skins/Rafis but SZ/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d579cf9670162a630192b68827b8d08dddfbfc855d4dde9b8c0661cf1628436d +size 3307 diff --git a/Skins/Rafis but SZ/sliderstartcircle.png b/Skins/Rafis but SZ/sliderstartcircle.png new file mode 100644 index 00000000..9db1db60 --- /dev/null +++ b/Skins/Rafis but SZ/sliderstartcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:767365381f674a50b4590c7bb734176e5b68374b3111aa965e4bff18d789bf31 +size 12200 diff --git a/Skins/Rafis but SZ/sliderstartcircle@2x.png b/Skins/Rafis but SZ/sliderstartcircle@2x.png new file mode 100644 index 00000000..2b90f42f --- /dev/null +++ b/Skins/Rafis but SZ/sliderstartcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a876c2e470ca959bd1a1242fcc5dbd907f3001bb7e4a6b867e08ca2736595e2 +size 25305 diff --git a/Skins/Rafis but SZ/soft-hitclap.ogg b/Skins/Rafis but SZ/soft-hitclap.ogg new file mode 100644 index 00000000..d6d2b5bf --- /dev/null +++ b/Skins/Rafis but SZ/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa0a2f09a1ad9aec04bc6708ea34d3297e9bf76e15769bdca939f0de077032b +size 5349 diff --git a/Skins/Rafis but SZ/soft-hitclap2.ogg b/Skins/Rafis but SZ/soft-hitclap2.ogg new file mode 100644 index 00000000..085ec269 --- /dev/null +++ b/Skins/Rafis but SZ/soft-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee389b83f7d1bdbefd19d4552a94a6d6ed3cec3cb64acf00f14665c927f3843 +size 7496 diff --git a/Skins/Rafis but SZ/soft-hitfinish.ogg b/Skins/Rafis but SZ/soft-hitfinish.ogg new file mode 100644 index 00000000..514b7ea0 --- /dev/null +++ b/Skins/Rafis but SZ/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469ffc3dcc6a5016f4ce54dd9d79e9c4cc2782ff12164f6e0fc263a959a70257 +size 15904 diff --git a/Skins/Rafis but SZ/soft-hitfinish2.ogg b/Skins/Rafis but SZ/soft-hitfinish2.ogg new file mode 100644 index 00000000..02a654f3 --- /dev/null +++ b/Skins/Rafis but SZ/soft-hitfinish2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c181175f91f0cbf922ced55f89386008d898aeb484954d656822669610afc586 +size 15904 diff --git a/Skins/Rafis but SZ/soft-hitnormal.ogg b/Skins/Rafis but SZ/soft-hitnormal.ogg new file mode 100644 index 00000000..8e96baff --- /dev/null +++ b/Skins/Rafis but SZ/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf91ddb05ee476fdd62eb99b71aa099fd41ca5613f56092cb738a4bfd5166677 +size 8106 diff --git a/Skins/Rafis but SZ/soft-hitnormal1.ogg b/Skins/Rafis but SZ/soft-hitnormal1.ogg new file mode 100644 index 00000000..c84036ae --- /dev/null +++ b/Skins/Rafis but SZ/soft-hitnormal1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e12bcbddab61d73f9c2048aac5f110a2a66144a5fcedde430218657e8ae38a +size 7044 diff --git a/Skins/Rafis but SZ/soft-hitnormal2.ogg b/Skins/Rafis but SZ/soft-hitnormal2.ogg new file mode 100644 index 00000000..cb3265d6 --- /dev/null +++ b/Skins/Rafis but SZ/soft-hitnormal2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3c74c7a25fefdbe6a0dd0207f9e4eb75f2b271c3697c2b472e1d5e6438dfb2 +size 10576 diff --git a/Skins/Rafis but SZ/soft-hitwhistle.ogg b/Skins/Rafis but SZ/soft-hitwhistle.ogg new file mode 100644 index 00000000..7adaed3d --- /dev/null +++ b/Skins/Rafis but SZ/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10135c5ce2ff2eb41717fd021cca7dd76279f6d590e6d535a50678c05368eb51 +size 20498 diff --git a/Skins/Rafis but SZ/soft-hitwhistle2.ogg b/Skins/Rafis but SZ/soft-hitwhistle2.ogg new file mode 100644 index 00000000..30a517cc --- /dev/null +++ b/Skins/Rafis but SZ/soft-hitwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4fd64adf655a9e5e64b8530be0546ea2e8b7ece3fc5dd29c06b50b957f7892 +size 6993 diff --git a/Skins/Rafis but SZ/soft-sliderslide.ogg b/Skins/Rafis but SZ/soft-sliderslide.ogg new file mode 100644 index 00000000..abd24459 --- /dev/null +++ b/Skins/Rafis but SZ/soft-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cdaffd66fc1211cc3fd5ddd4e4a01f8b2ee749c4a894637f6670383d475987 +size 4426 diff --git a/Skins/Rafis but SZ/soft-sliderslide2.ogg b/Skins/Rafis but SZ/soft-sliderslide2.ogg new file mode 100644 index 00000000..eaf9ed8a --- /dev/null +++ b/Skins/Rafis but SZ/soft-sliderslide2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f505526a9308475d2449bb38a004ce15e18e8da899142069d23c392149fe91b +size 4426 diff --git a/Skins/Rafis but SZ/soft-slidertick.ogg b/Skins/Rafis but SZ/soft-slidertick.ogg new file mode 100644 index 00000000..539b7e3c --- /dev/null +++ b/Skins/Rafis but SZ/soft-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58d616735967fc9276eb71bccb78d66465fcf6f9742c58a1be480719f7fa514 +size 14125 diff --git a/Skins/Rafis but SZ/soft-slidertick2.ogg b/Skins/Rafis but SZ/soft-slidertick2.ogg new file mode 100644 index 00000000..3a192c10 --- /dev/null +++ b/Skins/Rafis but SZ/soft-slidertick2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d292290bd7c0c13314bc69a49fe6cbdbd19225848dc6cdffcaf8d6fa88b9ff68 +size 4426 diff --git a/Skins/Rafis but SZ/soft-sliderwhistle.ogg b/Skins/Rafis but SZ/soft-sliderwhistle.ogg new file mode 100644 index 00000000..7fb5b8a2 --- /dev/null +++ b/Skins/Rafis but SZ/soft-sliderwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290def7f8b6938c8ef603d6abe7d835ea7cf0cc22a1f10c6bb03213f521b4dc2 +size 9647 diff --git a/Skins/Rafis but SZ/spinner-approachcircle.png b/Skins/Rafis but SZ/spinner-approachcircle.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/Rafis but SZ/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/Rafis but SZ/spinner-approachcircle@2x.png b/Skins/Rafis but SZ/spinner-approachcircle@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/Rafis but SZ/spinner-background.png b/Skins/Rafis but SZ/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/Rafis but SZ/spinner-bottom.png b/Skins/Rafis but SZ/spinner-bottom.png new file mode 100644 index 00000000..946c8b3a --- /dev/null +++ b/Skins/Rafis but SZ/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5797167de9aad06f6855e5f7302d6fad47beb5e01c2a4c28de952efc05bf27ff +size 1137 diff --git a/Skins/Rafis but SZ/spinner-bottom@2x.png b/Skins/Rafis but SZ/spinner-bottom@2x.png new file mode 100644 index 00000000..76e175fb --- /dev/null +++ b/Skins/Rafis but SZ/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04d400f0b6d1e0d390ade101df3877b8c6bcec8a7f21b2308f3e56c59b8b03b +size 3836 diff --git a/Skins/Rafis but SZ/spinner-circle.png b/Skins/Rafis but SZ/spinner-circle.png new file mode 100644 index 00000000..bda8edf4 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eefb18e81fe38aa3e4769812b628da9bcd4f8ef53b196c7d17f0ae65c6aa0e76 +size 11087 diff --git a/Skins/Rafis but SZ/spinner-circle@2x.png b/Skins/Rafis but SZ/spinner-circle@2x.png new file mode 100644 index 00000000..37f8f90b --- /dev/null +++ b/Skins/Rafis but SZ/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f08507d5ef48929f50f899c7d387ad8c78f86bb607a04bcbd0ea3e5c311cf6 +size 18294 diff --git a/Skins/Rafis but SZ/spinner-clear.png b/Skins/Rafis but SZ/spinner-clear.png new file mode 100644 index 00000000..bc660b6e --- /dev/null +++ b/Skins/Rafis but SZ/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6038e4ec67126dd095ae229d68a41ed10993475d21a3dd300bfb66481d1181ec +size 1230 diff --git a/Skins/Rafis but SZ/spinner-clear@2x.png b/Skins/Rafis but SZ/spinner-clear@2x.png new file mode 100644 index 00000000..bd7fae87 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae921da18f29a88056c4388b54ab362f89796bad9a8b483add548e8fa8b5a7f +size 2383 diff --git a/Skins/Rafis but SZ/spinner-glow.png b/Skins/Rafis but SZ/spinner-glow.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/Rafis but SZ/spinner-metre.png b/Skins/Rafis but SZ/spinner-metre.png new file mode 100644 index 00000000..c9d29ae8 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31994f3ab5771342bfd0d27e63bfb33169effea50e7002bfe948298f03a8421 +size 16577 diff --git a/Skins/Rafis but SZ/spinner-metre@2x.png b/Skins/Rafis but SZ/spinner-metre@2x.png new file mode 100644 index 00000000..bffcbc0e --- /dev/null +++ b/Skins/Rafis but SZ/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce403f5d4883a2563d7461f4d693fed8b93b515d05a89aa8c862ba74f55143a +size 39555 diff --git a/Skins/Rafis but SZ/spinner-middle.png b/Skins/Rafis but SZ/spinner-middle.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/Rafis but SZ/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/Rafis but SZ/spinner-middle2.png b/Skins/Rafis but SZ/spinner-middle2.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/Rafis but SZ/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/Rafis but SZ/spinner-middle2@2x.png b/Skins/Rafis but SZ/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Rafis but SZ/spinner-middle@2x.png b/Skins/Rafis but SZ/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Rafis but SZ/spinner-osu.png b/Skins/Rafis but SZ/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/spinner-rpm.png b/Skins/Rafis but SZ/spinner-rpm.png new file mode 100644 index 00000000..5d2df5e4 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75dd2f3e1c5798531ad2cae52d40619eab1dd6251149aabec033afae9628e3b0 +size 5482 diff --git a/Skins/Rafis but SZ/spinner-rpm@2x.png b/Skins/Rafis but SZ/spinner-rpm@2x.png new file mode 100644 index 00000000..39a6692b --- /dev/null +++ b/Skins/Rafis but SZ/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6877128fd58b8818e813660e1cdb78ccd08220247e332e91ea9c1d0e22bebfa3 +size 8526 diff --git a/Skins/Rafis but SZ/spinner-spin.png b/Skins/Rafis but SZ/spinner-spin.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Rafis but SZ/spinner-top.png b/Skins/Rafis but SZ/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Rafis but SZ/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Rafis but SZ/spinnerbonus.ogg b/Skins/Rafis but SZ/spinnerbonus.ogg new file mode 100644 index 00000000..a4d98537 --- /dev/null +++ b/Skins/Rafis but SZ/spinnerbonus.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126fd1e1a9d458d234d043d8fa9d853c9f98c2008a78d579e2a4c6973138c1b1 +size 22527 diff --git a/Skins/Rafis but SZ/spinnerspin.ogg b/Skins/Rafis but SZ/spinnerspin.ogg new file mode 100644 index 00000000..c67e2d8b --- /dev/null +++ b/Skins/Rafis but SZ/spinnerspin.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0672286c726bf25bee248c8c909a2874d502bd109a830c4c672088dffa1b946 +size 7084 diff --git a/Skins/Rafis but SZ/star.png b/Skins/Rafis but SZ/star.png new file mode 100644 index 00000000..57cc86e3 --- /dev/null +++ b/Skins/Rafis but SZ/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0923dba4b00cd7e9a694d731db281bf87da06a8a5bb51c7bf59f889c630f69 +size 17316 diff --git a/Skins/Rafis but SZ/star2.png b/Skins/Rafis but SZ/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Rafis but SZ/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Rafis but SZ/volume-bg-effect.png b/Skins/Rafis but SZ/volume-bg-effect.png new file mode 100644 index 00000000..9401cbe2 --- /dev/null +++ b/Skins/Rafis but SZ/volume-bg-effect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed8c50bb03c0004cef60b88f3e11116de0bb44acd3e9d9e089e6f367622ada3 +size 6130 diff --git a/Skins/Rafis but SZ/volume-bg-effect@2x.png b/Skins/Rafis but SZ/volume-bg-effect@2x.png new file mode 100644 index 00000000..4515098f --- /dev/null +++ b/Skins/Rafis but SZ/volume-bg-effect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101be858ccc62f2e7895e1d9b62fb3f60b3c2e01b17d31b92f89586c2d99cfd1 +size 10602 diff --git a/Skins/Rafis but SZ/volume-bg.png b/Skins/Rafis but SZ/volume-bg.png new file mode 100644 index 00000000..e6e39b51 --- /dev/null +++ b/Skins/Rafis but SZ/volume-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9b202321950e38de2a38e76eae508212ebb11900c679646ac40bab5e3d9ded +size 5280 diff --git a/Skins/Rafis but SZ/volume-bg@2x.png b/Skins/Rafis but SZ/volume-bg@2x.png new file mode 100644 index 00000000..4649433b --- /dev/null +++ b/Skins/Rafis but SZ/volume-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35baa1a18decd33f8a1f2991c2fed3fca43a308495df049596c987cf6c891c3f +size 8664 diff --git a/Skins/Replicant/applause.ogg b/Skins/Replicant/applause.ogg new file mode 100644 index 00000000..fa4d95e2 --- /dev/null +++ b/Skins/Replicant/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fbb7f00df5b093b9c526626f83c81625ddbf3abecc7506504e8d8a1c5a7323c +size 129741 diff --git a/Skins/Replicant/approachcircle.png b/Skins/Replicant/approachcircle.png new file mode 100644 index 00000000..e2e8feb9 --- /dev/null +++ b/Skins/Replicant/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cec20489c3b244fab672f841f1d1bfe2bf075b8aa9a1a4495df1d9f5b62a36 +size 16112 diff --git a/Skins/Replicant/approachcircle@2x.png b/Skins/Replicant/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/Replicant/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/Replicant/arrow-warning.png b/Skins/Replicant/arrow-warning.png new file mode 100644 index 00000000..ac8f4d8f --- /dev/null +++ b/Skins/Replicant/arrow-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea398d594fe401e6f8a7f1b7132b574d8fbf317c222c581fc7dad469489f93c7 +size 926 diff --git a/Skins/Replicant/back-button-hover.ogg b/Skins/Replicant/back-button-hover.ogg new file mode 100644 index 00000000..1a3a046f --- /dev/null +++ b/Skins/Replicant/back-button-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e9a03f69eff3c8e845ad6573ca63237d677b2cbf3f74c341e684651adef8f6 +size 6167 diff --git a/Skins/Replicant/button-left.png b/Skins/Replicant/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/button-middle.png b/Skins/Replicant/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/button-right.png b/Skins/Replicant/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/check-off.ogg b/Skins/Replicant/check-off.ogg new file mode 100644 index 00000000..b017059e --- /dev/null +++ b/Skins/Replicant/check-off.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbc69e3d42958e0cbf80c3eb549d24b03968c13c8bb28adb4b7dd0f9f26771 +size 15633 diff --git a/Skins/Replicant/check-on.ogg b/Skins/Replicant/check-on.ogg new file mode 100644 index 00000000..b2e98476 --- /dev/null +++ b/Skins/Replicant/check-on.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3ed490beab4afc2a86c85a627cb0d8a4ca49fdc6813ecbf6b76beed86ca098 +size 13978 diff --git a/Skins/Replicant/click-short-confirm.ogg b/Skins/Replicant/click-short-confirm.ogg new file mode 100644 index 00000000..c6b8c4ff --- /dev/null +++ b/Skins/Replicant/click-short-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f221154aed102a6a120139bd3a2d85d33f61df5bc12f10f84f94d1018ac996 +size 9474 diff --git a/Skins/Replicant/click-short.ogg b/Skins/Replicant/click-short.ogg new file mode 100644 index 00000000..1a3a046f --- /dev/null +++ b/Skins/Replicant/click-short.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e9a03f69eff3c8e845ad6573ca63237d677b2cbf3f74c341e684651adef8f6 +size 6167 diff --git a/Skins/Replicant/combo-0.png b/Skins/Replicant/combo-0.png new file mode 100644 index 00000000..f5cc8fc0 --- /dev/null +++ b/Skins/Replicant/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d944035fd3a7a5e13d411bce40a99229443049c542c553649c2ef45fe244c84 +size 898 diff --git a/Skins/Replicant/combo-0@2x.png b/Skins/Replicant/combo-0@2x.png new file mode 100644 index 00000000..bf1ab167 --- /dev/null +++ b/Skins/Replicant/combo-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa5763a81206eaab66a3474f1e2ed0e5df43f46994337fefe2885c0206098ed +size 1404 diff --git a/Skins/Replicant/combo-1.png b/Skins/Replicant/combo-1.png new file mode 100644 index 00000000..16ec696e --- /dev/null +++ b/Skins/Replicant/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a37e08af1526b080e69d414f2daaf7d776bb68193cf40ae703dacd25c77285 +size 459 diff --git a/Skins/Replicant/combo-1@2x.png b/Skins/Replicant/combo-1@2x.png new file mode 100644 index 00000000..be206652 --- /dev/null +++ b/Skins/Replicant/combo-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6996ad583b8c8986fe016eabb6456ccb3ce3b37d1d85e84131e717b665d8d52 +size 508 diff --git a/Skins/Replicant/combo-2.png b/Skins/Replicant/combo-2.png new file mode 100644 index 00000000..f8d1a860 --- /dev/null +++ b/Skins/Replicant/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a206956160092880ded6b7d262a39ad0ae54ef6b3ea2db4db60e5bb913291fb9 +size 802 diff --git a/Skins/Replicant/combo-2@2x.png b/Skins/Replicant/combo-2@2x.png new file mode 100644 index 00000000..79951aee --- /dev/null +++ b/Skins/Replicant/combo-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a276ac32148cf767258dc569635c4890ab99f9b98c3f13083778083d41e9ce8e +size 1203 diff --git a/Skins/Replicant/combo-3.png b/Skins/Replicant/combo-3.png new file mode 100644 index 00000000..1c0faad1 --- /dev/null +++ b/Skins/Replicant/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f21b933d41dd09f8d0cd58b8e2ccd497b4265b3a41e1f30c67a54d88c34eeb +size 837 diff --git a/Skins/Replicant/combo-3@2x.png b/Skins/Replicant/combo-3@2x.png new file mode 100644 index 00000000..decddeb4 --- /dev/null +++ b/Skins/Replicant/combo-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51579aae3110dce0b344d639e1dc9d2ec4502fc17769854530c2af197436619 +size 1255 diff --git a/Skins/Replicant/combo-4.png b/Skins/Replicant/combo-4.png new file mode 100644 index 00000000..95d82ff1 --- /dev/null +++ b/Skins/Replicant/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cb2989de8256d298939c5e9860ac5eb04acffc51a69a50f6543d292f2d5714 +size 843 diff --git a/Skins/Replicant/combo-4@2x.png b/Skins/Replicant/combo-4@2x.png new file mode 100644 index 00000000..9835fe47 --- /dev/null +++ b/Skins/Replicant/combo-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3db737c447b7cc9e3b4ae80c8f28ba06535712345a66dc51a8a9debf629bbff +size 1114 diff --git a/Skins/Replicant/combo-5.png b/Skins/Replicant/combo-5.png new file mode 100644 index 00000000..28f57d18 --- /dev/null +++ b/Skins/Replicant/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb814a43243c363de4f3bfd936eeb2ade9ea51171ce5b43c473fb84985dcb37 +size 865 diff --git a/Skins/Replicant/combo-5@2x.png b/Skins/Replicant/combo-5@2x.png new file mode 100644 index 00000000..fb4b74b7 --- /dev/null +++ b/Skins/Replicant/combo-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a5b0733a648e3d4af1f827b2a42f464de1d6f24d1385ce6ca6612e4a476a62c +size 1260 diff --git a/Skins/Replicant/combo-6.png b/Skins/Replicant/combo-6.png new file mode 100644 index 00000000..0026bf5b --- /dev/null +++ b/Skins/Replicant/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f200f22d7e4de0a8fa691318a6fa5d4c2c398c14d0c4991b455547edbb7cc67 +size 944 diff --git a/Skins/Replicant/combo-6@2x.png b/Skins/Replicant/combo-6@2x.png new file mode 100644 index 00000000..1e28a095 --- /dev/null +++ b/Skins/Replicant/combo-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42bac258738e7736154ffec6da7668b4bc01a00b99cd497abb9f6fea275dd511 +size 1455 diff --git a/Skins/Replicant/combo-7.png b/Skins/Replicant/combo-7.png new file mode 100644 index 00000000..61835de6 --- /dev/null +++ b/Skins/Replicant/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89528464161ddd92e8aa3e978fb1fef33b498d4e6803250d45e38d1ac819d204 +size 670 diff --git a/Skins/Replicant/combo-7@2x.png b/Skins/Replicant/combo-7@2x.png new file mode 100644 index 00000000..0f0eea5f --- /dev/null +++ b/Skins/Replicant/combo-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cbca54968fc6ddc9db03b1a8d923a035ca300855c6ca6f55d3dea425e07a11e +size 965 diff --git a/Skins/Replicant/combo-8.png b/Skins/Replicant/combo-8.png new file mode 100644 index 00000000..33cd1973 --- /dev/null +++ b/Skins/Replicant/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baef2004951ed48a07f67d0d150a048bf17802ea81d98a410723578f3163ceca +size 970 diff --git a/Skins/Replicant/combo-8@2x.png b/Skins/Replicant/combo-8@2x.png new file mode 100644 index 00000000..eb6ea010 --- /dev/null +++ b/Skins/Replicant/combo-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06dad347b6fbc36f54ff996a78b56706bb2dcb6a5a0a56cc6a1d97df7967876c +size 1541 diff --git a/Skins/Replicant/combo-9.png b/Skins/Replicant/combo-9.png new file mode 100644 index 00000000..b6f0f2fc --- /dev/null +++ b/Skins/Replicant/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74500a4fcd07f01dd6df8f0272bf7fa2e2d7ce9cbdeda9860a7dac57a3956496 +size 963 diff --git a/Skins/Replicant/combo-9@2x.png b/Skins/Replicant/combo-9@2x.png new file mode 100644 index 00000000..a88e56ae --- /dev/null +++ b/Skins/Replicant/combo-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9418f26f0c203f452a3645e2cf9191e1df97f305d90f7b74325fd2e829c75b8 +size 1489 diff --git a/Skins/Replicant/comboburst.png b/Skins/Replicant/comboburst.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/Replicant/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/Replicant/count.ogg b/Skins/Replicant/count.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/count1.png b/Skins/Replicant/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/count2.png b/Skins/Replicant/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/count3.png b/Skins/Replicant/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/cursor-smoke.png b/Skins/Replicant/cursor-smoke.png new file mode 100644 index 00000000..ba477ce4 --- /dev/null +++ b/Skins/Replicant/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86376579c39bd1112cc571a58cfa2f2f5073b415e01ecfc480ce84f77c2db75c +size 340 diff --git a/Skins/Replicant/cursor.png b/Skins/Replicant/cursor.png new file mode 100644 index 00000000..7448548a --- /dev/null +++ b/Skins/Replicant/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8801dafb6675fc05dd0ff8e2b5527b3728227d4864e2057e6929101819f89f5a +size 4039 diff --git a/Skins/Replicant/cursor@2x.png b/Skins/Replicant/cursor@2x.png new file mode 100644 index 00000000..ff2cb21b --- /dev/null +++ b/Skins/Replicant/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5302226b1e9c44e8cdc27b03bc8c6c6fa0ae0e75d899b9f2917188311c3fa4c +size 11063 diff --git a/Skins/Replicant/cursortrail.png b/Skins/Replicant/cursortrail.png new file mode 100644 index 00000000..338c93f1 --- /dev/null +++ b/Skins/Replicant/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ef13495c8af2fa195bb2c3d358e4352929dd77d1d7251408975f33d342dd7e +size 4215 diff --git a/Skins/Replicant/default-0.png b/Skins/Replicant/default-0.png new file mode 100644 index 00000000..64858f31 --- /dev/null +++ b/Skins/Replicant/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbf5a57bc4ddb3c7c85f75f90f2843d6532459545610bf51f8eae5dce4c326b +size 5310 diff --git a/Skins/Replicant/default-1.png b/Skins/Replicant/default-1.png new file mode 100644 index 00000000..aa4f3307 --- /dev/null +++ b/Skins/Replicant/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b2536e0af1f5632b841db73aec1136c9174cba10cb8303f0c0e065584fd19 +size 3645 diff --git a/Skins/Replicant/default-2.png b/Skins/Replicant/default-2.png new file mode 100644 index 00000000..55beb36f --- /dev/null +++ b/Skins/Replicant/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829ca68fc1fc9e0aaba0f2f6d41a92adc9de6bf9c2511365ba70baa3d61790cb +size 5709 diff --git a/Skins/Replicant/default-3.png b/Skins/Replicant/default-3.png new file mode 100644 index 00000000..265b0dac --- /dev/null +++ b/Skins/Replicant/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a098dfe1bf81dc21d017d8dfe5e944cd49c63208ddb5c032ce7f518cf208f5c6 +size 5741 diff --git a/Skins/Replicant/default-4.png b/Skins/Replicant/default-4.png new file mode 100644 index 00000000..9f003f7f --- /dev/null +++ b/Skins/Replicant/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747a290ca5ee9b65839c3193176a8ce57d09382c974a609ee5148b688ddd550d +size 4796 diff --git a/Skins/Replicant/default-5.png b/Skins/Replicant/default-5.png new file mode 100644 index 00000000..2c1bf42f --- /dev/null +++ b/Skins/Replicant/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab00a8ec33a6c69157bb68367aa74a27d34917a163c4d31429ab08a471ca688 +size 5492 diff --git a/Skins/Replicant/default-6.png b/Skins/Replicant/default-6.png new file mode 100644 index 00000000..7c18c2b4 --- /dev/null +++ b/Skins/Replicant/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa75ef2541e3759644705f565ff2ac90184c37d83ef676b163ce380ed0c91ebd +size 5489 diff --git a/Skins/Replicant/default-7.png b/Skins/Replicant/default-7.png new file mode 100644 index 00000000..97a76ea5 --- /dev/null +++ b/Skins/Replicant/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612ec68a4aebc98b24c52835525870d2d8f99612129d4758401e874e7ace3759 +size 2260 diff --git a/Skins/Replicant/default-8.png b/Skins/Replicant/default-8.png new file mode 100644 index 00000000..8d653450 --- /dev/null +++ b/Skins/Replicant/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc23776e5e57efc3854b65b023f89dfb44dca2a9a1d44a6228e63cfabe832947 +size 5602 diff --git a/Skins/Replicant/default-9.png b/Skins/Replicant/default-9.png new file mode 100644 index 00000000..4a53267c --- /dev/null +++ b/Skins/Replicant/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882725cf243743606128440651a4328157311def82fc00ea7415a38ccaf3d02e +size 5451 diff --git a/Skins/Replicant/default-comma.png b/Skins/Replicant/default-comma.png new file mode 100644 index 00000000..17869eae --- /dev/null +++ b/Skins/Replicant/default-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1fb11e3d6af337cb3e8c4b6b56b315f63f175134d25a780b63efcc5ffc64502 +size 324 diff --git a/Skins/Replicant/default-dot.png b/Skins/Replicant/default-dot.png new file mode 100644 index 00000000..6de77f73 --- /dev/null +++ b/Skins/Replicant/default-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8177f03bf032ad0422affe6f60261610e01f3b20f16d42733fef6a1374103aa8 +size 205 diff --git a/Skins/Replicant/default-percent.png b/Skins/Replicant/default-percent.png new file mode 100644 index 00000000..51f5bcb7 --- /dev/null +++ b/Skins/Replicant/default-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7663b542d4a98bacfb1568d4b2dafcef99b88caeb5d7724e89deb4812c9c0287 +size 1498 diff --git a/Skins/Replicant/default-x.png b/Skins/Replicant/default-x.png new file mode 100644 index 00000000..51203f63 --- /dev/null +++ b/Skins/Replicant/default-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f9e8bdc5cd77768007305fe28b4cac1842bae01c20de2ed6524c5448b41767 +size 721 diff --git a/Skins/Replicant/drum-hitclap.ogg b/Skins/Replicant/drum-hitclap.ogg new file mode 100644 index 00000000..f72b6ba6 --- /dev/null +++ b/Skins/Replicant/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b855f7affaa94ea029d9244089de243682c5e670b34b2a8ea3a0f7e899db8fe +size 5151 diff --git a/Skins/Replicant/drum-hitfinish.ogg b/Skins/Replicant/drum-hitfinish.ogg new file mode 100644 index 00000000..f320932f --- /dev/null +++ b/Skins/Replicant/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd88f8b4502908cff6252307a3952e8c908daa49cbcea95f5bbc48d28df7c4c +size 5763 diff --git a/Skins/Replicant/drum-hitnormal.ogg b/Skins/Replicant/drum-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/Replicant/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/Replicant/drum-hitwhistle.ogg b/Skins/Replicant/drum-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/Replicant/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/Replicant/drum-sliderslide.ogg b/Skins/Replicant/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/drum-slidertick.ogg b/Skins/Replicant/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/drum-sliderwhistle.ogg b/Skins/Replicant/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/fail-background.png b/Skins/Replicant/fail-background.png new file mode 100644 index 00000000..69633134 --- /dev/null +++ b/Skins/Replicant/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14649c731b4ea6f97f7ad0d1789a18baabe62d42bcc9c0024500f64974af0c4d +size 2234092 diff --git a/Skins/Replicant/failsound.ogg b/Skins/Replicant/failsound.ogg new file mode 100644 index 00000000..fc0f0296 --- /dev/null +++ b/Skins/Replicant/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c7a6549422c12d0f6eb9ee4a43a65aafeb2035e0968084a35bd6232fba84d27 +size 403251 diff --git a/Skins/Replicant/followpoint-0.png b/Skins/Replicant/followpoint-0.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-1.png b/Skins/Replicant/followpoint-1.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-10.png b/Skins/Replicant/followpoint-10.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-11.png b/Skins/Replicant/followpoint-11.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-12.png b/Skins/Replicant/followpoint-12.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-13.png b/Skins/Replicant/followpoint-13.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-14.png b/Skins/Replicant/followpoint-14.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-15.png b/Skins/Replicant/followpoint-15.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-16.png b/Skins/Replicant/followpoint-16.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-17.png b/Skins/Replicant/followpoint-17.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-18.png b/Skins/Replicant/followpoint-18.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-19.png b/Skins/Replicant/followpoint-19.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-2.png b/Skins/Replicant/followpoint-2.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-20.png b/Skins/Replicant/followpoint-20.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-21.png b/Skins/Replicant/followpoint-21.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-22.png b/Skins/Replicant/followpoint-22.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-23.png b/Skins/Replicant/followpoint-23.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-24.png b/Skins/Replicant/followpoint-24.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-25.png b/Skins/Replicant/followpoint-25.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-26.png b/Skins/Replicant/followpoint-26.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-27.png b/Skins/Replicant/followpoint-27.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-28.png b/Skins/Replicant/followpoint-28.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-29.png b/Skins/Replicant/followpoint-29.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-3.png b/Skins/Replicant/followpoint-3.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-30.png b/Skins/Replicant/followpoint-30.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-31.png b/Skins/Replicant/followpoint-31.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-32.png b/Skins/Replicant/followpoint-32.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-33.png b/Skins/Replicant/followpoint-33.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-34.png b/Skins/Replicant/followpoint-34.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-35.png b/Skins/Replicant/followpoint-35.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-36.png b/Skins/Replicant/followpoint-36.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-37.png b/Skins/Replicant/followpoint-37.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-38.png b/Skins/Replicant/followpoint-38.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-39.png b/Skins/Replicant/followpoint-39.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-4.png b/Skins/Replicant/followpoint-4.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-40.png b/Skins/Replicant/followpoint-40.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-41.png b/Skins/Replicant/followpoint-41.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-42.png b/Skins/Replicant/followpoint-42.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-43.png b/Skins/Replicant/followpoint-43.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-44.png b/Skins/Replicant/followpoint-44.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-45.png b/Skins/Replicant/followpoint-45.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-46.png b/Skins/Replicant/followpoint-46.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-47.png b/Skins/Replicant/followpoint-47.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-48.png b/Skins/Replicant/followpoint-48.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/Replicant/followpoint-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/Replicant/followpoint-49.png b/Skins/Replicant/followpoint-49.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-5.png b/Skins/Replicant/followpoint-5.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-50.png b/Skins/Replicant/followpoint-50.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-51.png b/Skins/Replicant/followpoint-51.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-52.png b/Skins/Replicant/followpoint-52.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-53.png b/Skins/Replicant/followpoint-53.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-54.png b/Skins/Replicant/followpoint-54.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-55.png b/Skins/Replicant/followpoint-55.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-56.png b/Skins/Replicant/followpoint-56.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-57.png b/Skins/Replicant/followpoint-57.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-58.png b/Skins/Replicant/followpoint-58.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-59.png b/Skins/Replicant/followpoint-59.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-6.png b/Skins/Replicant/followpoint-6.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-60.png b/Skins/Replicant/followpoint-60.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-7.png b/Skins/Replicant/followpoint-7.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-8.png b/Skins/Replicant/followpoint-8.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/followpoint-9.png b/Skins/Replicant/followpoint-9.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/go.png b/Skins/Replicant/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/gos.ogg b/Skins/Replicant/gos.ogg new file mode 100644 index 00000000..ff74ba9c --- /dev/null +++ b/Skins/Replicant/gos.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd1a16ec35756725b324445018717c6275cf4c0f78c1b34b9878948d51d3196 +size 7381 diff --git a/Skins/Replicant/heartbeat.ogg b/Skins/Replicant/heartbeat.ogg new file mode 100644 index 00000000..7e401a93 --- /dev/null +++ b/Skins/Replicant/heartbeat.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebe1712df2228417869c269866eb73db8fb8afa0c11e10f9bd5b5e31d95e577b +size 8524 diff --git a/Skins/Replicant/hit0-0.png b/Skins/Replicant/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/Replicant/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/Replicant/hit0.png b/Skins/Replicant/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/hit100-0.png b/Skins/Replicant/hit100-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100-1.png b/Skins/Replicant/hit100-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100-2.png b/Skins/Replicant/hit100-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100-3.png b/Skins/Replicant/hit100-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100-4.png b/Skins/Replicant/hit100-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100-5.png b/Skins/Replicant/hit100-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/Replicant/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/Replicant/hit100-6.png b/Skins/Replicant/hit100-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/Replicant/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/Replicant/hit100-7.png b/Skins/Replicant/hit100-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/Replicant/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/Replicant/hit100-8.png b/Skins/Replicant/hit100-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/Replicant/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/Replicant/hit100-9.png b/Skins/Replicant/hit100-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/hit100.png b/Skins/Replicant/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/hit100k-0.png b/Skins/Replicant/hit100k-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100k-1.png b/Skins/Replicant/hit100k-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100k-2.png b/Skins/Replicant/hit100k-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100k-3.png b/Skins/Replicant/hit100k-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100k-4.png b/Skins/Replicant/hit100k-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/Replicant/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/Replicant/hit100k-5.png b/Skins/Replicant/hit100k-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/Replicant/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/Replicant/hit100k-6.png b/Skins/Replicant/hit100k-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/Replicant/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/Replicant/hit100k-7.png b/Skins/Replicant/hit100k-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/Replicant/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/Replicant/hit100k-8.png b/Skins/Replicant/hit100k-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/Replicant/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/Replicant/hit100k-9.png b/Skins/Replicant/hit100k-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/hit100k.png b/Skins/Replicant/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/hit300.png b/Skins/Replicant/hit300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/hit300g.png b/Skins/Replicant/hit300g.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/hit300k.png b/Skins/Replicant/hit300k.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/hit50-0.png b/Skins/Replicant/hit50-0.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/Replicant/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/Replicant/hit50-1.png b/Skins/Replicant/hit50-1.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/Replicant/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/Replicant/hit50-2.png b/Skins/Replicant/hit50-2.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/Replicant/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/Replicant/hit50-3.png b/Skins/Replicant/hit50-3.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/Replicant/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/Replicant/hit50-4.png b/Skins/Replicant/hit50-4.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/Replicant/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/Replicant/hit50-5.png b/Skins/Replicant/hit50-5.png new file mode 100644 index 00000000..20a02ca4 --- /dev/null +++ b/Skins/Replicant/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c4a4dd32579364796cb6a07d967a70a104a87f218d2698a7742283e196b05f +size 4355 diff --git a/Skins/Replicant/hit50-6.png b/Skins/Replicant/hit50-6.png new file mode 100644 index 00000000..a2d49156 --- /dev/null +++ b/Skins/Replicant/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aedd7127330e73764c01eba26b22425ddb1d7ae0eadf308eefc088244d4d6f9e +size 4291 diff --git a/Skins/Replicant/hit50-7.png b/Skins/Replicant/hit50-7.png new file mode 100644 index 00000000..af67a916 --- /dev/null +++ b/Skins/Replicant/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49acfe7551db09fb0ac188424367cfc1b4a3b7bfff0e37bb2ea18fcac07a990 +size 4218 diff --git a/Skins/Replicant/hit50-8.png b/Skins/Replicant/hit50-8.png new file mode 100644 index 00000000..96590513 --- /dev/null +++ b/Skins/Replicant/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9965e2df444e56b320169e51621143f39be211971bf5e79ade8e82217bbfbc71 +size 4061 diff --git a/Skins/Replicant/hit50-9.png b/Skins/Replicant/hit50-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/hit50.png b/Skins/Replicant/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/hitcircle.png b/Skins/Replicant/hitcircle.png new file mode 100644 index 00000000..e3a345c3 --- /dev/null +++ b/Skins/Replicant/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484271df18be4a564486cd676c94a98f439a347e828349337261515766c4e500 +size 3150 diff --git a/Skins/Replicant/hitcircleoverlay.png b/Skins/Replicant/hitcircleoverlay.png new file mode 100644 index 00000000..11577631 --- /dev/null +++ b/Skins/Replicant/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721404e943516f899fcbde20c13ead74ccebc25441bcb1220768607240383c6e +size 5875 diff --git a/Skins/Replicant/hitcircleoverlay@2x.png b/Skins/Replicant/hitcircleoverlay@2x.png new file mode 100644 index 00000000..63991a72 --- /dev/null +++ b/Skins/Replicant/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d452b995f8a5b3bb1b39a24205dcea934b9e9e45ac1bf051d592ffea4e7942f +size 28767 diff --git a/Skins/Replicant/inputoverlay-background.png b/Skins/Replicant/inputoverlay-background.png new file mode 100644 index 00000000..5ac40464 --- /dev/null +++ b/Skins/Replicant/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d9bb0bf7dfbdd69b38d37089280bb48c3f4608f14b932fad6f6d1c158ad1c8 +size 553 diff --git a/Skins/Replicant/inputoverlay-key.png b/Skins/Replicant/inputoverlay-key.png new file mode 100644 index 00000000..644950c1 --- /dev/null +++ b/Skins/Replicant/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afdab90202565a1fad349b51036ca1a2890cf42c1c473502a1c374ed0d80fa0 +size 228 diff --git a/Skins/Replicant/key-confirm.ogg b/Skins/Replicant/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/key-delete.ogg b/Skins/Replicant/key-delete.ogg new file mode 100644 index 00000000..4a576e27 --- /dev/null +++ b/Skins/Replicant/key-delete.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b033f092c6e0922cf1ae0b34a17ed0f49d5f4b80db4b37e56a6ae12a7648c8b +size 6082 diff --git a/Skins/Replicant/key-movement.ogg b/Skins/Replicant/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/key-press-1.ogg b/Skins/Replicant/key-press-1.ogg new file mode 100644 index 00000000..27251299 --- /dev/null +++ b/Skins/Replicant/key-press-1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ae1683764d00caede3e071811dbc8750af3923f6e7b5ff75e57ce1edb3a24a +size 9719 diff --git a/Skins/Replicant/key-press-2.ogg b/Skins/Replicant/key-press-2.ogg new file mode 100644 index 00000000..27251299 --- /dev/null +++ b/Skins/Replicant/key-press-2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ae1683764d00caede3e071811dbc8750af3923f6e7b5ff75e57ce1edb3a24a +size 9719 diff --git a/Skins/Replicant/key-press-3.ogg b/Skins/Replicant/key-press-3.ogg new file mode 100644 index 00000000..27251299 --- /dev/null +++ b/Skins/Replicant/key-press-3.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ae1683764d00caede3e071811dbc8750af3923f6e7b5ff75e57ce1edb3a24a +size 9719 diff --git a/Skins/Replicant/key-press-4.ogg b/Skins/Replicant/key-press-4.ogg new file mode 100644 index 00000000..27251299 --- /dev/null +++ b/Skins/Replicant/key-press-4.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ae1683764d00caede3e071811dbc8750af3923f6e7b5ff75e57ce1edb3a24a +size 9719 diff --git a/Skins/Replicant/lighting.png b/Skins/Replicant/lighting.png new file mode 100644 index 00000000..8eb3be76 --- /dev/null +++ b/Skins/Replicant/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c3cab8e28625ca3587441fdde69fff068786ec2c2c999e6f9578753f7bc30b +size 11330 diff --git a/Skins/Replicant/match-confirm.ogg b/Skins/Replicant/match-confirm.ogg new file mode 100644 index 00000000..d4406536 --- /dev/null +++ b/Skins/Replicant/match-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f06394aca821ac47184653cbb59097b8c12135cf65ede75bdb6fc004355028 +size 9509 diff --git a/Skins/Replicant/match-start.ogg b/Skins/Replicant/match-start.ogg new file mode 100644 index 00000000..9b2f6d23 --- /dev/null +++ b/Skins/Replicant/match-start.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d526fb70637a1b0c43b5cf306ef46291dd1338752ebde284e58f9936cb60f28 +size 29860 diff --git a/Skins/Replicant/menu-back-0.png b/Skins/Replicant/menu-back-0.png new file mode 100644 index 00000000..36669c6c --- /dev/null +++ b/Skins/Replicant/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7521163d7b2ff68033e2fbf61e047dfe56f0b9e4d2e1cf288d6a4d1af8cd10c +size 5308 diff --git a/Skins/Replicant/menu-back-0@2x.png b/Skins/Replicant/menu-back-0@2x.png new file mode 100644 index 00000000..b15cd1fb --- /dev/null +++ b/Skins/Replicant/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5831eaef09c8a7b05eac699251781df20bfe8ca353119ed135a317a79f31ebf5 +size 9838 diff --git a/Skins/Replicant/menu-back-hover.ogg b/Skins/Replicant/menu-back-hover.ogg new file mode 100644 index 00000000..c2ab153e --- /dev/null +++ b/Skins/Replicant/menu-back-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a59f438bc644a95e3f4df3db8cc1fc3adfb8d865bf0f9fad5da510a786a8a4 +size 6181 diff --git a/Skins/Replicant/menu-back.png b/Skins/Replicant/menu-back.png new file mode 100644 index 00000000..300f7590 --- /dev/null +++ b/Skins/Replicant/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1598a9715f4d7d15c5ceb714468e1e6992f9f559f44de14b423d9b3b451a626 +size 110 diff --git a/Skins/Replicant/menu-background.jpg b/Skins/Replicant/menu-background.jpg new file mode 100644 index 00000000..6845aada --- /dev/null +++ b/Skins/Replicant/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b618b250147fe5249dd3a54fc1a8596da65a91fd16dd8d1bff4992ee941b0fbf +size 14226 diff --git a/Skins/Replicant/menu-button-background.png b/Skins/Replicant/menu-button-background.png new file mode 100644 index 00000000..826e86ac --- /dev/null +++ b/Skins/Replicant/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b56e99fe904ddbb66a8ac42634111b2a3c1c058eb494897ce39945794077e49 +size 557 diff --git a/Skins/Replicant/menu-direct-hover.ogg b/Skins/Replicant/menu-direct-hover.ogg new file mode 100644 index 00000000..1a3a046f --- /dev/null +++ b/Skins/Replicant/menu-direct-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e9a03f69eff3c8e845ad6573ca63237d677b2cbf3f74c341e684651adef8f6 +size 6167 diff --git a/Skins/Replicant/menu-edit-hover.ogg b/Skins/Replicant/menu-edit-hover.ogg new file mode 100644 index 00000000..1a3a046f --- /dev/null +++ b/Skins/Replicant/menu-edit-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e9a03f69eff3c8e845ad6573ca63237d677b2cbf3f74c341e684651adef8f6 +size 6167 diff --git a/Skins/Replicant/menu-exit-hover.ogg b/Skins/Replicant/menu-exit-hover.ogg new file mode 100644 index 00000000..c2ab153e --- /dev/null +++ b/Skins/Replicant/menu-exit-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a59f438bc644a95e3f4df3db8cc1fc3adfb8d865bf0f9fad5da510a786a8a4 +size 6181 diff --git a/Skins/Replicant/menu-freeplay-hover.ogg b/Skins/Replicant/menu-freeplay-hover.ogg new file mode 100644 index 00000000..c2ab153e --- /dev/null +++ b/Skins/Replicant/menu-freeplay-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a59f438bc644a95e3f4df3db8cc1fc3adfb8d865bf0f9fad5da510a786a8a4 +size 6181 diff --git a/Skins/Replicant/menu-multiplayer-hover.ogg b/Skins/Replicant/menu-multiplayer-hover.ogg new file mode 100644 index 00000000..1a3a046f --- /dev/null +++ b/Skins/Replicant/menu-multiplayer-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e9a03f69eff3c8e845ad6573ca63237d677b2cbf3f74c341e684651adef8f6 +size 6167 diff --git a/Skins/Replicant/menu-options-click.ogg b/Skins/Replicant/menu-options-click.ogg new file mode 100644 index 00000000..c6b8c4ff --- /dev/null +++ b/Skins/Replicant/menu-options-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f221154aed102a6a120139bd3a2d85d33f61df5bc12f10f84f94d1018ac996 +size 9474 diff --git a/Skins/Replicant/menu-options-hover.ogg b/Skins/Replicant/menu-options-hover.ogg new file mode 100644 index 00000000..c2ab153e --- /dev/null +++ b/Skins/Replicant/menu-options-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a59f438bc644a95e3f4df3db8cc1fc3adfb8d865bf0f9fad5da510a786a8a4 +size 6181 diff --git a/Skins/Replicant/menu-play-hover.ogg b/Skins/Replicant/menu-play-hover.ogg new file mode 100644 index 00000000..c2ab153e --- /dev/null +++ b/Skins/Replicant/menu-play-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a59f438bc644a95e3f4df3db8cc1fc3adfb8d865bf0f9fad5da510a786a8a4 +size 6181 diff --git a/Skins/Replicant/menuback.ogg b/Skins/Replicant/menuback.ogg new file mode 100644 index 00000000..591da1f8 --- /dev/null +++ b/Skins/Replicant/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12df4a4be85595ca83be22bdcec19131b619b59d2c29733fa2f4ff0ee415aa41 +size 15795 diff --git a/Skins/Replicant/menuclick.ogg b/Skins/Replicant/menuclick.ogg new file mode 100644 index 00000000..c2ab153e --- /dev/null +++ b/Skins/Replicant/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a59f438bc644a95e3f4df3db8cc1fc3adfb8d865bf0f9fad5da510a786a8a4 +size 6181 diff --git a/Skins/Replicant/menuhit.ogg b/Skins/Replicant/menuhit.ogg new file mode 100644 index 00000000..d4406536 --- /dev/null +++ b/Skins/Replicant/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f06394aca821ac47184653cbb59097b8c12135cf65ede75bdb6fc004355028 +size 9509 diff --git a/Skins/Replicant/metronomelow.ogg b/Skins/Replicant/metronomelow.ogg new file mode 100644 index 00000000..99531111 --- /dev/null +++ b/Skins/Replicant/metronomelow.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e559bea460e77edee18c02addd9a5dafd8617a95cd612de372160c5aba91b51 +size 3468 diff --git a/Skins/Replicant/mode-osu-med.png b/Skins/Replicant/mode-osu-med.png new file mode 100644 index 00000000..30c1aed4 --- /dev/null +++ b/Skins/Replicant/mode-osu-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da76d6719cc641f24b8a8a06b2761cfdc7b2fe57c319a885f307a3fa217e652 +size 175 diff --git a/Skins/Replicant/mode-osu-small.png b/Skins/Replicant/mode-osu-small.png new file mode 100644 index 00000000..b89bf641 --- /dev/null +++ b/Skins/Replicant/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b9fb5efa1294aa6a7e58d923f5c8815d71cfca5b1f91168b17b5f563dc64c5 +size 370 diff --git a/Skins/Replicant/mode-osu.png b/Skins/Replicant/mode-osu.png new file mode 100644 index 00000000..b89bf641 --- /dev/null +++ b/Skins/Replicant/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b9fb5efa1294aa6a7e58d923f5c8815d71cfca5b1f91168b17b5f563dc64c5 +size 370 diff --git a/Skins/Replicant/nightcore-clap.wav b/Skins/Replicant/nightcore-clap.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/Replicant/nightcore-clap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/Replicant/nightcore-finish.wav b/Skins/Replicant/nightcore-finish.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/Replicant/nightcore-finish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/Replicant/nightcore-hat.wav b/Skins/Replicant/nightcore-hat.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/Replicant/nightcore-hat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/Replicant/nightcore-kick.wav b/Skins/Replicant/nightcore-kick.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/Replicant/nightcore-kick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/Replicant/normal-hitclap.ogg b/Skins/Replicant/normal-hitclap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/normal-hitfinish.ogg b/Skins/Replicant/normal-hitfinish.ogg new file mode 100644 index 00000000..a44e5922 --- /dev/null +++ b/Skins/Replicant/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7923246734d3e789070e853ae1755f0b7c3c9dd80a1326e82eec46f61c120195 +size 5970 diff --git a/Skins/Replicant/normal-hitnormal.ogg b/Skins/Replicant/normal-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/Replicant/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/Replicant/normal-hitwhistle.ogg b/Skins/Replicant/normal-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/Replicant/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/Replicant/normal-sliderslide.ogg b/Skins/Replicant/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/normal-slidertick.ogg b/Skins/Replicant/normal-slidertick.ogg new file mode 100644 index 00000000..a3dd50db --- /dev/null +++ b/Skins/Replicant/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941388fc58f94fc256f34db8c0a72b726fc5de11285ca2d6cbbbc5e662da668f +size 5851 diff --git a/Skins/Replicant/normal-sliderwhistle.ogg b/Skins/Replicant/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/particle300.png b/Skins/Replicant/particle300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/particle300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/particle300@2x.png b/Skins/Replicant/particle300@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/particle300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/pause-back-click.ogg b/Skins/Replicant/pause-back-click.ogg new file mode 100644 index 00000000..d4406536 --- /dev/null +++ b/Skins/Replicant/pause-back-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f06394aca821ac47184653cbb59097b8c12135cf65ede75bdb6fc004355028 +size 9509 diff --git a/Skins/Replicant/pause-back-hover.ogg b/Skins/Replicant/pause-back-hover.ogg new file mode 100644 index 00000000..1a3a046f --- /dev/null +++ b/Skins/Replicant/pause-back-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e9a03f69eff3c8e845ad6573ca63237d677b2cbf3f74c341e684651adef8f6 +size 6167 diff --git a/Skins/Replicant/pause-back.png b/Skins/Replicant/pause-back.png new file mode 100644 index 00000000..fc41973a --- /dev/null +++ b/Skins/Replicant/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6fb9a2885d886a46672ae722b00eeb5de12e607b7c7655d82dec7314187ccb9 +size 1514 diff --git a/Skins/Replicant/pause-continue-click.ogg b/Skins/Replicant/pause-continue-click.ogg new file mode 100644 index 00000000..c6b8c4ff --- /dev/null +++ b/Skins/Replicant/pause-continue-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f221154aed102a6a120139bd3a2d85d33f61df5bc12f10f84f94d1018ac996 +size 9474 diff --git a/Skins/Replicant/pause-continue-hover.ogg b/Skins/Replicant/pause-continue-hover.ogg new file mode 100644 index 00000000..1a3a046f --- /dev/null +++ b/Skins/Replicant/pause-continue-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e9a03f69eff3c8e845ad6573ca63237d677b2cbf3f74c341e684651adef8f6 +size 6167 diff --git a/Skins/Replicant/pause-continue.png b/Skins/Replicant/pause-continue.png new file mode 100644 index 00000000..1ec21ef0 --- /dev/null +++ b/Skins/Replicant/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93471f5d1a0c5658103a7fce72bef51233d215753d889eab9fe5025e37c2e34 +size 2378 diff --git a/Skins/Replicant/pause-loop.mp3 b/Skins/Replicant/pause-loop.mp3 new file mode 100644 index 00000000..ae75952e --- /dev/null +++ b/Skins/Replicant/pause-loop.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2cb9b3cfcee75120bea5a4c74c3bbdf9e428589b7879b4797fd3c06f3c85ab +size 741 diff --git a/Skins/Replicant/pause-replay.png b/Skins/Replicant/pause-replay.png new file mode 100644 index 00000000..1e785971 --- /dev/null +++ b/Skins/Replicant/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd461b728bbe282ed741f990f2723cb68ef07323ce8804f14b9f1b4b01d2bd53 +size 2036 diff --git a/Skins/Replicant/pause-retry-click.ogg b/Skins/Replicant/pause-retry-click.ogg new file mode 100644 index 00000000..d4406536 --- /dev/null +++ b/Skins/Replicant/pause-retry-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f06394aca821ac47184653cbb59097b8c12135cf65ede75bdb6fc004355028 +size 9509 diff --git a/Skins/Replicant/pause-retry-hover.ogg b/Skins/Replicant/pause-retry-hover.ogg new file mode 100644 index 00000000..c2ab153e --- /dev/null +++ b/Skins/Replicant/pause-retry-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a59f438bc644a95e3f4df3db8cc1fc3adfb8d865bf0f9fad5da510a786a8a4 +size 6181 diff --git a/Skins/Replicant/pause-retry.png b/Skins/Replicant/pause-retry.png new file mode 100644 index 00000000..5f761c51 --- /dev/null +++ b/Skins/Replicant/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c799910618dd8afbd9b5b355f18dd954730f8681ea63d876ce41311b1d7937bc +size 2030 diff --git a/Skins/Replicant/play-skip.png b/Skins/Replicant/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/play-unranked.png b/Skins/Replicant/play-unranked.png new file mode 100644 index 00000000..b5d0d5da --- /dev/null +++ b/Skins/Replicant/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18a3287d1d7b16b2e5a68eb8ce42c2985cdbd98fd72f3dbb48962826383d835 +size 89 diff --git a/Skins/Replicant/play-unranked@2x.png b/Skins/Replicant/play-unranked@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/rank-forum.png b/Skins/Replicant/rank-forum.png new file mode 100644 index 00000000..554bd423 --- /dev/null +++ b/Skins/Replicant/rank-forum.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f44b4e27a89f4796d73a330928265b353314ba960dc2a8a4eec1fd9b458b2faa +size 885 diff --git a/Skins/Replicant/rank-forum@2x.png b/Skins/Replicant/rank-forum@2x.png new file mode 100644 index 00000000..66d102bc --- /dev/null +++ b/Skins/Replicant/rank-forum@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c1a60e827656aa0033f6e48f769901b5e3afa5151397df0a181e6a7632b9833 +size 1759 diff --git a/Skins/Replicant/ranking-a-small.png b/Skins/Replicant/ranking-a-small.png new file mode 100644 index 00000000..f3e4000a --- /dev/null +++ b/Skins/Replicant/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c22d0c3cc05656f255ce10d496a1157234a57fded05e9e78ab36e504d33c426 +size 1077 diff --git a/Skins/Replicant/ranking-a.png b/Skins/Replicant/ranking-a.png new file mode 100644 index 00000000..de1c3c65 --- /dev/null +++ b/Skins/Replicant/ranking-a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b79a6301775a2534a19fa7e5c6274d4770faa16f57ea4e085af9c66e62db7aab +size 426624 diff --git a/Skins/Replicant/ranking-a@2x.png b/Skins/Replicant/ranking-a@2x.png new file mode 100644 index 00000000..fcb51f8b --- /dev/null +++ b/Skins/Replicant/ranking-a@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a43c3abde55de55bb1c0ae7f0ca74dc74679fdbfce880510b99ca70d1b2bee1 +size 1149737 diff --git a/Skins/Replicant/ranking-accuracy.png b/Skins/Replicant/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/ranking-b-small.png b/Skins/Replicant/ranking-b-small.png new file mode 100644 index 00000000..5b7b1ff7 --- /dev/null +++ b/Skins/Replicant/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcaeabf6650b4ee391b7cdbcd97aa06033fccb2fdf874943d050963fe08e82d9 +size 1106 diff --git a/Skins/Replicant/ranking-b.png b/Skins/Replicant/ranking-b.png new file mode 100644 index 00000000..2fba8f70 --- /dev/null +++ b/Skins/Replicant/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff62bf0e014dfbec70c2ac6da45057bc818be42bb1e651e31fd80459e1cf66bb +size 426564 diff --git a/Skins/Replicant/ranking-b@2x.png b/Skins/Replicant/ranking-b@2x.png new file mode 100644 index 00000000..3f1d00d9 --- /dev/null +++ b/Skins/Replicant/ranking-b@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c94b97073b831cc96ce8014964c0da6711e737cdc649bdcadf1a673f9e9417 +size 1151760 diff --git a/Skins/Replicant/ranking-c-small.png b/Skins/Replicant/ranking-c-small.png new file mode 100644 index 00000000..e02cd8bb --- /dev/null +++ b/Skins/Replicant/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c97d0f4dccfb9d96729ff2af529ec11bb92ce9e838701bf1744fe67cabc30d1 +size 1257 diff --git a/Skins/Replicant/ranking-c.png b/Skins/Replicant/ranking-c.png new file mode 100644 index 00000000..54204f8a --- /dev/null +++ b/Skins/Replicant/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3622dc69b42214efac86408d3bc9a723f0c7fb66caea55c7f138289344d3b0a9 +size 425215 diff --git a/Skins/Replicant/ranking-c@2x.png b/Skins/Replicant/ranking-c@2x.png new file mode 100644 index 00000000..e0275541 --- /dev/null +++ b/Skins/Replicant/ranking-c@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd799e06a7db21a93e2b2efc8b176d8c9e58473ac08cbbade7ddcc2040906cc +size 1145320 diff --git a/Skins/Replicant/ranking-d-small.png b/Skins/Replicant/ranking-d-small.png new file mode 100644 index 00000000..4f12bec4 --- /dev/null +++ b/Skins/Replicant/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974d00ec3ede1b1adb4e883fd7904ee1b7442f2b0d7a27a0a8f2858b7e0b9c41 +size 1037 diff --git a/Skins/Replicant/ranking-d.png b/Skins/Replicant/ranking-d.png new file mode 100644 index 00000000..402109d2 --- /dev/null +++ b/Skins/Replicant/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21eb72e0cef0963fe1216c48953ec3a9e28d44e383316e6295d5586f2829447a +size 426591 diff --git a/Skins/Replicant/ranking-d@2x.png b/Skins/Replicant/ranking-d@2x.png new file mode 100644 index 00000000..e4330455 --- /dev/null +++ b/Skins/Replicant/ranking-d@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c128563f86098754e9976a8707ce7d7418cdf83bcccbe55aa3195cb1d000e95a +size 1149253 diff --git a/Skins/Replicant/ranking-graph.png b/Skins/Replicant/ranking-graph.png new file mode 100644 index 00000000..7451eef8 --- /dev/null +++ b/Skins/Replicant/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f71168c0b1ab5673af9872ad8860fbe7968eb444922b0952b773ce7a8e02bf7 +size 112 diff --git a/Skins/Replicant/ranking-maxcombo.png b/Skins/Replicant/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/ranking-panel.png b/Skins/Replicant/ranking-panel.png new file mode 100644 index 00000000..d3a3e033 --- /dev/null +++ b/Skins/Replicant/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a27a58077a1bedd7d44f1e4b30fd1efdb276386e051e5e69c399a42ac9c2cb +size 207569 diff --git a/Skins/Replicant/ranking-panel@2x.png b/Skins/Replicant/ranking-panel@2x.png new file mode 100644 index 00000000..cbf6558a --- /dev/null +++ b/Skins/Replicant/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96a57acf373ec17e51e460470c3576be768c803881daf98557a5ecd60f4945cc +size 661257 diff --git a/Skins/Replicant/ranking-perfect.png b/Skins/Replicant/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/ranking-replay.png b/Skins/Replicant/ranking-replay.png new file mode 100644 index 00000000..803b29c6 --- /dev/null +++ b/Skins/Replicant/ranking-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b86a5424276ff901826480ee6f066425ee81d1f8949774cd27d72dd11538c5fe +size 2323 diff --git a/Skins/Replicant/ranking-retry.png b/Skins/Replicant/ranking-retry.png new file mode 100644 index 00000000..81734fcb --- /dev/null +++ b/Skins/Replicant/ranking-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1ceb1f22a784a21e52104496f490cd95dd96e8cd0a5325718ce808fd994a2e +size 2849 diff --git a/Skins/Replicant/ranking-s-small.png b/Skins/Replicant/ranking-s-small.png new file mode 100644 index 00000000..e0976489 --- /dev/null +++ b/Skins/Replicant/ranking-s-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d235a7de2b5f3432eb603ee5f25ef955b93080aced015f6cc797c4581ab2ef +size 1468 diff --git a/Skins/Replicant/ranking-s.png b/Skins/Replicant/ranking-s.png new file mode 100644 index 00000000..be45d482 --- /dev/null +++ b/Skins/Replicant/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc06fb8112d67c6d916d016d0397b346b34252d533173f0167859a6052598617 +size 427061 diff --git a/Skins/Replicant/ranking-s@2x.png b/Skins/Replicant/ranking-s@2x.png new file mode 100644 index 00000000..4c57f311 --- /dev/null +++ b/Skins/Replicant/ranking-s@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b302e56360c1ab6c6b83810b3309cf0ed51588401ef7bb2933e4b83c3eba399b +size 1151146 diff --git a/Skins/Replicant/ranking-sh-small.png b/Skins/Replicant/ranking-sh-small.png new file mode 100644 index 00000000..07b55862 --- /dev/null +++ b/Skins/Replicant/ranking-sh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c42f4b50ddf201aeace284b199a81cd0fc4822659b94eb811bd1123f1e0735 +size 1432 diff --git a/Skins/Replicant/ranking-sh.png b/Skins/Replicant/ranking-sh.png new file mode 100644 index 00000000..be45d482 --- /dev/null +++ b/Skins/Replicant/ranking-sh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc06fb8112d67c6d916d016d0397b346b34252d533173f0167859a6052598617 +size 427061 diff --git a/Skins/Replicant/ranking-sh@2x.png b/Skins/Replicant/ranking-sh@2x.png new file mode 100644 index 00000000..4c57f311 --- /dev/null +++ b/Skins/Replicant/ranking-sh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b302e56360c1ab6c6b83810b3309cf0ed51588401ef7bb2933e4b83c3eba399b +size 1151146 diff --git a/Skins/Replicant/ranking-title.png b/Skins/Replicant/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/ranking-winner.png b/Skins/Replicant/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/ranking-x-small.png b/Skins/Replicant/ranking-x-small.png new file mode 100644 index 00000000..fc28fd44 --- /dev/null +++ b/Skins/Replicant/ranking-x-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f515dc2fcf7faf96d10e18b3afd60eed693fbc16a202d98d7fa394873a6ff8 +size 828 diff --git a/Skins/Replicant/ranking-x.png b/Skins/Replicant/ranking-x.png new file mode 100644 index 00000000..c7ba9bf0 --- /dev/null +++ b/Skins/Replicant/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f583a16e9ec5b79d2e088f7f6348ef32a207d243d5e19b514c4d0a0c692531 +size 426588 diff --git a/Skins/Replicant/ranking-x@2x.png b/Skins/Replicant/ranking-x@2x.png new file mode 100644 index 00000000..69f20dd8 --- /dev/null +++ b/Skins/Replicant/ranking-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df851144dc9a4a7ae0e67e927eaced2320b8f246c5dd7a16119a97f5905d23cd +size 1149259 diff --git a/Skins/Replicant/ranking-xh-small.png b/Skins/Replicant/ranking-xh-small.png new file mode 100644 index 00000000..cc5be9a7 --- /dev/null +++ b/Skins/Replicant/ranking-xh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95619e9592bd3ead3d85b9fbb01117ec138bd5e8a6dbea4cedef453bd321c1a2 +size 828 diff --git a/Skins/Replicant/ranking-xh.png b/Skins/Replicant/ranking-xh.png new file mode 100644 index 00000000..c7ba9bf0 --- /dev/null +++ b/Skins/Replicant/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f583a16e9ec5b79d2e088f7f6348ef32a207d243d5e19b514c4d0a0c692531 +size 426588 diff --git a/Skins/Replicant/ranking-xh@2x.png b/Skins/Replicant/ranking-xh@2x.png new file mode 100644 index 00000000..69f20dd8 --- /dev/null +++ b/Skins/Replicant/ranking-xh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df851144dc9a4a7ae0e67e927eaced2320b8f246c5dd7a16119a97f5905d23cd +size 1149259 diff --git a/Skins/Replicant/ready.png b/Skins/Replicant/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/readys.ogg b/Skins/Replicant/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/reversearrow.png b/Skins/Replicant/reversearrow.png new file mode 100644 index 00000000..57cb4fd7 --- /dev/null +++ b/Skins/Replicant/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1cb5e12d195337c0e81fafe5a6470467114979ece243715621c964109e3b8f +size 10239 diff --git a/Skins/Replicant/reversearrow@2x.png b/Skins/Replicant/reversearrow@2x.png new file mode 100644 index 00000000..31ec79b1 --- /dev/null +++ b/Skins/Replicant/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a4ec0052182642c4ad3adfb191773ba72f30f86bc121f9830b4b475b58cece +size 14783 diff --git a/Skins/Replicant/score-0.png b/Skins/Replicant/score-0.png new file mode 100644 index 00000000..f0a016f7 --- /dev/null +++ b/Skins/Replicant/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058c57cb2cc5a97b0aa185f97089fe637ea97d4a612bfefc160572a011681b05 +size 616 diff --git a/Skins/Replicant/score-1.png b/Skins/Replicant/score-1.png new file mode 100644 index 00000000..b3e23ebe --- /dev/null +++ b/Skins/Replicant/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be519dacc033b23845994b3cb7fd86b998dbbcfe7e5f0a75660e3e72e89e3f18 +size 395 diff --git a/Skins/Replicant/score-2.png b/Skins/Replicant/score-2.png new file mode 100644 index 00000000..0406f80c --- /dev/null +++ b/Skins/Replicant/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137e47d05f186fc5642d38abd8d705e19e799872503fe167ff841317cf443eab +size 529 diff --git a/Skins/Replicant/score-3.png b/Skins/Replicant/score-3.png new file mode 100644 index 00000000..ea0f9d6b --- /dev/null +++ b/Skins/Replicant/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dce5e1b384d2a5f7631911c405a5c88bb15b639c620e6592668c7f838397b2 +size 562 diff --git a/Skins/Replicant/score-4.png b/Skins/Replicant/score-4.png new file mode 100644 index 00000000..7159f3c0 --- /dev/null +++ b/Skins/Replicant/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd20bf15d03e50d5433360d24ae96a803496c42fa19ccbae64e49a787e4ed5be +size 522 diff --git a/Skins/Replicant/score-5.png b/Skins/Replicant/score-5.png new file mode 100644 index 00000000..3bcb090e --- /dev/null +++ b/Skins/Replicant/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4cd5abbacffd2e380f3e5c63312068a15e8dde99015086b406b0d7a488286f1 +size 544 diff --git a/Skins/Replicant/score-6.png b/Skins/Replicant/score-6.png new file mode 100644 index 00000000..33e97a3a --- /dev/null +++ b/Skins/Replicant/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813bbce1b2dba181ae5afec5f187b597efe1eae193fdb12a66e2dd3f660af4c7 +size 619 diff --git a/Skins/Replicant/score-7.png b/Skins/Replicant/score-7.png new file mode 100644 index 00000000..5eb8b798 --- /dev/null +++ b/Skins/Replicant/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e41167a3a5108c636e719d48f142405ad07dd4a2249fbbfa888afca6d29951 +size 456 diff --git a/Skins/Replicant/score-8.png b/Skins/Replicant/score-8.png new file mode 100644 index 00000000..d821d7a2 --- /dev/null +++ b/Skins/Replicant/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30e962c66b54619c8c084adc9939834292c4afb81b2d53e891bbc8b8b8c9872 +size 657 diff --git a/Skins/Replicant/score-9.png b/Skins/Replicant/score-9.png new file mode 100644 index 00000000..1a7f5f16 --- /dev/null +++ b/Skins/Replicant/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccade425896cf55f46285c2e03e19ebb009af1582372e208ddbc902fbfab2ed3 +size 650 diff --git a/Skins/Replicant/score-comma.png b/Skins/Replicant/score-comma.png new file mode 100644 index 00000000..30b763fe --- /dev/null +++ b/Skins/Replicant/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8dec7d84e04867a0ff34f0244fba2b7790338bf860f863c78320a3b011738ec +size 243 diff --git a/Skins/Replicant/score-dot.png b/Skins/Replicant/score-dot.png new file mode 100644 index 00000000..1e97e438 --- /dev/null +++ b/Skins/Replicant/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22833de0ccb8dc1ae8248cade81bd8c6f66fa3482ebebb80fc72598e76b1fc8b +size 195 diff --git a/Skins/Replicant/score-percent.png b/Skins/Replicant/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/score-x.png b/Skins/Replicant/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/scorebar-bg.png b/Skins/Replicant/scorebar-bg.png new file mode 100644 index 00000000..6bab5a2f --- /dev/null +++ b/Skins/Replicant/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5b7739e590f8d8b873682b8122936cc0d958af35ed108f0644ca6d075374b0 +size 66756 diff --git a/Skins/Replicant/scorebar-bg@2x.png b/Skins/Replicant/scorebar-bg@2x.png new file mode 100644 index 00000000..190203dc --- /dev/null +++ b/Skins/Replicant/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8330b63371d41d975ddb1e27d138c1d7f2f88f0e0bfdd6536164d52010888a5f +size 167218 diff --git a/Skins/Replicant/scorebar-colour.png b/Skins/Replicant/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/scorebar-marker.png b/Skins/Replicant/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/scoreentry-comma.png b/Skins/Replicant/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/Replicant/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/Replicant/scoreentry-dot.png b/Skins/Replicant/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/Replicant/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/Replicant/scoreentry-percent.png b/Skins/Replicant/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/scoreentry-x.png b/Skins/Replicant/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/section-fail.png b/Skins/Replicant/section-fail.png new file mode 100644 index 00000000..ed195bee --- /dev/null +++ b/Skins/Replicant/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cde9b742eeb8e988652e9382acecd5a95f8506ae6ffb9b41f4e3b32a1b36918c +size 4841 diff --git a/Skins/Replicant/section-fail@2x.png b/Skins/Replicant/section-fail@2x.png new file mode 100644 index 00000000..46f5365f --- /dev/null +++ b/Skins/Replicant/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f4f3ff8440029e54d95c75d88b6754bf25845a6baf287365be6b9bcf2fc001 +size 8792 diff --git a/Skins/Replicant/section-pass.png b/Skins/Replicant/section-pass.png new file mode 100644 index 00000000..270143c4 --- /dev/null +++ b/Skins/Replicant/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f10b86ff3619d8da2ed516ad8f1e3604938e0477b1e81c1df8c5f7af3708fb2e +size 6082 diff --git a/Skins/Replicant/section-pass@2x.png b/Skins/Replicant/section-pass@2x.png new file mode 100644 index 00000000..5a72461c --- /dev/null +++ b/Skins/Replicant/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902e13faa19f6eb09b1381ea8e8e06bdfdb13a2da5419b71ac30483ef8e76f91 +size 11342 diff --git a/Skins/Replicant/sectionfail.ogg b/Skins/Replicant/sectionfail.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/Replicant/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/Replicant/sectionpass.ogg b/Skins/Replicant/sectionpass.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/Replicant/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/Replicant/seeya.ogg b/Skins/Replicant/seeya.ogg new file mode 100644 index 00000000..22707940 --- /dev/null +++ b/Skins/Replicant/seeya.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23e402e316d89028f3edc8be25548a675a9413e0130b8c97504fae5c9482f1b +size 5880 diff --git a/Skins/Replicant/select-difficulty.ogg b/Skins/Replicant/select-difficulty.ogg new file mode 100644 index 00000000..e18f3381 --- /dev/null +++ b/Skins/Replicant/select-difficulty.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca53042412bfc0a47189ece5741d3ffafffd89e6ac62915c54de1844e87467b8 +size 3999 diff --git a/Skins/Replicant/select-expand.ogg b/Skins/Replicant/select-expand.ogg new file mode 100644 index 00000000..1d3bf482 --- /dev/null +++ b/Skins/Replicant/select-expand.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a45f53babb269f150dbff7469acd050519c9e2e387a3530d9ce7a31bf68a5cb +size 3999 diff --git a/Skins/Replicant/selection-mod-autoplay.png b/Skins/Replicant/selection-mod-autoplay.png new file mode 100644 index 00000000..17ba1822 --- /dev/null +++ b/Skins/Replicant/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce27875e07d591fd137a7b52c7e77832f58fdbec0ea1d2235caf33f955e957f +size 867 diff --git a/Skins/Replicant/selection-mod-cinema.png b/Skins/Replicant/selection-mod-cinema.png new file mode 100644 index 00000000..87c32946 --- /dev/null +++ b/Skins/Replicant/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052f641862a0dda192468138075411e8c7dc8db36f72f930d49edd727ee13733 +size 970 diff --git a/Skins/Replicant/selection-mod-doubletime.png b/Skins/Replicant/selection-mod-doubletime.png new file mode 100644 index 00000000..8dc56cd9 --- /dev/null +++ b/Skins/Replicant/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fcd697a8581306eaf146b6799e265895637111402fcce5156aa04c9d9e0c8e6 +size 797 diff --git a/Skins/Replicant/selection-mod-easy.png b/Skins/Replicant/selection-mod-easy.png new file mode 100644 index 00000000..ab1f6ac6 --- /dev/null +++ b/Skins/Replicant/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e22e2d181ec87f991c21a7a2486aa34a6f92ffbe683a5f730469c81ce7ee54f4 +size 923 diff --git a/Skins/Replicant/selection-mod-flashlight.png b/Skins/Replicant/selection-mod-flashlight.png new file mode 100644 index 00000000..b4dd62ba --- /dev/null +++ b/Skins/Replicant/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43056ecf5a74122ef20110ddda713a362eaaf02861c6b6823f12ba07a4520b2 +size 538 diff --git a/Skins/Replicant/selection-mod-halftime.png b/Skins/Replicant/selection-mod-halftime.png new file mode 100644 index 00000000..093f854f --- /dev/null +++ b/Skins/Replicant/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8f32573484df309c9f2699226119aaa894adeb532f650b45c99e0ecca76303 +size 741 diff --git a/Skins/Replicant/selection-mod-hardrock.png b/Skins/Replicant/selection-mod-hardrock.png new file mode 100644 index 00000000..16addd73 --- /dev/null +++ b/Skins/Replicant/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d912f9a77689cebc677fbf08f4e92dfe7764aa1621fe3dc151d650c625b496d +size 688 diff --git a/Skins/Replicant/selection-mod-hidden.png b/Skins/Replicant/selection-mod-hidden.png new file mode 100644 index 00000000..c4fb2e8c --- /dev/null +++ b/Skins/Replicant/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656084ca66d48a11c6b319e02e5f4cb5d3185332f06e16f074582913487e744f +size 802 diff --git a/Skins/Replicant/selection-mod-nightcore.png b/Skins/Replicant/selection-mod-nightcore.png new file mode 100644 index 00000000..4adda641 --- /dev/null +++ b/Skins/Replicant/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e2ae20569556a3eb517e55d73041cd6b2cd5324869289d48c1c835a75ad3b1 +size 797 diff --git a/Skins/Replicant/selection-mod-nofail.png b/Skins/Replicant/selection-mod-nofail.png new file mode 100644 index 00000000..59712049 --- /dev/null +++ b/Skins/Replicant/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ba32dfb048035c12590706c9bce4b1fd4c83baf04ac088beac799cd627f74d +size 702 diff --git a/Skins/Replicant/selection-mod-perfect.png b/Skins/Replicant/selection-mod-perfect.png new file mode 100644 index 00000000..8fb76399 --- /dev/null +++ b/Skins/Replicant/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531f5f74c9087a0ddf622f68774c3e062c50aa138aa7668fac24601a25fdd3c0 +size 784 diff --git a/Skins/Replicant/selection-mod-relax.png b/Skins/Replicant/selection-mod-relax.png new file mode 100644 index 00000000..e3b8d074 --- /dev/null +++ b/Skins/Replicant/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2847a5a949804f3fd501415dc3f1e6a460733767d2448df069d0a8e6308f16ec +size 535 diff --git a/Skins/Replicant/selection-mod-relax2.png b/Skins/Replicant/selection-mod-relax2.png new file mode 100644 index 00000000..90c6f721 --- /dev/null +++ b/Skins/Replicant/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:462c6a0d7acf7cb72ecf6501b62915fab158565d1e98eb70a8dc007281464849 +size 935 diff --git a/Skins/Replicant/selection-mod-scorev2.png b/Skins/Replicant/selection-mod-scorev2.png new file mode 100644 index 00000000..b47df7a5 --- /dev/null +++ b/Skins/Replicant/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b33c617b0a9978451a61f09e192571d65ce0a95c7c6f58dcf9a60381b4638a48 +size 913 diff --git a/Skins/Replicant/selection-mod-spunout.png b/Skins/Replicant/selection-mod-spunout.png new file mode 100644 index 00000000..dbb642c9 --- /dev/null +++ b/Skins/Replicant/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fe2ae8fe69cf5ebeb0db54835900ece7aa96a79d1f2c03188f4384cb52312c4 +size 987 diff --git a/Skins/Replicant/selection-mod-suddendeath.png b/Skins/Replicant/selection-mod-suddendeath.png new file mode 100644 index 00000000..01579ab7 --- /dev/null +++ b/Skins/Replicant/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e517799ff920b2713ef756eb71fe876dd8f8da56e2a65c814b5df6126ac4d6b8 +size 917 diff --git a/Skins/Replicant/selection-mod-target.png b/Skins/Replicant/selection-mod-target.png new file mode 100644 index 00000000..f6c5a523 --- /dev/null +++ b/Skins/Replicant/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05101a51552213a853c698f786c4d38db0579eb2cec44ad8f2622ec72f174274 +size 812 diff --git a/Skins/Replicant/selection-mode-over.png b/Skins/Replicant/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/selection-mode.png b/Skins/Replicant/selection-mode.png new file mode 100644 index 00000000..c7b23e63 --- /dev/null +++ b/Skins/Replicant/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a878bfabfc54b6377f8b96195f2c9b1c1125d82a72bd1ba21255517b699973ea +size 144712 diff --git a/Skins/Replicant/selection-mode@2x.png b/Skins/Replicant/selection-mode@2x.png new file mode 100644 index 00000000..b1d24ef9 --- /dev/null +++ b/Skins/Replicant/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3663630e94193a95c859ef821d7a4eb644f584cfbbdfcf4d184c44c046ff1956 +size 391800 diff --git a/Skins/Replicant/selection-mods-over.png b/Skins/Replicant/selection-mods-over.png new file mode 100644 index 00000000..26985f73 --- /dev/null +++ b/Skins/Replicant/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba111511a7f80115662000cea15ee5afe6f6604eeab74de594dd40bea695db85 +size 155 diff --git a/Skins/Replicant/selection-mods.png b/Skins/Replicant/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/selection-options-over.png b/Skins/Replicant/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/selection-options.png b/Skins/Replicant/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/selection-random-over.png b/Skins/Replicant/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/selection-random.png b/Skins/Replicant/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/selection-tab.png b/Skins/Replicant/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/Replicant/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/Replicant/shutter.ogg b/Skins/Replicant/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/skin.ini b/Skins/Replicant/skin.ini new file mode 100644 index 00000000..557d31cc --- /dev/null +++ b/Skins/Replicant/skin.ini @@ -0,0 +1,38 @@ +// Ini parser v2025.5.11 // https://osuck.link/skin.ini + + +[General] + Name: Replicant + Author: altruism + Version: latest + + CursorCentre: 1 + CursorExpand: 0 + CursorRotate: 0 + + AllowSliderBallTint: 0 + SliderBallFlip: 0 + + SpinnerFadePlayfield: 1 + + +[Colours] + Combo1: 207, 219, 255 + + InputOverlayText: 000,000,000 + + SliderBorder: 85,85,85 + SliderTrackOverride: 0,0,0 + + SongSelectActiveText: 240,240,240 + SongSelectInactiveText: 178,178,178 + + +[Fonts] + HitCircleOverlap: 19 + + ScorePrefix: score + ScoreOverlap: 9 + + ComboPrefix: combo + ComboOverlap: 6 diff --git a/Skins/Replicant/sliderb.png b/Skins/Replicant/sliderb.png new file mode 100644 index 00000000..c4807191 --- /dev/null +++ b/Skins/Replicant/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991fbd871dd5c2fc3749006f779cf35d3e71dd5bf1cf00482e1acffac55aace7 +size 2672 diff --git a/Skins/Replicant/sliderb@2x.png b/Skins/Replicant/sliderb@2x.png new file mode 100644 index 00000000..7d23c734 --- /dev/null +++ b/Skins/Replicant/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d628b7a451a184ceea89e7c8854e410d3f84daad6e71ef3436c1c9cb494adf4d +size 4743 diff --git a/Skins/Replicant/sliderendcircle.png b/Skins/Replicant/sliderendcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/sliderendmiss.png b/Skins/Replicant/sliderendmiss.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/Replicant/sliderendmiss.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/Replicant/sliderfollowcircle.png b/Skins/Replicant/sliderfollowcircle.png new file mode 100644 index 00000000..780651a6 --- /dev/null +++ b/Skins/Replicant/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b65a9f82f1b87ea9a3b8549120936cd70fb402fc04428fa7ab0171d414b38f +size 11401 diff --git a/Skins/Replicant/sliderfollowcircle@2x.png b/Skins/Replicant/sliderfollowcircle@2x.png new file mode 100644 index 00000000..678be6aa --- /dev/null +++ b/Skins/Replicant/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfc14d30e58b2052367cd88e5e418997b760273ebc4806c6a4beeb9de13dc78 +size 24883 diff --git a/Skins/Replicant/sliderpoint10.png b/Skins/Replicant/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Replicant/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Replicant/sliderpoint30.png b/Skins/Replicant/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/Replicant/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/Replicant/sliderscorepoint.png b/Skins/Replicant/sliderscorepoint.png new file mode 100644 index 00000000..b49f1b4b --- /dev/null +++ b/Skins/Replicant/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1948780ebfacf84ec9927534da49acec7e677b3b40780a2b29ffb3351f9820c1 +size 212 diff --git a/Skins/Replicant/soft-hitclap.ogg b/Skins/Replicant/soft-hitclap.ogg new file mode 100644 index 00000000..4cd5d36d --- /dev/null +++ b/Skins/Replicant/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b360cdd81df75dc2461a7533b816bf20fb105859d1da420f2108d2df5af7bce +size 4742 diff --git a/Skins/Replicant/soft-hitfinish.ogg b/Skins/Replicant/soft-hitfinish.ogg new file mode 100644 index 00000000..115a6027 --- /dev/null +++ b/Skins/Replicant/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850ed6f0b7aa2a2207a7f2072c204f1f4d8ecc8422a0be1af7c1697dd1a09927 +size 5763 diff --git a/Skins/Replicant/soft-hitnormal.ogg b/Skins/Replicant/soft-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/Replicant/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/Replicant/soft-hitwhistle.ogg b/Skins/Replicant/soft-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/Replicant/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/Replicant/soft-sliderslide.ogg b/Skins/Replicant/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/soft-slidertick.ogg b/Skins/Replicant/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/soft-sliderwhistle.ogg b/Skins/Replicant/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/songselect-bottom.png b/Skins/Replicant/songselect-bottom.png new file mode 100644 index 00000000..3ba118b6 --- /dev/null +++ b/Skins/Replicant/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0c0bd47be6e96829d8f38fd92e207d8c47b2890501eb097f863020f300c5a7 +size 29429 diff --git a/Skins/Replicant/songselect-bottom@2x.png b/Skins/Replicant/songselect-bottom@2x.png new file mode 100644 index 00000000..aa8bc380 --- /dev/null +++ b/Skins/Replicant/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5dee1951c48ed3ba1127f13cd454f359873a79c2ac23b78ea39b1b2e79025a +size 59447 diff --git a/Skins/Replicant/songselect-top.png b/Skins/Replicant/songselect-top.png new file mode 100644 index 00000000..c3456bcd --- /dev/null +++ b/Skins/Replicant/songselect-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f9653dd289afd8f3380a044b3f21268533aa40249323fa54ea63c1af02ab9c +size 30927 diff --git a/Skins/Replicant/songselect-top@2x.png b/Skins/Replicant/songselect-top@2x.png new file mode 100644 index 00000000..7c3b47f6 --- /dev/null +++ b/Skins/Replicant/songselect-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18e0c158480a7cffbe1f407eb00d34831a971fd6671fa7ce15fe0200b1123f9b +size 74783 diff --git a/Skins/Replicant/spinner-approachcircle.png b/Skins/Replicant/spinner-approachcircle.png new file mode 100644 index 00000000..0fdf8b7d --- /dev/null +++ b/Skins/Replicant/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23eaf3d5d88f3166426adaf62eb150e31ac6dadf377fd45c6720cbfc130dff3e +size 135 diff --git a/Skins/Replicant/spinner-approachcircle@2x.png b/Skins/Replicant/spinner-approachcircle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/Replicant/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/Replicant/spinner-background.png b/Skins/Replicant/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/spinner-circle.png b/Skins/Replicant/spinner-circle.png new file mode 100644 index 00000000..98e48698 --- /dev/null +++ b/Skins/Replicant/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea175488f72f4d2e76e09f7b2c2101a016cd9f64120c0ad53b1e9903530ae47a +size 18930 diff --git a/Skins/Replicant/spinner-circle@2x.png b/Skins/Replicant/spinner-circle@2x.png new file mode 100644 index 00000000..54d3cd9e --- /dev/null +++ b/Skins/Replicant/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640ba65c88ffc6bfc12019de5b471ec4c2479521fa73ed95ab0ff9a1f6fd23d2 +size 40758 diff --git a/Skins/Replicant/spinner-clear.png b/Skins/Replicant/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/spinner-osu.png b/Skins/Replicant/spinner-osu.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/Replicant/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/Replicant/spinner-rpm.png b/Skins/Replicant/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/spinner-spin.png b/Skins/Replicant/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/spinner-top.png b/Skins/Replicant/spinner-top.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/Replicant/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/Replicant/spinnerbonus.ogg b/Skins/Replicant/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/spinnerspin.ogg b/Skins/Replicant/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/Replicant/star.png b/Skins/Replicant/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/Replicant/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/Replicant/star2.png b/Skins/Replicant/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/Replicant/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/Replicant/welcome.ogg b/Skins/Replicant/welcome.ogg new file mode 100644 index 00000000..c6561c92 --- /dev/null +++ b/Skins/Replicant/welcome.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a1f72aa42abce0a41d70697133b489ea9083b6355d0dacae3556ae9459aca6 +size 5880 diff --git a/Skins/Replicant/whoosh.ogg b/Skins/Replicant/whoosh.ogg new file mode 100644 index 00000000..75f1775b --- /dev/null +++ b/Skins/Replicant/whoosh.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c710250aac797963901cd9a4b736af21ca7076a4ba92a4b31b36df8a155eeb8 +size 3999 diff --git a/Skins/ZachTV Pink/Click-Short.wav b/Skins/ZachTV Pink/Click-Short.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/Click-Short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/MenuHit.wav b/Skins/ZachTV Pink/MenuHit.wav new file mode 100644 index 00000000..64e992db --- /dev/null +++ b/Skins/ZachTV Pink/MenuHit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f332a3b7c005850253a552fd55123d3df8691bf506f7867e189db2f8dc6f06f5 +size 10220 diff --git a/Skins/ZachTV Pink/Nomal-hitfinish.wav b/Skins/ZachTV Pink/Nomal-hitfinish.wav new file mode 100644 index 00000000..a38d3f77 --- /dev/null +++ b/Skins/ZachTV Pink/Nomal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120b6f23adbc87b90ed547b98e72e89a124896daa6e4c01b4d450c1d873f808a +size 707234 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/Click-Short.wav b/Skins/ZachTV Pink/ZachTV fixedexport/Click-Short.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/Click-Short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/MenuHit.wav b/Skins/ZachTV Pink/ZachTV fixedexport/MenuHit.wav new file mode 100644 index 00000000..64e992db --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/MenuHit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f332a3b7c005850253a552fd55123d3df8691bf506f7867e189db2f8dc6f06f5 +size 10220 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/approachcircle.png b/Skins/ZachTV Pink/ZachTV fixedexport/approachcircle.png new file mode 100644 index 00000000..8b27020f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9746f7c241952ba2bb7452bca84cb7712a318aa1ddf44013911bb59b712852b5 +size 15596 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/button-left.png b/Skins/ZachTV Pink/ZachTV fixedexport/button-left.png new file mode 100644 index 00000000..73be1774 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06183e55dc221fbcf86ebcac8aad109a2fa4b4c6b5a4807cdf93d204c93a71a +size 3086 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/button-left@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/button-left@2x.png new file mode 100644 index 00000000..7d415bb2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/button-left@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34af139675376b9a787bbc38738bfb18a7163ee40f9e9e65f4c3a6b5d324e721 +size 3007 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/button-middle.png b/Skins/ZachTV Pink/ZachTV fixedexport/button-middle.png new file mode 100644 index 00000000..a4b7d150 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6b70cf361cf25ce5b71b32c37cddfdfc80a94e0986b3d038eb624b92178b6a +size 3138 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/button-middle@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/button-middle@2x.png new file mode 100644 index 00000000..0b72cce4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/button-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421fe6083dd78ab60259100e2cfb36baf7f058c620e1af4c43bb8057887dd7ea +size 3433 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/button-right.png b/Skins/ZachTV Pink/ZachTV fixedexport/button-right.png new file mode 100644 index 00000000..bc386783 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c5ff7abb8aa111361edb748aa62b874d13ce13d716100ec4cfb20bec7c3288 +size 3098 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/button-right@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/button-right@2x.png new file mode 100644 index 00000000..f22adbcc --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/button-right@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294d8d1036e83d92777e7e893a16e9a9bfb23eeaa8939cd57bbb49d8a99418e6 +size 3037 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/check-off.wav b/Skins/ZachTV Pink/ZachTV fixedexport/check-off.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/check-off.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/check-on.wav b/Skins/ZachTV Pink/ZachTV fixedexport/check-on.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/check-on.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/click-close.wav b/Skins/ZachTV Pink/ZachTV fixedexport/click-close.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/click-close.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/click-short-confirm.wav b/Skins/ZachTV Pink/ZachTV fixedexport/click-short-confirm.wav new file mode 100644 index 00000000..9655d8c0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/click-short-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91f65a23362826bc277cb97f7fe6cc6ecc3030d725612d0d4da7e40a06ea392 +size 81624 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/count.wav b/Skins/ZachTV Pink/ZachTV fixedexport/count.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/count.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/count1.png b/Skins/ZachTV Pink/ZachTV fixedexport/count1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/count1s.wav b/Skins/ZachTV Pink/ZachTV fixedexport/count1s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/count2.png b/Skins/ZachTV Pink/ZachTV fixedexport/count2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/count2s.wav b/Skins/ZachTV Pink/ZachTV fixedexport/count2s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/count3.png b/Skins/ZachTV Pink/ZachTV fixedexport/count3.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/count3s.wav b/Skins/ZachTV Pink/ZachTV fixedexport/count3s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/cursor-smoke.png b/Skins/ZachTV Pink/ZachTV fixedexport/cursor-smoke.png new file mode 100644 index 00000000..260cf346 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3926926077650c7374cf55637f3bc0fbc0a40cc011a520ca42d5f4707ae6c6f2 +size 1180 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/cursor.png b/Skins/ZachTV Pink/ZachTV fixedexport/cursor.png new file mode 100644 index 00000000..adb0435a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f972e4a790daa7dcb636236aa1ded2d3632e04e24ae760a26f7dcd1ab32520a0 +size 3901 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/cursor2 - Copy.png b/Skins/ZachTV Pink/ZachTV fixedexport/cursor2 - Copy.png new file mode 100644 index 00000000..d846e8cd --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/cursor2 - Copy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2de11ba325a35d07d01edfe4a91118747c4855417081b50f0a2e5acb43cee6b +size 4337 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/cursor3.png b/Skins/ZachTV Pink/ZachTV fixedexport/cursor3.png new file mode 100644 index 00000000..d846e8cd --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/cursor3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2de11ba325a35d07d01edfe4a91118747c4855417081b50f0a2e5acb43cee6b +size 4337 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/cursor@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/cursor@2x.png new file mode 100644 index 00000000..c2885d21 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77331b2c98963a3c29fb7823b2248fcb8fdff1f8f35084606035a961456ca1b2 +size 16304 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/cursormiddle.png b/Skins/ZachTV Pink/ZachTV fixedexport/cursormiddle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/cursormiddle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/cursortrail.png b/Skins/ZachTV Pink/ZachTV fixedexport/cursortrail.png new file mode 100644 index 00000000..9939704e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:749b5c22ff7f2ef985af2394b65a97ad5cc8b7f815eaf625c8d3b3c737106659 +size 313 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/cursortrail2.png b/Skins/ZachTV Pink/ZachTV fixedexport/cursortrail2.png new file mode 100644 index 00000000..e5f3e23f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/cursortrail2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf92aeb64af70d57efd1eb0c32a624aa47fce8a3290f122eb851e1b6d9e38ec +size 4386 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-0.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-0.png new file mode 100644 index 00000000..6a9e88d0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5030d841f9a998cea7aa6ec227b147361099101bb0067339276af5039dac2952 +size 1560 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-0@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-0@2x.png new file mode 100644 index 00000000..45e09a31 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd99af2b22065c5dc7891edff77302faf905decda14a2414c66a4204ec00ae7 +size 24160 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-1.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-1.png new file mode 100644 index 00000000..391dfe5f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d55ab66c26d2ab8c6e62ad52857ea7667bab032a35aa78b8e7b4bc704e9db11 +size 885 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-1@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-1@2x.png new file mode 100644 index 00000000..4953e934 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763761fa1f5ba7786c0f7479a38b07666de55d82ece6cbc01e49ca951f9e4787 +size 22184 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-2.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-2.png new file mode 100644 index 00000000..c953d8e7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf9476ab60d5371b39230c0748571f5af322d7886746205dc858aa57dce092b2 +size 1462 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-2@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-2@2x.png new file mode 100644 index 00000000..ff1d4d67 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f7507da7ba1c5a43629d2caa6d25178b90d437d4a8eceb457848f4f92f0d40 +size 23824 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-3.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-3.png new file mode 100644 index 00000000..3a003584 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1fba5908677a501240b1c84c394aa491565c91492a898a8fe14cb1ca0abe2a4 +size 1548 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-3@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-3@2x.png new file mode 100644 index 00000000..aee367ad --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c38c0bceb7a2a070a55ec3df5d3788884ce949b80584fc58101502b4537caaf9 +size 24236 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-4.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-4.png new file mode 100644 index 00000000..f0bae9e0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced7c637181a199bf83f3239d3612d41806dc42d1a32370e810ef71cd92eee22 +size 1174 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-4@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-4@2x.png new file mode 100644 index 00000000..9bd4444d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d84e9d03730d0f5728ce8d18dc804e96665625c755e6ce67ace7afe95e3c4193 +size 22735 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-5.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-5.png new file mode 100644 index 00000000..b2d01130 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5abed6b16c3da47de93e5ed132a17f47e9b3a71ff136a4dea52df7f054c7442 +size 1422 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-5@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-5@2x.png new file mode 100644 index 00000000..ed29a905 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41bb7a9a23feada2ab055cc2fab2508326fa54f7e6f31b0dbd0dc2383424e90f +size 23512 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-6.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-6.png new file mode 100644 index 00000000..e0a21a83 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f8188cff746aae0be1faf07a31618767dc333924cdbb9bd3162b6e5addea73 +size 1706 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-6@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-6@2x.png new file mode 100644 index 00000000..c283f2dd --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0809083e4115c7a9f02b6ed1b770c9e33300bc7e9b89415fe6bf2166f99177 +size 24546 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-7.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-7.png new file mode 100644 index 00000000..2465f937 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb41a7e3cabf5ec59551b5ba434c3055e238972564fdf44ed7d899d419e9117 +size 1439 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-7@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-7@2x.png new file mode 100644 index 00000000..28bdca7e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736eb2b79bc0669d29040901cb280804b329768e180a53f0372146365d3a952f +size 23800 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-8.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-8.png new file mode 100644 index 00000000..f787a9f4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9856942fc92d1d97cc489bb44492fbc4ee35cc766b4ef35816fbf49013b5654d +size 2068 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-8@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-8@2x.png new file mode 100644 index 00000000..67fe1efd --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0e459232fe314e2ec6448a5a965cdd068881a3eb5b0b8fac790ceaa49a0316 +size 26019 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-9.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-9.png new file mode 100644 index 00000000..0ce4cfe8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08fe675694b73e66d5689a0d79991bf25d5ff1e266c499f23041d448441d54a5 +size 1501 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/default-9@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/default-9@2x.png new file mode 100644 index 00000000..3494ba2e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d8db9ea5d9bdee7b7843f69b019e9bab321d194760986bb525d261e0c4c838 +size 23867 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitclap.wav b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitclap2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitfinish.wav b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitnormal.wav b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitnormalh.wav b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitwhistle.wav b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/drum-sliderslide.wav b/Skins/ZachTV Pink/ZachTV fixedexport/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/drum-slidertick.wav b/Skins/ZachTV Pink/ZachTV fixedexport/drum-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/drum-sliderwhistle.wav b/Skins/ZachTV Pink/ZachTV fixedexport/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/fail-background.png b/Skins/ZachTV Pink/ZachTV fixedexport/fail-background.png new file mode 100644 index 00000000..eb3a3c0e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294ba08743a564d81215c159ffd19c97b6ee36c362a513e51338c2e48969e6fe +size 763888 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/fail-background@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/fail-background@2x.png new file mode 100644 index 00000000..09e700a1 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/fail-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8970dc4d0a0fedf3de553d5457eb558b8d399ad732fc932262e3f1e73ab0eba +size 3413040 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-0.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-1.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-11.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-12.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-13.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-14.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-15.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-16.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-17.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-18.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-19.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-2.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-20.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-21.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-22.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-23.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-3.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-4.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-5.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-6.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-7.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-8.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-9.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/followpoint.png b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/go.png b/Skins/ZachTV Pink/ZachTV fixedexport/go.png new file mode 100644 index 00000000..f0824c9f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9dd5ffe3a70db26c86ee8d913a80d85129b57ba690dc40a08a9d3cba90d8d39 +size 80132 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/gos.wav b/Skins/ZachTV Pink/ZachTV fixedexport/gos.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/heartbeat.wav b/Skins/ZachTV Pink/ZachTV fixedexport/heartbeat.wav new file mode 100644 index 00000000..a6285b14 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/heartbeat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ad36d832c0fc0d5ea2b36c686428863253c61b4fcef57f8cb0993a4f195908 +size 84844 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit0.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit0.png new file mode 100644 index 00000000..322c03a8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580af8b765157f62d15e8d6681df871b4cbf2daaf86ce81f9721089412a887ff +size 19580 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit100.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit100.png new file mode 100644 index 00000000..99811496 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9944265cdc799d25aa0f8b7d06ff14b358298d2b7c04ae67a77da737a4f40ae1 +size 18146 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit100k.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit100k.png new file mode 100644 index 00000000..99811496 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9944265cdc799d25aa0f8b7d06ff14b358298d2b7c04ae67a77da737a4f40ae1 +size 18146 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit300-0.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit300.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit300.png new file mode 100644 index 00000000..a326c1f6 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47c14d9db6ddf46d29e01fcde63d22649bd4ec485107888afbb1c73f1d8b4699 +size 3229 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit300g-0.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit300g.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit300g.png new file mode 100644 index 00000000..6ba242a1 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0920d444c42fcc960ccf82e772fc4fee65f403ff6cab245596c1934b5cb0e4 +size 3048 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit300k-0.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit300k.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit300k.png new file mode 100644 index 00000000..6ba242a1 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0920d444c42fcc960ccf82e772fc4fee65f403ff6cab245596c1934b5cb0e4 +size 3048 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit50.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit50.png new file mode 100644 index 00000000..218e2997 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab41f9b20058e54ed73ef064a12ea52d9d0ee164c6ce0481fe1b4952e5d668e +size 17702 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hit50k.png b/Skins/ZachTV Pink/ZachTV fixedexport/hit50k.png new file mode 100644 index 00000000..f038a380 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d193d0a5432be1b56dcd3bc63abe026f481d9ff5dcda3cb479eece1f2690b0b2 +size 17559 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hitcircle.png b/Skins/ZachTV Pink/ZachTV fixedexport/hitcircle.png new file mode 100644 index 00000000..70a68e90 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef31002d97fd12d41f94e9a87420251112c1c14fb4d3818694b474988f598d1e +size 3261 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hitcircle@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/hitcircle@2x.png new file mode 100644 index 00000000..7a9b87f6 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12cdacdffbe8fa6d3b79236082a91c41c2b80a135999e8640a8d4a8fd703a896 +size 5181 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hitcircleoverlay.png b/Skins/ZachTV Pink/ZachTV fixedexport/hitcircleoverlay.png new file mode 100644 index 00000000..17e287ad --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c885b1ed92ca55b734057c7d58d4228366c31ec45466e53a78286dc2edd84f62 +size 26648 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hitcircletest.zip b/Skins/ZachTV Pink/ZachTV fixedexport/hitcircletest.zip new file mode 100644 index 00000000..1d596b38 Binary files /dev/null and b/Skins/ZachTV Pink/ZachTV fixedexport/hitcircletest.zip differ diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/hitsounds.zip b/Skins/ZachTV Pink/ZachTV fixedexport/hitsounds.zip new file mode 100644 index 00000000..3bf811d2 Binary files /dev/null and b/Skins/ZachTV Pink/ZachTV fixedexport/hitsounds.zip differ diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/inputoverlay-background.png b/Skins/ZachTV Pink/ZachTV fixedexport/inputoverlay-background.png new file mode 100644 index 00000000..d0099855 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71963f5335c43915f41121a5e2d2b5ac940334eaf2cdefbb89187e5fee072cae +size 14716 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/inputoverlay-key.png b/Skins/ZachTV Pink/ZachTV fixedexport/inputoverlay-key.png new file mode 100644 index 00000000..9602ac8f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de5d7aa4ba33068e7a19a404c34da02e89a8c66da8ccb522d7a957e29f20b5f +size 788 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/inputoverlay-key@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/inputoverlay-key@2x.png new file mode 100644 index 00000000..6b68fc94 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8477b7ce0ee9c5481492793bf250eef470829a90235b7254c4c7732ec78a55 +size 1448 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/lighting.png b/Skins/ZachTV Pink/ZachTV fixedexport/lighting.png new file mode 100644 index 00000000..748c33b0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbaab7b57f726e63217fdec7f94f0de436ff09023dd9fe543c607a580521d0e +size 11137 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/match-confirm.wav b/Skins/ZachTV Pink/ZachTV fixedexport/match-confirm.wav new file mode 100644 index 00000000..1c200078 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3080f4fe3022fad58311afc95d94cafa3f02067ba4fca71bc9900ecad2b223c +size 202004 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/match-join.wav b/Skins/ZachTV Pink/ZachTV fixedexport/match-join.wav new file mode 100644 index 00000000..0248f2d5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/match-join.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df4d853a615d0db4e45aad14cb4285bc2988d75941fbd2237c02191ffa92a34 +size 106618 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/match-leave.wav b/Skins/ZachTV Pink/ZachTV fixedexport/match-leave.wav new file mode 100644 index 00000000..6f72dc74 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/match-leave.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2719bd0345fb87bcf808e8b37549cd3611f3f9243018ac89317b0afca8885d41 +size 69754 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/match-start.wav b/Skins/ZachTV Pink/ZachTV fixedexport/match-start.wav new file mode 100644 index 00000000..6d7e12d8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/match-start.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1232fa88d32d50b9ec4a5a1e820633a9bce261627456495d9d309a787fc6d501 +size 158008 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/medentero_01.png b/Skins/ZachTV Pink/ZachTV fixedexport/medentero_01.png new file mode 100644 index 00000000..5eb10231 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/medentero_01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cbb5144fafb06dc5e6c177ec4db7cc54e264d1ec23f24732a8213ed3e82d247 +size 306971 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/medentero_02.png b/Skins/ZachTV Pink/ZachTV fixedexport/medentero_02.png new file mode 100644 index 00000000..4adba978 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/medentero_02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db88793fbd3a9ace0880f19f31f80587e3e778c00115081d2d8145f97fb93e3a +size 260083 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/medentero_03.png b/Skins/ZachTV Pink/ZachTV fixedexport/medentero_03.png new file mode 100644 index 00000000..ce72fdc9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/medentero_03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d72f4aac1b472bcf3189c335218b9e546fd00422f24a8770a6aa575ba17592 +size 252405 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/medentero_04.png b/Skins/ZachTV Pink/ZachTV fixedexport/medentero_04.png new file mode 100644 index 00000000..54166dc5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/medentero_04.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e86be40359fe9bf33040c0ee45e9f6d2e196c827b3e8dd6b63a6f38cafeec24 +size 314892 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-back-hover.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menu-back-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-back-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-background.jpg b/Skins/ZachTV Pink/ZachTV fixedexport/menu-background.jpg new file mode 100644 index 00000000..4e36c8f8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51db9daf43c88297704f369379664093fdd3f09a723b08c97bfb0289bf3bcdde +size 1775 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-button-background.png b/Skins/ZachTV Pink/ZachTV fixedexport/menu-button-background.png new file mode 100644 index 00000000..3b9bb4f3 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab33320cefd2d65acc302c22461cff663bccd5d770e8e2de84d33f6a39e3e76 +size 128430 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-button-background@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/menu-button-background@2x.png new file mode 100644 index 00000000..6c877a1f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9113cc6733b20ab8242ccb75418850897023ef4c33fd46263be3417742879def +size 327336 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-charts-hover.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menu-charts-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-charts-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-direct-hover.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menu-direct-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-direct-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-edit-hover.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menu-edit-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-edit-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-exit-hover.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menu-exit-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-exit-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-freeplay-hover.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menu-freeplay-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-freeplay-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-multiplayer-hover.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menu-multiplayer-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-multiplayer-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-options-hover.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menu-options-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-options-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-play-hover.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menu-play-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-play-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menu-snow.png b/Skins/ZachTV Pink/ZachTV fixedexport/menu-snow.png new file mode 100644 index 00000000..fcadd23c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b98a07e766d159a5c984476ad9ec521fc69dcb9e956a13a93a81c06fde4f967 +size 21544 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menuback.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menuback.wav new file mode 100644 index 00000000..79313089 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3e3569ccfd2c96710b3ace11d98b2fc854e81153d71f0bb4d3ee22bfa4574a +size 18516 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/menuclick.wav b/Skins/ZachTV Pink/ZachTV fixedexport/menuclick.wav new file mode 100644 index 00000000..d7938210 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1844d45e7230b77bab7e9fadc3d462a5db9257af7c73e692c144459b2166fd +size 4844 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/metronomehigh.wav b/Skins/ZachTV Pink/ZachTV fixedexport/metronomehigh.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/metronomehigh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/metronomelow.wav b/Skins/ZachTV Pink/ZachTV fixedexport/metronomelow.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/metronomelow.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits-med.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits-med.png new file mode 100644 index 00000000..1b2f756b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412a79e74bf28233e9bc8099c7ffb8ffc2429994e3e81cfb898d2deaf4675515 +size 89104 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits-med@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits-med@2x.png new file mode 100644 index 00000000..6bf92b5d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277879756475a2eb6c57696980f2f32c6764b8e88ec62147a4ad01e50b180139 +size 250851 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits.png new file mode 100644 index 00000000..be6455c1 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7fba53f9fc344dd446242e4bd9b70f8d61f69c05bdad6f167ac5e3f391e6e5 +size 30690 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits@2x.png new file mode 100644 index 00000000..ca8604ac --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-fruits@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5956a96ffd5e7c05812d73bb2690e0d15cd3972509ceb46d18e1d333713e79 +size 68581 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania-med.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania-med.png new file mode 100644 index 00000000..c2c9727a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b503250bff6d9774ddc6a79882b74f21da3680c7ee17b36c14767306369cd96b +size 106353 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania-med@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania-med@2x.png new file mode 100644 index 00000000..5d271058 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b35fd5efa5e75e6ee7ed17fd7b26eb60e0ab7567afcc54e41892574031486c +size 295453 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania.png new file mode 100644 index 00000000..bce8b23e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:539ca47f397a30be845e4397eeadcc5be6ef211c190fce43bb375745a0ed686b +size 34637 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania@2x.png new file mode 100644 index 00000000..1a9480b4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-mania@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2183d9e59f89af5b16747c0aaee18dbd53fa53dd25ad5d2365a4c7b85272360d +size 79761 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu-med.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu-med.png new file mode 100644 index 00000000..4b81c3c5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2bf741e4b2cc0ebbcc0f0d76c8e1147c40a5406db4f250500d89e0f0d295ee +size 106163 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu-med@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu-med@2x.png new file mode 100644 index 00000000..608e0095 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e08813686b9480e8edf3a51dba47d6793c93b99a48ca7c3ea3fcc531bbdb14e +size 299732 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu.png new file mode 100644 index 00000000..4412fc8b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137c1361ad480c702ccdd89fdf3921b4cbf480a770856783573c8d2750d4b88d +size 67018 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu@2x.png new file mode 100644 index 00000000..640769ef --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-osu@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193dd5d77500874a2fd6a19fa666baea8e971e7a910b273767cd0aec8be44f81 +size 156409 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko-med.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko-med.png new file mode 100644 index 00000000..013d35e6 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a56bf5b588a67b1bffbccdd79d39eb1e1162bc85ef58218b4966d7de9a6d3fc +size 84834 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko-med@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko-med@2x.png new file mode 100644 index 00000000..16e78c17 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a9b8f72c2a7d32b7d2fb298665ec3d819416dcb1de42fbd4706068b9f6cf80 +size 240718 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko.png new file mode 100644 index 00000000..85260db3 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a42a38228c22cf4a38d3a92a2dd46d41d6a4b957b4c29415d33887b5497e55 +size 50533 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko@2x.png new file mode 100644 index 00000000..fb903667 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/mode-taiko@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:825d197aed1f15cfcde1753374d52b85ac114a2e98b47a2e1320b65326f1f631 +size 116775 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/nomal-sliderslide.wav b/Skins/ZachTV Pink/ZachTV fixedexport/nomal-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/nomal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitclap.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitclap2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitclap2.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitfinish.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitfinish2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitfinish2.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormal.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormal1.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormal1.wav new file mode 100644 index 00000000..cec1019d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dca52d80e879542897592baeb72251656e0241e551940132d289a0d6d973d61 +size 25504 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormal2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormal2.wav new file mode 100644 index 00000000..8d1bb6df --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f5522ffa67692394509eaa54e47261b703a17ce75b9cec9b122433ea9fef6b +size 54196 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormalh.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwhistle.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwhistle1.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwhistle1.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwhistle1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwhistle2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwistle.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwistle.wav new file mode 100644 index 00000000..7ca41433 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-hitwistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f770d06b30853c8ed6b25464af6cf7b7f3f68c332dc8bcfa4ea23076f5445965 +size 13185 diff --git a/src/default-skin/normal-sliderslide.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderslide.wav similarity index 100% rename from src/default-skin/normal-sliderslide.wav rename to Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderslide.wav diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderslide2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-slidertick.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-slidertick2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderwhistle.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderwhistle2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/numbers.zip b/Skins/ZachTV Pink/ZachTV fixedexport/numbers.zip new file mode 100644 index 00000000..82c24521 Binary files /dev/null and b/Skins/ZachTV Pink/ZachTV fixedexport/numbers.zip differ diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-back.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-back.png new file mode 100644 index 00000000..bb900a6c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e378a24d396c9b8170e4079a5f2d9078677ef2a68b077f47de950097fd3c2ab +size 327 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-back@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-back@2x.png new file mode 100644 index 00000000..c66c31f9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789f767ad8b30ee318475477b130abfcbe24a26eaa81044ae8c728bc7e39f344 +size 6115 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-continue.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-continue.png new file mode 100644 index 00000000..bb900a6c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e378a24d396c9b8170e4079a5f2d9078677ef2a68b077f47de950097fd3c2ab +size 327 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-continue@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-continue@2x.png new file mode 100644 index 00000000..c66c31f9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789f767ad8b30ee318475477b130abfcbe24a26eaa81044ae8c728bc7e39f344 +size 6115 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-overlay.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-overlay.png new file mode 100644 index 00000000..09530fb5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ab65a2ee784edd2cbf45ed523d77541c2b27e58c7ec7e53d7affaccc9ef181 +size 762238 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-overlay@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-overlay@2x.png new file mode 100644 index 00000000..f8173206 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c4e9d5705c2e94718227e965e3ff1c800e42ae0ad950c99cfeab1361a4d20b +size 3433047 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-replay.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-replay.png new file mode 100644 index 00000000..149704bf --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e916718550373bce26697f815f5e5fd48859666e8f25bc22b84b34e7ce191386 +size 3343 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-replay@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-replay@2x.png new file mode 100644 index 00000000..dbf3d593 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08890e1b5f6bb33336aa31a81201b2e894324434828367e5a2da90df242d2aad +size 28720 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-retry.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-retry.png new file mode 100644 index 00000000..afbe77c0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2def49dda061710cdd7c3ae581f4d5860e74feb1b54b99f666da6396a5241d9 +size 311 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/pause-retry@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/pause-retry@2x.png new file mode 100644 index 00000000..c31e0573 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ad9cdb79dce3f7de16b86d58508c6df1d7a6973e0e98fa5134fa94f57fe462 +size 3720 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-0.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-0.png new file mode 100644 index 00000000..4de3e8dd --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35010a9f69265e315fafefb4a3e6faec583d9c7bd8a7a095b978a6f7a37c3c27 +size 183573 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-0@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-0@2x.png new file mode 100644 index 00000000..ffd41780 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85649d20f795c00cd421820374e02b7c91e85ca80e5f14312c278d8eb85d908b +size 628177 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-1.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-1.png new file mode 100644 index 00000000..8df73a52 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f524b9066b90b9f8b208c96248a8fc782605ae1db84825cb8d163fd7553995f2 +size 183573 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-1@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-1@2x.png new file mode 100644 index 00000000..6fd8a92c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f53c69beffe4f8859fb5bad1bdf6aabeebf67fc4eddf33de5078d46aa7d6b3f +size 628177 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-2.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-2.png new file mode 100644 index 00000000..a2ddd6a5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278eb91104fc4e0ebc0e0ec73c79ba849b29dc13ad226317e812b43ec471baca +size 185193 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-2@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-2@2x.png new file mode 100644 index 00000000..e811288b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ead1c602735b26a55db69bf62d32a6b69cffdba640111ac2ae737e21b6dbbe +size 632245 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-3.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-3.png new file mode 100644 index 00000000..8adf4dfe --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cca035ad1b78f2b197e117cc216387147d965c4cc294ef9e1fea105b6fdae5ee +size 183025 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-3@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-3@2x.png new file mode 100644 index 00000000..3a38db85 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e6285f218e4c8004f737fc55f4977245d6255087afc6ac64473679d3afcd83b +size 625466 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-4.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-4.png new file mode 100644 index 00000000..0f318566 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a513fa6714249eeeea185fc9609a7009106da2f95e9d860dd89701eb2cbd7a3 +size 185222 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-4@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-4@2x.png new file mode 100644 index 00000000..2dbec0c3 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208737104cdbb729e0143041a0312484e24459c0966a6b69cb5f721b44f224c7 +size 631579 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-5.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-5.png new file mode 100644 index 00000000..e0e776f6 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175624b637e69c75a133c680e69ee33f0ac73fc8cd03989e4f0172bb60ec7119 +size 185222 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-5@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-5@2x.png new file mode 100644 index 00000000..9346913c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72e515c5081998058ba32d7b0bd7a5a3434903568f89c53b8f09210eb4e92e6 +size 631579 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-6.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-6.png new file mode 100644 index 00000000..5c8d8967 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df9297e933ef5f2bbae9c6f16ea4eada3a0c5545ad0c64be214f8a4166c274a +size 183025 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-6@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-6@2x.png new file mode 100644 index 00000000..77e567b9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277b1933888bba051f6b8cc76cc2c18f53567757e4de266addc855b43ceca663 +size 625466 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-7.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-7.png new file mode 100644 index 00000000..a7fea30b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63170797a03321f1f7419e7db4d1856cd0b832a355713b1e9c693945d1cf0e6e +size 185193 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-7@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-7@2x.png new file mode 100644 index 00000000..629333f6 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595a7239ddaa243ea35f7c734bb741e7c4e1dc6de0a29031773786c82be8f683 +size 632245 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-skip.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip.png new file mode 100644 index 00000000..60d32741 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5586b94d2865925edf67869a09de23404890291af7631010caafda2e973f81c7 +size 9576 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/play-warningarrow.png b/Skins/ZachTV Pink/ZachTV fixedexport/play-warningarrow.png new file mode 100644 index 00000000..f816631d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45735d4943496de2a14dabcd4cb8cfca132ba47b6b194708d4a3b0b19a52f4d4 +size 11952 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/playfield.png b/Skins/ZachTV Pink/ZachTV fixedexport/playfield.png new file mode 100644 index 00000000..40a61d93 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d3fbf590a584138bb563319747dbef0c9e41db91f19ff45d41e785a5f4f98 +size 2808 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-A-small.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-A-small.png new file mode 100644 index 00000000..111396ae --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae69fc0cca2df2c4fe71d78d05db04687a291d6cbcb448b8bb45448c96fa52df +size 1242 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-A.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-A.png new file mode 100644 index 00000000..ccc914cc --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c093afa87a8b75310c300606a8a043590361c2fef80ebe21c45a130af4abf772 +size 15456 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-B-small.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-B-small.png new file mode 100644 index 00000000..d1a776d5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9870b31a1de0522118ed08258ff53f2f37967ce04112ecb7feb721260f434b21 +size 1262 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-B.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-B.png new file mode 100644 index 00000000..9745170a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9b5a480e93cfdba02221a16fc4c54ef3d2f06b1a98fac0f61f320317364866 +size 14577 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-C-small.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-C-small.png new file mode 100644 index 00000000..b9f3be82 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d71bdf1d9082f8039289ce85a1374abdbb8f0396fe5c47c104d9363eb513d499 +size 1350 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-C.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-C.png new file mode 100644 index 00000000..83c4c4d8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebfb636cd2820f0f739e4b74bde242621ab79e8f9615c712e0a146bae88e735f +size 18152 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-D-small.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-D-small.png new file mode 100644 index 00000000..b1b44f92 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:152071d867c561da2feb13bb5ae2935485591891b6593216e0573434276b7f42 +size 1076 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-D.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-D.png new file mode 100644 index 00000000..6abc2675 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2d97795c84302c03a167ae8a6aa06bdea1dc57b110cec96ec7869f0fc12a7e +size 12712 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S-small.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S-small.png new file mode 100644 index 00000000..9f523e90 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b75f886285b0f55add1ba57d87ff45b6a40249180870d3526c90bf76b955826d +size 1455 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S-small.psd b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S-small.psd new file mode 100644 index 00000000..9b7fec13 Binary files /dev/null and b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S-small.psd differ diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S-small@2x-.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S-small@2x-.png new file mode 100644 index 00000000..afaaf42b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S-small@2x-.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec712148a0452073279eae3ed5cf04f053361c5e39468e1ca8eb0bbd2449331 +size 28870 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S.png new file mode 100644 index 00000000..1dc6e5ac --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f655197804555372fe4862eeb169f5ef60ac5f3290f3ffc4e7f6422325031104 +size 20126 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-SH-small.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-SH-small.png new file mode 100644 index 00000000..91087349 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:838c021cb2c0d942c46d179d729fa20e72de76c3844fc634da95048358f3c434 +size 1462 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-SH-small@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-SH-small@2x.png new file mode 100644 index 00000000..f6b7ec67 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f95660f5bec80c271a077fd2160181a44a875b54d39671cad1044b489c03cf2 +size 28466 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-SH.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-SH.png new file mode 100644 index 00000000..dc30bf88 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2dc8820bdffd48f1bf14b05bd00a86c1afb5eedb32a7d93d0c671cba19e8680 +size 19900 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-X-small.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-X-small.png new file mode 100644 index 00000000..e01c6b98 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003be8e14009643dafcb43e821feab24ae0603254cd3ab52112db6282804633a +size 2160 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-X-small@2x-.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-X-small@2x-.png new file mode 100644 index 00000000..a385cf84 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-X-small@2x-.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4c1d7996f0b0ba32684fdfd06681f16b0c060b1eb95a2a1940c7e481bacb01 +size 29315 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-X.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-X.png new file mode 100644 index 00000000..82ba9ae9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b7ac82b3e1fba91b840eb48bb8fb5e7efdbc96fc468890bacd76c959e2f261 +size 27249 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-XH-small.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-XH-small.png new file mode 100644 index 00000000..fc3e9fb8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87903140ad1223dbc5154da7fe5462eda99e8c8c8bb589878eded09944c1ad43 +size 2090 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-XH-small@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-XH-small@2x.png new file mode 100644 index 00000000..4b3f9f30 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8b406c571f4de236b82a80142809aecb38914d423d2b49d57342fb75a900da +size 29209 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-XH.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-XH.png new file mode 100644 index 00000000..641d5bfa --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1ed17428472d356c5f22d05d79bd447d25402ea9df15b606391670f035301d +size 26326 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-accuracy.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-accuracy@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-accuracy@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-accuracy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-graph.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-graph.png new file mode 100644 index 00000000..4836ccd7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed21032e6501ffc5fbf65008587ac900ef9b4510a00c4213b7f2bd4458c2d76f +size 313 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-graph@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-graph@2x.png new file mode 100644 index 00000000..942962cc --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0874b12597a35ddae29c0a23c95b1960387549cead39309a5092fd3efc923c19 +size 4243 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-maxcombo.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-maxcombo@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-maxcombo@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-maxcombo@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-panel.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-panel.png new file mode 100644 index 00000000..367d1318 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd2dd000e13286467757a464a8585fe2fe5878960d5e337262283104af9def7 +size 1083901 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-panel@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-panel@2x.png new file mode 100644 index 00000000..15cc0b93 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8972a2995ed8b550e221400248754d7c6f35532ef3801ea22e7f9cc38d7602c1 +size 4068175 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-perfect.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-perfect.png new file mode 100644 index 00000000..21497033 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd270e4a6be35e0280d43a628b590c47f199874a2d9fadbb7d36656e5efcdcc2 +size 253 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-perfect@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-perfect@2x.png new file mode 100644 index 00000000..4e08b17b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487ba6c5224cd0db0b05988288037fae98603faa99c0d9c356487378e4003982 +size 38242 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ranking-title.png b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/ready.png b/Skins/ZachTV Pink/ZachTV fixedexport/ready.png new file mode 100644 index 00000000..af52bfff --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4612190892494e984ea4c859151b7390d7346538724c2795ce99b7c08a8cbc51 +size 51909 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/reversearrow.png b/Skins/ZachTV Pink/ZachTV fixedexport/reversearrow.png new file mode 100644 index 00000000..35905dad --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f313c239c30b0426384ac7b5dda9f3dbf57545d186be9335e44fa7f222f702f3 +size 4312 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/reversearrow@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/reversearrow@2x.png new file mode 100644 index 00000000..5ca50f5f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b35c420e83258771930792865abf4925f9cb47c31e055752934691350974c778 +size 23223 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-0.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-0.png new file mode 100644 index 00000000..adfe34c2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618e0fba14c4b6c608e739c90a98c191c9079483f6da3184e8ac90c27e905663 +size 18413 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-0@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-0@2x.png new file mode 100644 index 00000000..e9a88220 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685143a1b701bf6d4e56e6a96b7093000e60aee9eab0334dcf1355ebe16cde7e +size 4405 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-1.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-1.png new file mode 100644 index 00000000..094a2da6 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112e2dd83b77a4cfb4f5251dd73ae8cff7de080c0bd57972f3112d406c69c23e +size 18073 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-1@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-1@2x.png new file mode 100644 index 00000000..9b36b5f5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6038c9d37237094bd046442dafa4af8a2e992bcb607ef81f15af6f882ab12e +size 3377 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-2.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-2.png new file mode 100644 index 00000000..a68dbcb0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd30bd721e5388502837eec39b6d7f20a28fb88a26565c3b446b19251b3661ff +size 18431 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-2@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-2@2x.png new file mode 100644 index 00000000..e32e36dc --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f891bc7cac11f878b7f04edac957ed0153f296578b5b488ce725a1cdea9a4e9 +size 4318 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-3.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-3.png new file mode 100644 index 00000000..01206deb --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62269e13f2c50f82dc3f9a42cc856df462cd3bc60b74b89ba6daaf174e3c2b4e +size 18878 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-3@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-3@2x.png new file mode 100644 index 00000000..79f23de8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6503413eca54021c51518d6c8ea761ad93911202fc3aa07c189de3798aa02b7 +size 18922 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-4.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-4.png new file mode 100644 index 00000000..7c08b7f9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8839f49441bc53fd5d7401afce8348fbd48b3be053a18146e87f33f237a2a42 +size 18426 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-4@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-4@2x.png new file mode 100644 index 00000000..5dae0d50 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9168d1cf20464e9f40424ce2f98815fa51d241f18c2f6802b1eba3d84d0bb68 +size 3953 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-5.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-5.png new file mode 100644 index 00000000..73ceac6d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24342da3e3ed75305a2b131bc0344b41de719bf9d6c8f20dae5e26ebd064b33f +size 18385 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-5@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-5@2x.png new file mode 100644 index 00000000..3f6c899d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd930305492952363f3580ffbdc2489e7306e42c05c939b13a29aba23be5a039 +size 4118 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-6.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-6.png new file mode 100644 index 00000000..0e8aa0b7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c140e016da6d028567386fe05f31154f048c4bf85238ea3fd9e53ca38f3bc4a7 +size 18539 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-6@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-6@2x.png new file mode 100644 index 00000000..fb175c61 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d15d3a9368291bfaf301cd25dcde1dbec6c95ebea58c519d1f5a7098a04656 +size 4568 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-7.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-7.png new file mode 100644 index 00000000..5ce9602e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f9eff68b87b2b9c571c24ac70afee4eee36ab13f533a85a8524395b74df991 +size 18322 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-7@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-7@2x.png new file mode 100644 index 00000000..db2b89c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d445c83c254ea9f4841489b5659d0cc3ed406317b4c0d07640e087a6cd58f9 +size 4355 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-8.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-8.png new file mode 100644 index 00000000..ac7ff9a8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d2283f2f24b804afe33097864ea82cad7b6ba7a5a02f6fe7defffe37426a5e +size 18672 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-8@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-8@2x.png new file mode 100644 index 00000000..9508efb0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53376b01e7527a99d0e0f43fefcc0571b53957738267198811219fb1623ab69d +size 5261 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-9.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-9.png new file mode 100644 index 00000000..dcad2978 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50bb1e81a39b06530eed8f76d801ec48264caf7f61f303107fb1702c7470e75 +size 18536 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-9@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-9@2x.png new file mode 100644 index 00000000..5f023729 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3e43ff10846404dc141e9a4ffdc7cbb24f4c4d0ce16eafd644e3c1c17ba4ff +size 4578 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-comma.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-comma.png new file mode 100644 index 00000000..3a16314a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63c1cb06838b8a22c85411151d6e05dec0d74eb8a78c3a4238e0099f83855e5c +size 384 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-comma@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-comma@2x.png new file mode 100644 index 00000000..2145bdf0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7fa1acef7597a6ec6eff4175ff9431ba88a13d105d4626a1606f5aa718fb3ac +size 893 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-dot.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-dot.png new file mode 100644 index 00000000..15fb8b60 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67daf330ccc1683c4a6df2cfb45dcc388d3654accd1bc698373d50df2230e472 +size 311 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-dot@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-dot@2x.png new file mode 100644 index 00000000..a1b2dfae --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f16aa6c7e5fe6d953bd8943402d6fe0b78afce63abd6da754bc53f772554c18 +size 648 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-percent.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-percent.png new file mode 100644 index 00000000..9be7101d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02fa0c9e4e7a15f5ede7a35d8dc7236bfdd6107890a44eb98ab9678e2ed2ad3 +size 1354 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/score-x.png b/Skins/ZachTV Pink/ZachTV fixedexport/score-x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-bg - ___.png b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-bg - ___.png new file mode 100644 index 00000000..375dd95f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-bg - ___.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9197be9a8d05e743f275a9cf8dce82c199cca910a8cd9b5f19ed702c75a006 +size 48649 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-bg.png b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-bg.png new file mode 100644 index 00000000..b093ad53 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f0b825a14421ba9fe172201ad6b58eecd92ef73d33cbd90c810a1e58af5910 +size 46978 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-bg@2x - ___.png b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-bg@2x - ___.png new file mode 100644 index 00000000..d0bcdd8d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-bg@2x - ___.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b27f8506e72cb7b5e679c46b9a898692d51527dd67a5ff721329f9d8f94d5ef +size 228696 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-colour@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-colour@2x.png new file mode 100644 index 00000000..7336073f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:031bb40a2b9311d016aef76ba1e2a28db72d5fd60fac2e8ab37e0d85e46fb905 +size 7459 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-ki.png b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-ki.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-kidanger.png b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-kidanger.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-kidanger2.png b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-kidanger2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-0.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-0.png new file mode 100644 index 00000000..0381c21f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d77227f750612337b50101f5a6c6dc19b2a0bfd8eb64b460d9f68362153d846 +size 21921 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-0@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-0@2x.png new file mode 100644 index 00000000..0c4730d4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24bbb2c96cdd4c880922bb46530d502d17fbff2d5bf9586877deda1197bf9e90 +size 22126 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-1.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-1.png new file mode 100644 index 00000000..59596e3a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842f1837502bd64f1f6ad366933a0c28c1a5f19f1d433c3385372d2d1e352ba8 +size 21574 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-1@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-1@2x.png new file mode 100644 index 00000000..c9b1d464 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b811f3cd30f6ebe6286cb3e988f1fcf81016f2204f11ac9d9138366ff72a756 +size 21502 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-2.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-2.png new file mode 100644 index 00000000..cb1a26be --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbe4d357581f4e764c065d6d8ce127a17d06a019449ea1093f33bc446d12b05 +size 21886 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-2@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-2@2x.png new file mode 100644 index 00000000..00d6419c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6666b586d75e8abbefb8408d6dd6b88c24fc22c3b988756995f0eff8912226c +size 22114 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-3.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-3.png new file mode 100644 index 00000000..1aa506bb --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3297479f4fa9a07a8bff9a0d0e7b2bf498583807773d5308eefe48bb20689235 +size 21825 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-3@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-3@2x.png new file mode 100644 index 00000000..1711b1a5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab374fecf2ec3f4a66181a4913a1158c29cef5e30798a7e74d231b553c752191 +size 22046 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-4.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-4.png new file mode 100644 index 00000000..f30babd7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694e54e3d835fb573c68c2543d64b32850347d1908a4a1aa1347d922120aeeb4 +size 21841 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-4@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-4@2x.png new file mode 100644 index 00000000..6ba8205e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5418d151acc82ddc9c0d71f86ee043d160fc662f52fd792a70841a7549f6966b +size 21867 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-5.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-5.png new file mode 100644 index 00000000..1112c992 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7194fb2349f872de7e7593882414f73ab9fd04fc1d06c0e64d623dbd5982d52 +size 21949 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-5@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-5@2x.png new file mode 100644 index 00000000..8feac1ef --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3167c64e6883b278184748f57205c3c91f2787ab4e30a16a18e997ece771958a +size 22039 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-6.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-6.png new file mode 100644 index 00000000..bb3c2fca --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c096288852ff07e5062fff0bfa2e1e86c78eb08165b735e50d1e484bcb707c8a +size 21958 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-6@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-6@2x.png new file mode 100644 index 00000000..827172dd --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076dd03dbbfe86e148ca79f205959437dc443669205f45ed15a63fb9c2b861a6 +size 22285 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-7.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-7.png new file mode 100644 index 00000000..b5549013 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a74e6b41595be855c4ee551e454e6c4def99324d05eb59585ec07c9c2df517 +size 21730 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-7@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-7@2x.png new file mode 100644 index 00000000..9f8ca788 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81d03b40197d4f47d032028bcff1d4ad3411f84f05cf14e1bc1937c3aab66596 +size 22028 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-8.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-8.png new file mode 100644 index 00000000..da20ecdf --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:043a09f62e9b6cc8b923d1fb24c3403904d63cd5ffe48394f3f1b2ad526db44a +size 22021 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-8@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-8@2x.png new file mode 100644 index 00000000..ea16b731 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d65c2c932f0a2027a5349e8d0d234773af39b5e8eaba640c7e012dd7cff7e8e8 +size 22414 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-9.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-9.png new file mode 100644 index 00000000..b5393d27 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a581c54b47365cb7b483fecc210b2c2287eaa73da154ac4261fdb2596fa2c5d8 +size 21906 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-9@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-9@2x.png new file mode 100644 index 00000000..9de786d7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b5dd59e5f9ed293b7c195d3156f1106ce99754dfadbb62f117e515404b37c6 +size 22243 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-comma.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-comma.png new file mode 100644 index 00000000..a630dfb4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4658eef96663a47687d54144a72f68498b006414de43a89dcfc7f9fe2c6cba9 +size 21415 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-comma@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-comma@2x.png new file mode 100644 index 00000000..0cd090bf --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0cf8447a77047f1447c65d419fab97e2c02cdf643a99a111b4b3144b4c7e262 +size 21393 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-dot.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-dot.png new file mode 100644 index 00000000..10a59536 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5aef521e03015c781dba66b84a6c81cd22a493d7fa7cfbe7e797ec19c63a9f0 +size 21415 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-dot@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-dot@2x.png new file mode 100644 index 00000000..5655d84b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ce62c94f5e20c0221b57444b552359fa0313d79b5ff6716d299d590f038f97 +size 21393 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-percent.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-percent.png new file mode 100644 index 00000000..ba09646a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e1b2d11f130e05f3a8f6011311c52133f68cbb88a8e204b6eff6a9962d0ead +size 21960 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-percent@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-percent@2x.png new file mode 100644 index 00000000..17ea1ed8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6e4e47ce6065716592017d71d873dc82ca5c1ce1e41801a8abef3a98a8bb1f +size 22781 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-x.png new file mode 100644 index 00000000..f8577ef2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc97e8d0d98cff79da25e5d5ef357f783397dedbfa70bad94232356c291ef428 +size 21729 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-x@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-x@2x.png new file mode 100644 index 00000000..a2098687 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/scoreentry-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41da1186a4bd8eae4dc10ab39d5a3fbb1b0b99a01335a63d444ce0ab128c8a2 +size 22091 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/section-fail.png b/Skins/ZachTV Pink/ZachTV fixedexport/section-fail.png new file mode 100644 index 00000000..e0d6874a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eece2aa26c2490d0049635f1e14f7d364a9c4e21f27d465da561a2369d78b309 +size 273986 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/section-fail@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/section-fail@2x.png new file mode 100644 index 00000000..9bbbcb72 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43ba12164fe6408ded0803b0a228ce36ea7566412ba3302499750dd55335e42 +size 721571 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/section-pass.png b/Skins/ZachTV Pink/ZachTV fixedexport/section-pass.png new file mode 100644 index 00000000..b7d97b82 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3908e6c8d16968e6d729f38d2dd014d2a93fece5124cf4de9dff061e4fcb89a2 +size 291287 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/section-pass@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/section-pass@2x.png new file mode 100644 index 00000000..945a5aa8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e252ce1923bfb12c8206e5631f205855611ecb9004a7412409cb2319115b373c +size 772295 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sectionfail.mp3 b/Skins/ZachTV Pink/ZachTV fixedexport/sectionfail.mp3 new file mode 100644 index 00000000..46faebd5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e69376507f7827f74a279e97b39d8d49f95b9f80817d2cef7283f81b5496d0d +size 62080 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sectionfail.wav b/Skins/ZachTV Pink/ZachTV fixedexport/sectionfail.wav new file mode 100644 index 00000000..1371a14b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119f36074e78d3177aa8989e091e48c27292c578eb916596f28fc92fa4cff7cc +size 256430 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sectionpass.mp3 b/Skins/ZachTV Pink/ZachTV fixedexport/sectionpass.mp3 new file mode 100644 index 00000000..2a9f0464 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306b0030cbfbfbfddb68ac17c99e267ea0bc69080475ca9236c73f00131f7dee +size 40576 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sectionpass.wav b/Skins/ZachTV Pink/ZachTV fixedexport/sectionpass.wav new file mode 100644 index 00000000..71e0a0e6 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec584a07d2f4aaf8515fe3cd282f0e0b4b7205dfce6014d4050926d38d97c809 +size 520206 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/seeya.wav b/Skins/ZachTV Pink/ZachTV fixedexport/seeya.wav new file mode 100644 index 00000000..75d0517b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ad489409386bb84dffa21ee1a69be2e73d212993ea7b98aecfdc689b8ab88a +size 122364 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/select-difficulty.wav b/Skins/ZachTV Pink/ZachTV fixedexport/select-difficulty.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/select-expand.wav b/Skins/ZachTV Pink/ZachTV fixedexport/select-expand.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/select-expand.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-autoplay.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-autoplay.png new file mode 100644 index 00000000..c5f46283 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e9454b6221bef8e9ecde4d0f1db2793186f9c8917f45db981bc79da35cd26b9 +size 19184 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-autoplay@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..a6761a83 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2f728a222a34d050eeee40e93f36be70a63dfd0c0e6514eb436c1196f6e98e +size 56463 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-cinema.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-cinema.png new file mode 100644 index 00000000..0724a337 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86677f3f5b93ba829a7954428e8c80b3c86c7f28914ce4503d5ce4eb7f854bd8 +size 18909 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-cinema@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-cinema@2x.png new file mode 100644 index 00000000..01df9a2c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e95ea64b11d64db3ac5286884ea7bd17f42a4c43d584ef7da85ace60bd462a +size 54701 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-doubletime.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-doubletime.png new file mode 100644 index 00000000..409b4b87 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f40b01e10e320053f78941596062b2fac2690271e83c0dc09e13149743c0cfb +size 19097 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-doubletime@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..01540c49 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adfdfb1c6ef7161ee843b98dee41e2b910b733d34f4143fe7c46ca5e5975538a +size 56889 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-easy.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-easy.png new file mode 100644 index 00000000..fb6ff912 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8918edf13cf9943c01c1d271d3bb66b48184fe9d33d9b8e0b1bf85dd8938e966 +size 19394 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-easy@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-easy@2x.png new file mode 100644 index 00000000..9e01de37 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac12ad38a6a64262c71ec4925f2ed3feecd5496be204efde7e59729b7b10c6a +size 56575 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-fadein.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-fadein.png new file mode 100644 index 00000000..ee3cb0cb --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-fadein.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e84aec81e20e68b89ac9fffbc5602b959f7f7ba51d89bb90aee66c13df78626e +size 18625 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-fadein@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-fadein@2x.png new file mode 100644 index 00000000..f0aa747f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-fadein@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ed1c9a7d4afccee209fdbb69e3912095267b5d17177a1765bb6b72e00f3fc9 +size 54634 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-flashlight.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-flashlight.png new file mode 100644 index 00000000..81511257 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122110ab26c8fe15819f0e8ed3621e63ee7eaafed603760e9af39cb578bd7118 +size 18292 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-flashlight@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..87f1ce70 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef0c6f1b5b9a2b2fc23696e8f921159133cf268e8ba5bbbf58a9a9076df60ad +size 54195 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-halftime.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-halftime.png new file mode 100644 index 00000000..03af3e54 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610bfbbda34b5608a94c3aa240f1915427a06d68e608df1e0b72b393c81319fd +size 18870 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-halftime@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-halftime@2x.png new file mode 100644 index 00000000..a48029c9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44275188586081cb57f7baea7ac96dbb2f4d42a0f21c5d11709fd8c98204504b +size 54347 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hardrock.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hardrock.png new file mode 100644 index 00000000..24d56b86 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c54784771aaf8c26d7c1a225d2cfae678b9d4a28a435524a8f290681f036f10 +size 18145 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hardrock@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..1db62a35 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04e05aa85d59dd81d198c860755cc99aef22e5ce50dd76a11f1159340b9f2382 +size 50505 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hidden.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hidden.png new file mode 100644 index 00000000..adf3b783 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e10eefc5317e62e1dd0ea20d56212688e30cad747b79f8ec8115ae0187923e +size 18676 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hidden@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hidden@2x.png new file mode 100644 index 00000000..f619009d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578430a6b0c69a913071604fcd85efb6d71b59ecd4720c8f83a966a509d349f8 +size 53223 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key4.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key4.png new file mode 100644 index 00000000..bf286a4e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:182c996c4b8dae703a926f34201a99554722c5e1478e889afc52b98f2a5ef64a +size 18754 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key4@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key4@2x.png new file mode 100644 index 00000000..039a8a6a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b182f8c76ab117360f4b9b15cfb1800f260e796aac72bd11f6155143cd563a6b +size 54377 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key5.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key5.png new file mode 100644 index 00000000..34d692b7 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ed4ab3f25a7a62f903b3f5c67e063814a04a3cdb1b6299854b44188d8dc96c +size 19621 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key5@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key5@2x.png new file mode 100644 index 00000000..3cba50d2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:335492bacfa89f1735b81d0bbddffabe422a6b76095696d1c3d6c9155b5a0fd0 +size 57881 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key6.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key6.png new file mode 100644 index 00000000..ee05b2ed --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ac1ccff354c73536f4ca4282a300cc75d83c1d042a8e9b8431f84e26f0dc21 +size 18293 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key6@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key6@2x.png new file mode 100644 index 00000000..69f0e6c2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a40b380ce1646d17dea5b31d13794a932f4543c422893d438fec3f61993a6a +size 51389 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key7.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key7.png new file mode 100644 index 00000000..10a0149d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a44f769f04c24233148f85504c1f8628ef6b23551c42aec1bfaeb35a3c856b +size 18612 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key7@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key7@2x.png new file mode 100644 index 00000000..71a8afcf --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7e0e30757b8e9e59479d70430b367fa25e71a4c6f97c316a28825a76bb7a535 +size 54595 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key8.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key8.png new file mode 100644 index 00000000..e84aaac1 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c2b467e152f264c28d8db9a3d3ca88b2a0ca9d54eae2cb55a980410573214d +size 19579 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key8@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key8@2x.png new file mode 100644 index 00000000..611c48b9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-key8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79e5b3447a7aa39ac5d951c115c8ef3f0c42a90164bfba8d54a32ab3c05db620 +size 59102 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-keycoop.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-keycoop.png new file mode 100644 index 00000000..45916c20 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-keycoop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752264512e57746b1b85aacd2603de3ea8fb93720b05fae52fcfed6bc4994458 +size 19582 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-keycoop@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-keycoop@2x.png new file mode 100644 index 00000000..45519df4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-keycoop@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b10430a6746a80938ca9b09f741f0da89fdcfc9454f013698335010161e2e9c +size 58922 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nightcore.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nightcore.png new file mode 100644 index 00000000..3119d3bf --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b75f94800e66c838a721c23d400c160433f57007efe3612f2b53a277936897 +size 19213 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nightcore@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..c8faac49 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac2f7eb52305996f72d3c3e81fbb475384c6dcc48006bdb08d87abb3eac79dd +size 57008 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nofail.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nofail.png new file mode 100644 index 00000000..ce93a790 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7a7331fb3b23a8e9415ad605e1849d9c04140924e514e6d3af66c0fdcf2392 +size 18498 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nofail@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nofail@2x.png new file mode 100644 index 00000000..bbc8235f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a11e7ad5b1a70503fa7445ea5e697a03e4532fd5d2526126cc335529b446f112 +size 53943 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-perfect.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-perfect.png new file mode 100644 index 00000000..c2830882 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f427f5c787d93d02d7f738552e2beb3d4da40eb8e7780b8f0fb7c14ebc4df3da +size 19308 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-perfect@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-perfect@2x.png new file mode 100644 index 00000000..65a06173 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74e6236e5e0e4dc4d33a470da86511cc97f30fa7a1a386072b7f3673948abb7 +size 57978 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-random.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-random.png new file mode 100644 index 00000000..6e663b0a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387252ebd45426a0b6bde3a46b42aa76d7c8b8a1220c3b810e2a81a60649dfc0 +size 18731 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-random@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-random@2x.png new file mode 100644 index 00000000..a0bc523c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d0ce25b6b42068f850817dd93515fac5c8bdb8e93c381e662b0f277cd289283 +size 54549 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax.png new file mode 100644 index 00000000..fe6abc28 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1bf3cc1f67ed6385fb167eef5ea0b2752c2de84ebbfbb9d9a4b7caf28062945 +size 18655 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax2.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax2.png new file mode 100644 index 00000000..a57e0b9e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b367e8f41b488a77bf332c480b54a985d668acceb8c301bc35f77672ee2a136 +size 19300 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax2@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax2@2x.png new file mode 100644 index 00000000..076594a1 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64b6d06843f7ac98c11e8cf4c9a921b62cc159db454b7876697dc3458000728 +size 55952 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax@2x.png new file mode 100644 index 00000000..85a1599c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d0bacdcfe2a48668f5d0ddf2c38b62c05d3a018bec2740e6cb85d339d673c9 +size 55638 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-scorev2.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-scorev2.png new file mode 100644 index 00000000..6725c055 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edcfe582027f66a0875336a9f0c3d51c6e72777b71e668cc79a2e54173b65bb +size 19574 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-scorev2@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..71fa1348 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd290a51ee225695d56eb37b519164c639acf75eea678701a95e1bb096db080 +size 58818 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-spunout.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-spunout.png new file mode 100644 index 00000000..31f053a1 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d02c27654c328eaf76c638ce7db5b5d7552ff5edaa91c64ef66769fbd5512cce +size 19716 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-spunout@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-spunout@2x.png new file mode 100644 index 00000000..f2162138 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:861afe4bf8dff1dc416b2e9268dc4dc3074a5d96456618840e36bd85a328ad90 +size 58255 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-suddendeath.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-suddendeath.png new file mode 100644 index 00000000..baa6569b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98dd00f230d6cf84f418c5fe0c252d95a4d0176c1c1cb988723b281a8a1b637b +size 18542 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-suddendeath@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..6723a5ac --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3f15a29bdadfc067c697c7d4a67147fe1e5e6ed2bc5fcd5c012aa51873daab +size 54233 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-target.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-target.png new file mode 100644 index 00000000..2dbb9b39 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016191322b91c4f1eccc02ec61f550c242105e46f218f706b6f9ad6ac0aa8719 +size 35042 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-target@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-target@2x.png new file mode 100644 index 00000000..bf4f42c5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a11ed0580fddedd600c456cda65addad0da728d29ce1e78bd00c885e6e753e +size 66321 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-targetpractice.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-targetpractice.png new file mode 100644 index 00000000..42ffb1f0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-targetpractice.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b5667fe90bd8a883670c1c18e45a3da2a1514020375d8d96b77ffb35396d9f2 +size 19667 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-targetpractice@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-targetpractice@2x.png new file mode 100644 index 00000000..6b7cf707 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mod-targetpractice@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2595a7fc5cdbc8909e2451e80ab7e2f74522ac7fc6a98933281941c31bb72e68 +size 58776 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode-over.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode-over.png new file mode 100644 index 00000000..328077e6 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306918983287f88f53e6e899c710f1cfa1a22686746f2fff93b497c88cf580e5 +size 5436 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode-over@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode-over@2x.png new file mode 100644 index 00000000..467a95e0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f554ebca705cda0155d042dac8c45eb5fbf7efc8634ddd22c54bd1e1c38bab3 +size 32680 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode.png new file mode 100644 index 00000000..3c69ce16 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39bc3e2b839dd8c751a16b51c6fe40ced49a989668abd932a39f19619459447e +size 183143 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode@2x.png new file mode 100644 index 00000000..25418198 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96cab272b19cc2c46be64e799b9089e4fa8b0d40b146fbfb81abdb2798e4f1bc +size 531804 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods-over.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods-over.png new file mode 100644 index 00000000..469b40d8 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7790ba829a8df4287d61355b5ccbb1721860a07469a43a27a09382491edaa1a +size 5824 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods-over@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods-over@2x.png new file mode 100644 index 00000000..ec14c02c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ccd4af284375acc60b7d9ceb56139f04e019c55dcdb66c501842e5483535fe2 +size 30123 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods.png new file mode 100644 index 00000000..7217d327 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7e7d3964b668d910c9a5a89f6043b4fe23930a1283ee06ff2033ef5857a0de +size 4778 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods@2x.png new file mode 100644 index 00000000..0dc23764 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d310fecc10738d066fb9f60eb2f6d0499a96c96295e4e34658d9458f242f873b +size 26453 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-options-over.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-options-over.png new file mode 100644 index 00000000..ce6e14df --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5f4090b394a54ead6fe43f48fd53c1f2d178b75ef07ab0d92b80f1b3d326a7 +size 5604 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-options-over@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-options-over@2x.png new file mode 100644 index 00000000..885c459f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6a8f931e6e3f7083207d47658a091fe387ce0308bb607fe582193629e66e52 +size 31205 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-options.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-options.png new file mode 100644 index 00000000..84d2bfcd --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44cff5d02a62858cfffe56d249e7201d5ccb134f96be24339908ff8f33092b0 +size 4383 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-options@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-options@2x.png new file mode 100644 index 00000000..91eefcbb --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ce7afe194647678fe821bea8518a3327bc295e29ae096a09a2e1b332e83fd3 +size 25498 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-random-over.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-random-over.png new file mode 100644 index 00000000..bf1d1656 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b86b946680a5919ced4b093a7c421b8e225da70c9d678627fa4d8d1c1046342 +size 5929 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-random-over@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-random-over@2x.png new file mode 100644 index 00000000..8345afd3 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a263f3d7580344fba2e10cb07432cc85a975c9788b228a7fe325665d11cf3a09 +size 30108 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-random.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-random.png new file mode 100644 index 00000000..9672c64d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a715b53a640a2ac55849b6afe0109b1dd3092d6afd6dd1da6dec41b7a5d3eca6 +size 4838 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-random@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-random@2x.png new file mode 100644 index 00000000..2f422e89 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d01a50d310bb46e68808fdfc8f776260815e3fa8a6554fd8c2447fd349b08b37 +size 26382 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-tab.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-tab.png new file mode 100644 index 00000000..ef05af34 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:596722da72c3ecab13e14bfda3389db31039842bfb0cb6c431e4e01e3062594e +size 18621 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/selection-tab@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/selection-tab@2x.png new file mode 100644 index 00000000..a639ad2a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/selection-tab@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044ad6e893ff24cc11fcd9e8ea8a53becf63372f7bd6e963fbb974dc20fc3917 +size 26158 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/skin.ini b/Skins/ZachTV Pink/ZachTV fixedexport/skin.ini new file mode 100644 index 00000000..19396b18 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/skin.ini @@ -0,0 +1,35 @@ +[General] +Name: ZachTV fixed export +Author: Zach +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +HitCircleOverlayAboveNumer: 1 +SliderStyle: 2 +Version: latest +AllowSliderBallTint: 0 +AnimationFramerate: 13 + +[Colours] +Combo1: 26,116,242 + + +SliderBorder: 255, 69, 0 +SliderTrackOverride: 5, 0 ,9 +SpinnerApproachCircle: 255,255,255 +MenuGlow: 250, 140, 166 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 0 +ScorePrefix: score + +//166, 152, 61 +//164, 111, 223 +//255, 105, 180 +//235, 88, 88 +//25, 137, 195 +//200, 91, 114 +//82, 162, 237 +//192, 190, 225 +//243, 218, 192 \ No newline at end of file diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderb0.png b/Skins/ZachTV Pink/ZachTV fixedexport/sliderb0.png new file mode 100644 index 00000000..f12daca4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98620ed2194d038ae91820426ab616245baaa4b2e4db5ec0eed3d3ce58c2a668 +size 10899 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderend.png b/Skins/ZachTV Pink/ZachTV fixedexport/sliderend.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sliderend.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderendcircle.png b/Skins/ZachTV Pink/ZachTV fixedexport/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderendcircle.zip b/Skins/ZachTV Pink/ZachTV fixedexport/sliderendcircle.zip new file mode 100644 index 00000000..f5472fdc Binary files /dev/null and b/Skins/ZachTV Pink/ZachTV fixedexport/sliderendcircle.zip differ diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderfollowcircle-0.png b/Skins/ZachTV Pink/ZachTV fixedexport/sliderfollowcircle-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sliderfollowcircle-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderfollowcircle.png b/Skins/ZachTV Pink/ZachTV fixedexport/sliderfollowcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderfollowpoint.png b/Skins/ZachTV Pink/ZachTV fixedexport/sliderfollowpoint.png new file mode 100644 index 00000000..bcce2d99 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sliderfollowpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e7989b0fa6a60f7a10a068b0ec98b5c5dc0e5285dd99f8fc33ae06472c711d +size 2779 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderpoint10.png b/Skins/ZachTV Pink/ZachTV fixedexport/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderpoint30.png b/Skins/ZachTV Pink/ZachTV fixedexport/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/sliderscorepoint.png b/Skins/ZachTV Pink/ZachTV fixedexport/sliderscorepoint.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitclap.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitclap2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitfinish.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitfinish2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitfinish2.wav new file mode 100644 index 00000000..3e8856c5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3708a5decda6b05082c11e4edd9bc03e80acbb6e32759feecc98636e9f2b797b +size 25804 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitfinish222.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitfinish222.wav new file mode 100644 index 00000000..958a9d0b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitfinish222.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48cfe4e7181a51e1e2db1b0b0f939a92a915200738aca02eb1d6ee380dc239ee +size 105884 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormal.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormal1.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormal2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormalh.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormalhh.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormalhh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitnormalhh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitsoft.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitwhistle.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitwhistle2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderslide.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderslide2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-slidertick.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-slidertick2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-slidertick2.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderwhistle.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderwhistle.wav new file mode 100644 index 00000000..cfc0314c --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b80e132dd7adf41d45f7e21352dc3420599474382dc87a3b1772f603ce32a81 +size 67256 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderwhistle2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/soft-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/softl-hitclap2.wav b/Skins/ZachTV Pink/ZachTV fixedexport/softl-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/softl-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/softl-hitfinish.wav b/Skins/ZachTV Pink/ZachTV fixedexport/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/softl-hitwhistle.wav b/Skins/ZachTV Pink/ZachTV fixedexport/softl-hitwhistle.wav new file mode 100644 index 00000000..b2ead5b1 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/softl-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0bf4803858de71662a0d497d789a4d24d5c3cee7d0976377abf47156578018 +size 20428 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-approachcircle.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-approachcircle@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-approachcircle@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-background.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-bottom.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-bottom.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-bottom@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-bottom@2x.png new file mode 100644 index 00000000..76e175fb --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04d400f0b6d1e0d390ade101df3877b8c6bcec8a7f21b2308f3e56c59b8b03b +size 3836 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-circle.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-circle.png new file mode 100644 index 00000000..412384b5 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985f8a593991015b91f3085f16efe8de64eff332cbdc21cc7f5cab153aec0eb6 +size 6338 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-circle@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-circle@2x.png new file mode 100644 index 00000000..37f8f90b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f08507d5ef48929f50f899c7d387ad8c78f86bb607a04bcbd0ea3e5c311cf6 +size 18294 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-clear.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-clear.png new file mode 100644 index 00000000..a560b924 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6699d8ab305d2a859af28872cbe3de0989de36a598d6b6bb2f3eb33493bc2f6 +size 911 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-clear@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-clear@2x.png new file mode 100644 index 00000000..bd7fae87 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae921da18f29a88056c4388b54ab362f89796bad9a8b483add548e8fa8b5a7f +size 2383 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-glow.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-glow.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-metre.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-metre.png new file mode 100644 index 00000000..3f4f6e04 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4311c79b1fffb7d61ac037fbd279ba9780f01dfddd74b79863e94dd1d42e8263 +size 11829 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-metre@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-metre@2x.png new file mode 100644 index 00000000..bffcbc0e --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce403f5d4883a2563d7461f4d693fed8b93b515d05a89aa8c862ba74f55143a +size 39555 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle2.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle2@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-osu.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-rpm.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-rpm.png new file mode 100644 index 00000000..cec1eda2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d359d20da7097cb7fc70d7f221a526e2b6466cb11e51304b01480cc23f90ff70 +size 3261 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-rpm@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-rpm@2x.png new file mode 100644 index 00000000..39a6692b --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6877128fd58b8818e813660e1cdb78ccd08220247e332e91ea9c1d0e22bebfa3 +size 8526 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-spin.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-spin.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner-top.png b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinner.zip b/Skins/ZachTV Pink/ZachTV fixedexport/spinner.zip new file mode 100644 index 00000000..4b1df5de Binary files /dev/null and b/Skins/ZachTV Pink/ZachTV fixedexport/spinner.zip differ diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinnerbonus.wav b/Skins/ZachTV Pink/ZachTV fixedexport/spinnerbonus.wav new file mode 100644 index 00000000..6e901ec0 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea3774c20fb4a84c33ab6e08b7db0042e2494173e26ca210ec6171c20da9c4 +size 178600 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinnerspin.mp3 b/Skins/ZachTV Pink/ZachTV fixedexport/spinnerspin.mp3 new file mode 100644 index 00000000..fdaf9a24 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinnerspin.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678990e0480ea95ff81eebe0e89ed4d1ed6171c275021f26059fcfc13c0dfe58 +size 13672 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/spinnerspin.wav b/Skins/ZachTV Pink/ZachTV fixedexport/spinnerspin.wav new file mode 100644 index 00000000..8e3c0d9a --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca06ced00a460d2bea791c5e0ef611d49aafb4ebb2790a8cb893080c4fb72826 +size 66080 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/star.png b/Skins/ZachTV Pink/ZachTV fixedexport/star.png new file mode 100644 index 00000000..ed5209fe --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d7990682ce7572182d838baa4acc247cf9beacfb883c746e254f5bc332037b +size 18486 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/star2.png b/Skins/ZachTV Pink/ZachTV fixedexport/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/welcome.wav b/Skins/ZachTV Pink/ZachTV fixedexport/welcome.wav new file mode 100644 index 00000000..c0e354ba --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1b8dfbbdf3dd45b23e323700df02bc14392ee619ebb02195712d323e4964a3 +size 1244780 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/welcome_text.png b/Skins/ZachTV Pink/ZachTV fixedexport/welcome_text.png new file mode 100644 index 00000000..c62964f2 --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/welcome_text.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356fad06d7f0de0cceffb735fbef14fc8d0b37de7c1c2096873a946e2f6df465 +size 35293 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/welcome_text@2x.png b/Skins/ZachTV Pink/ZachTV fixedexport/welcome_text@2x.png new file mode 100644 index 00000000..9f851c7f --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/welcome_text@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc17dc1be6cee0618a6d488af6c339379aace460d391260c2d1476bd4c3847d +size 48939 diff --git a/Skins/ZachTV Pink/ZachTV fixedexport/whoosh.wav b/Skins/ZachTV Pink/ZachTV fixedexport/whoosh.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/ZachTV fixedexport/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/approachcircle.png b/Skins/ZachTV Pink/approachcircle.png new file mode 100644 index 00000000..8b27020f --- /dev/null +++ b/Skins/ZachTV Pink/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9746f7c241952ba2bb7452bca84cb7712a318aa1ddf44013911bb59b712852b5 +size 15596 diff --git a/Skins/ZachTV Pink/button-left.png b/Skins/ZachTV Pink/button-left.png new file mode 100644 index 00000000..73be1774 --- /dev/null +++ b/Skins/ZachTV Pink/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06183e55dc221fbcf86ebcac8aad109a2fa4b4c6b5a4807cdf93d204c93a71a +size 3086 diff --git a/Skins/ZachTV Pink/button-left@2x.png b/Skins/ZachTV Pink/button-left@2x.png new file mode 100644 index 00000000..7d415bb2 --- /dev/null +++ b/Skins/ZachTV Pink/button-left@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34af139675376b9a787bbc38738bfb18a7163ee40f9e9e65f4c3a6b5d324e721 +size 3007 diff --git a/Skins/ZachTV Pink/button-middle.png b/Skins/ZachTV Pink/button-middle.png new file mode 100644 index 00000000..a4b7d150 --- /dev/null +++ b/Skins/ZachTV Pink/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6b70cf361cf25ce5b71b32c37cddfdfc80a94e0986b3d038eb624b92178b6a +size 3138 diff --git a/Skins/ZachTV Pink/button-middle@2x.png b/Skins/ZachTV Pink/button-middle@2x.png new file mode 100644 index 00000000..0b72cce4 --- /dev/null +++ b/Skins/ZachTV Pink/button-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421fe6083dd78ab60259100e2cfb36baf7f058c620e1af4c43bb8057887dd7ea +size 3433 diff --git a/Skins/ZachTV Pink/button-right.png b/Skins/ZachTV Pink/button-right.png new file mode 100644 index 00000000..bc386783 --- /dev/null +++ b/Skins/ZachTV Pink/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c5ff7abb8aa111361edb748aa62b874d13ce13d716100ec4cfb20bec7c3288 +size 3098 diff --git a/Skins/ZachTV Pink/button-right@2x.png b/Skins/ZachTV Pink/button-right@2x.png new file mode 100644 index 00000000..f22adbcc --- /dev/null +++ b/Skins/ZachTV Pink/button-right@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294d8d1036e83d92777e7e893a16e9a9bfb23eeaa8939cd57bbb49d8a99418e6 +size 3037 diff --git a/Skins/ZachTV Pink/check-off.wav b/Skins/ZachTV Pink/check-off.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/check-off.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/check-on.wav b/Skins/ZachTV Pink/check-on.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/check-on.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/click-close.wav b/Skins/ZachTV Pink/click-close.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/click-close.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/click-short-confirm.wav b/Skins/ZachTV Pink/click-short-confirm.wav new file mode 100644 index 00000000..9655d8c0 --- /dev/null +++ b/Skins/ZachTV Pink/click-short-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91f65a23362826bc277cb97f7fe6cc6ecc3030d725612d0d4da7e40a06ea392 +size 81624 diff --git a/Skins/ZachTV Pink/coins-earn.wav b/Skins/ZachTV Pink/coins-earn.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/coins-earn.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/coins-recharge.wav b/Skins/ZachTV Pink/coins-recharge.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/coins-recharge.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/coins-use.wav b/Skins/ZachTV Pink/coins-use.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/coins-use.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/combo-0.png b/Skins/ZachTV Pink/combo-0.png new file mode 100644 index 00000000..93fe7bd6 --- /dev/null +++ b/Skins/ZachTV Pink/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5251d80a3f78baa7cf5ae470c99492c7e86e9da4c800ca60654ab27fe87ef7e6 +size 3102 diff --git a/Skins/ZachTV Pink/combo-0@2x.png b/Skins/ZachTV Pink/combo-0@2x.png new file mode 100644 index 00000000..618d597a --- /dev/null +++ b/Skins/ZachTV Pink/combo-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd79758358b63de85c2c8051db34d82a8956df6cff788d6a2d7fd59851178109 +size 6105 diff --git a/Skins/ZachTV Pink/combo-1.png b/Skins/ZachTV Pink/combo-1.png new file mode 100644 index 00000000..64234aa7 --- /dev/null +++ b/Skins/ZachTV Pink/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f670b090dbdf719ed9010d3fe1cfdc395d44ae96a514ba611fe72a715a3a560b +size 1481 diff --git a/Skins/ZachTV Pink/combo-1@2x.png b/Skins/ZachTV Pink/combo-1@2x.png new file mode 100644 index 00000000..3dda7b51 --- /dev/null +++ b/Skins/ZachTV Pink/combo-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c81b5d57922a723b1e9097d7cab4d9d4b5cc4afdf0182e766b8dd4ccd4a9a56d +size 4032 diff --git a/Skins/ZachTV Pink/combo-2.png b/Skins/ZachTV Pink/combo-2.png new file mode 100644 index 00000000..ab3148e1 --- /dev/null +++ b/Skins/ZachTV Pink/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c5226192c136a8774c1a1ef3790a50fa0f49d252148c8e40736419eaddf8c8 +size 2825 diff --git a/Skins/ZachTV Pink/combo-2@2x.png b/Skins/ZachTV Pink/combo-2@2x.png new file mode 100644 index 00000000..02228ed1 --- /dev/null +++ b/Skins/ZachTV Pink/combo-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1196e53606043f73137c350ee7af6e6d2b8e7e3bd42bf3de9d8241438ef57b9 +size 6074 diff --git a/Skins/ZachTV Pink/combo-3.png b/Skins/ZachTV Pink/combo-3.png new file mode 100644 index 00000000..b78bad54 --- /dev/null +++ b/Skins/ZachTV Pink/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90503753051425c197ee901ebb226aab02ef76477a54fc343bd2577f466eb115 +size 3101 diff --git a/Skins/ZachTV Pink/combo-3@2x.png b/Skins/ZachTV Pink/combo-3@2x.png new file mode 100644 index 00000000..06829506 --- /dev/null +++ b/Skins/ZachTV Pink/combo-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e24c7a13ae3bdab109cb44f9d30bf8333216b87530693ed9cb0282c6b1b22e5 +size 6606 diff --git a/Skins/ZachTV Pink/combo-4.png b/Skins/ZachTV Pink/combo-4.png new file mode 100644 index 00000000..ea663b1a --- /dev/null +++ b/Skins/ZachTV Pink/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27aad98781bcdc5175d2b5a8e8b6a95b93945a094585c28758c62b2a11590dfe +size 2282 diff --git a/Skins/ZachTV Pink/combo-4@2x.png b/Skins/ZachTV Pink/combo-4@2x.png new file mode 100644 index 00000000..c463cdb8 --- /dev/null +++ b/Skins/ZachTV Pink/combo-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:785107963890f7471ccbbd3fe59e183619b1419de58898d02dd928f14e50f19f +size 4645 diff --git a/Skins/ZachTV Pink/combo-5@2x.png b/Skins/ZachTV Pink/combo-5@2x.png new file mode 100644 index 00000000..1954da45 --- /dev/null +++ b/Skins/ZachTV Pink/combo-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6071fdd89e57443edacd743948823cd96157c36265f5a3a94d9f0867fb8efb06 +size 6038 diff --git a/Skins/ZachTV Pink/combo-6.png b/Skins/ZachTV Pink/combo-6.png new file mode 100644 index 00000000..4a6c39f8 --- /dev/null +++ b/Skins/ZachTV Pink/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052e3c0e2697720388d55877006826f335421db362805b9dd6d373cb52327cc7 +size 3081 diff --git a/Skins/ZachTV Pink/combo-6@2x.png b/Skins/ZachTV Pink/combo-6@2x.png new file mode 100644 index 00000000..f576529a --- /dev/null +++ b/Skins/ZachTV Pink/combo-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ead4c7a2cdb10393785679c124274b5bca9524fc7dccc07865af1f319c7c65 +size 6571 diff --git a/Skins/ZachTV Pink/combo-7.png b/Skins/ZachTV Pink/combo-7.png new file mode 100644 index 00000000..27f3dbb2 --- /dev/null +++ b/Skins/ZachTV Pink/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90fd3d3e41f9a5fa6962ed02b3d66e2cfac677b2105018636223b90124027156 +size 2257 diff --git a/Skins/ZachTV Pink/combo-7@2x.png b/Skins/ZachTV Pink/combo-7@2x.png new file mode 100644 index 00000000..0aca0bf1 --- /dev/null +++ b/Skins/ZachTV Pink/combo-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae7c39cecab827e84a69437c78c354a5876488292bea1223fc07a11520614c5a +size 5176 diff --git a/Skins/ZachTV Pink/combo-8.png b/Skins/ZachTV Pink/combo-8.png new file mode 100644 index 00000000..c9eb7f86 --- /dev/null +++ b/Skins/ZachTV Pink/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51ece7e4c561baec641961bb9252c752e3ec752e12a06176650686cf3d373e4 +size 2996 diff --git a/Skins/ZachTV Pink/combo-8@2x.png b/Skins/ZachTV Pink/combo-8@2x.png new file mode 100644 index 00000000..90889543 --- /dev/null +++ b/Skins/ZachTV Pink/combo-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab3bf348d2249619cd048a548046e249a847e78662b6b5fb8b2b3f2cf3ce21c +size 6644 diff --git a/Skins/ZachTV Pink/combo-9.png b/Skins/ZachTV Pink/combo-9.png new file mode 100644 index 00000000..c1b76198 --- /dev/null +++ b/Skins/ZachTV Pink/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbcf43c2bba9e975f3be445a619258d2bfa6ea7b7d3a7f99fba5c83ff809ea0a +size 3068 diff --git a/Skins/ZachTV Pink/combo-9@2x.png b/Skins/ZachTV Pink/combo-9@2x.png new file mode 100644 index 00000000..1634c71b --- /dev/null +++ b/Skins/ZachTV Pink/combo-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f92c46375f3447ed92c65f9b54a305794b43c4410ad22d041fdf762c4280aaa +size 6631 diff --git a/Skins/ZachTV Pink/count.wav b/Skins/ZachTV Pink/count.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/ZachTV Pink/count.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/ZachTV Pink/count1.png b/Skins/ZachTV Pink/count1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/count1s.wav b/Skins/ZachTV Pink/count1s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/count2.png b/Skins/ZachTV Pink/count2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/count2s .wav b/Skins/ZachTV Pink/count2s .wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/ZachTV Pink/count2s .wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/ZachTV Pink/count2s.wav b/Skins/ZachTV Pink/count2s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/count3.png b/Skins/ZachTV Pink/count3.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/count3s.wav b/Skins/ZachTV Pink/count3s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/cursor-smoke.png b/Skins/ZachTV Pink/cursor-smoke.png new file mode 100644 index 00000000..83c5102f --- /dev/null +++ b/Skins/ZachTV Pink/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd75aea2816ade56adf3fd4ab7cc5ca52008a846c78d178e515b8b58ca87f8b +size 16257 diff --git a/Skins/ZachTV Pink/cursor.png b/Skins/ZachTV Pink/cursor.png new file mode 100644 index 00000000..10693c9a --- /dev/null +++ b/Skins/ZachTV Pink/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dd494374b93a803ffaf675a1ddef1d3cc7c44ed9ead3a8ff1ab7d08ff87f006 +size 4220 diff --git a/Skins/ZachTV Pink/cursorbb.png b/Skins/ZachTV Pink/cursorbb.png new file mode 100644 index 00000000..51635b78 --- /dev/null +++ b/Skins/ZachTV Pink/cursorbb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:442e980f3fb095a3a474812de8493b67b4d3afb47af019409c9838dbf93a784c +size 2241 diff --git a/Skins/ZachTV Pink/cursorbbb.png b/Skins/ZachTV Pink/cursorbbb.png new file mode 100644 index 00000000..7fcf2813 --- /dev/null +++ b/Skins/ZachTV Pink/cursorbbb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946f889346b527f37f62dc62911d03dbcc4b54cfab892806f42f28ae85840b7f +size 4975 diff --git a/Skins/ZachTV Pink/cursorggg.png b/Skins/ZachTV Pink/cursorggg.png new file mode 100644 index 00000000..ac76e3ad --- /dev/null +++ b/Skins/ZachTV Pink/cursorggg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c6f5fc532b7be54b94d450804ed0b171e6d5f8f20af1eb8f39b460d3cff3ac6 +size 46897 diff --git a/Skins/ZachTV Pink/cursormiddle.png b/Skins/ZachTV Pink/cursormiddle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/cursormiddle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/cursorsph.png b/Skins/ZachTV Pink/cursorsph.png new file mode 100644 index 00000000..475ce7d3 --- /dev/null +++ b/Skins/ZachTV Pink/cursorsph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed953739c054b97b887a3a6246054cc14c4efdedcbded5eaf55c377510ef2091 +size 5822 diff --git a/Skins/ZachTV Pink/cursortrail.png b/Skins/ZachTV Pink/cursortrail.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/ZachTV Pink/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/ZachTV Pink/cursortrailbl.png b/Skins/ZachTV Pink/cursortrailbl.png new file mode 100644 index 00000000..a63bdab6 --- /dev/null +++ b/Skins/ZachTV Pink/cursortrailbl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35dccd62c6ee3b238cbe0ddf22ee660633f8b59962872afbb7e00198a97b2542 +size 2903 diff --git a/Skins/ZachTV Pink/cursortrailflop.png b/Skins/ZachTV Pink/cursortrailflop.png new file mode 100644 index 00000000..0b75725e --- /dev/null +++ b/Skins/ZachTV Pink/cursortrailflop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53627af6edc5dc9a4b5005ef87202a252891c891aaf009c77b8562dda4cb01de +size 2229 diff --git a/Skins/ZachTV Pink/cursortrailnormal.png b/Skins/ZachTV Pink/cursortrailnormal.png new file mode 100644 index 00000000..3cfd3e47 --- /dev/null +++ b/Skins/ZachTV Pink/cursortrailnormal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db1b627e5ace83cce5247d806634472bdd1bfd1082a996db3a88d4bd92a278c +size 2459 diff --git a/Skins/ZachTV Pink/cursortrailrea.png b/Skins/ZachTV Pink/cursortrailrea.png new file mode 100644 index 00000000..51d2c9df --- /dev/null +++ b/Skins/ZachTV Pink/cursortrailrea.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2b45607260e45e74aa9dfb3172a61cb5d28d664e3fefe5692e2fb9a96e2a51 +size 2091 diff --git a/Skins/ZachTV Pink/cursortrailyyy.png b/Skins/ZachTV Pink/cursortrailyyy.png new file mode 100644 index 00000000..e5f3e23f --- /dev/null +++ b/Skins/ZachTV Pink/cursortrailyyy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf92aeb64af70d57efd1eb0c32a624aa47fce8a3290f122eb851e1b6d9e38ec +size 4386 diff --git a/Skins/ZachTV Pink/cursoruse.png b/Skins/ZachTV Pink/cursoruse.png new file mode 100644 index 00000000..6f1910bd --- /dev/null +++ b/Skins/ZachTV Pink/cursoruse.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e900fd00a76a6e1753f5b329597b0665992e1252f02d2766f4fc807bddfc5f5 +size 4103 diff --git a/Skins/ZachTV Pink/cursory.png b/Skins/ZachTV Pink/cursory.png new file mode 100644 index 00000000..4c72c478 --- /dev/null +++ b/Skins/ZachTV Pink/cursory.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd886a373032a714a89c9e7c44c3e1900759d7cc6f594206088ee571e3e6384 +size 2659 diff --git a/Skins/ZachTV Pink/cursoryy.png b/Skins/ZachTV Pink/cursoryy.png new file mode 100644 index 00000000..adb0435a --- /dev/null +++ b/Skins/ZachTV Pink/cursoryy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f972e4a790daa7dcb636236aa1ded2d3632e04e24ae760a26f7dcd1ab32520a0 +size 3901 diff --git a/Skins/ZachTV Pink/cursoryyy.png b/Skins/ZachTV Pink/cursoryyy.png new file mode 100644 index 00000000..326bb4ec --- /dev/null +++ b/Skins/ZachTV Pink/cursoryyy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639653875c19f9d9878d84388b36b755db15d657c94f9da5025b87747a91f874 +size 4768 diff --git a/Skins/ZachTV Pink/default-0.png b/Skins/ZachTV Pink/default-0.png new file mode 100644 index 00000000..a5b1169f --- /dev/null +++ b/Skins/ZachTV Pink/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be6c97885a74231c4fc1712055d6c42da4218cbaa080751ed920ade6c4325125 +size 5793 diff --git a/Skins/ZachTV Pink/default-1.png b/Skins/ZachTV Pink/default-1.png new file mode 100644 index 00000000..f73bcaf5 --- /dev/null +++ b/Skins/ZachTV Pink/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e251c6a09fb23989039eb26fa19d19bfeacc63c154e19bd3921e664800cb698c +size 4212 diff --git a/Skins/ZachTV Pink/default-2.png b/Skins/ZachTV Pink/default-2.png new file mode 100644 index 00000000..851c12e5 --- /dev/null +++ b/Skins/ZachTV Pink/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95fbbc544ba2db0f075f7354cec0c5c8331e19f1c1e120c8a46c40759ae61ad +size 6193 diff --git a/Skins/ZachTV Pink/default-3.png b/Skins/ZachTV Pink/default-3.png new file mode 100644 index 00000000..09e1bea7 --- /dev/null +++ b/Skins/ZachTV Pink/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54006378f82f4c6b15761428714d9c6f174b2091d03b3568b35d4d7f4330745c +size 6617 diff --git a/Skins/ZachTV Pink/default-4.png b/Skins/ZachTV Pink/default-4.png new file mode 100644 index 00000000..4dc9e4b5 --- /dev/null +++ b/Skins/ZachTV Pink/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca282dc5ee1bc4f5f3e058404be3d993fdcf8ec3a1de00513d9acb3ba54e999 +size 5072 diff --git a/Skins/ZachTV Pink/default-5.png b/Skins/ZachTV Pink/default-5.png new file mode 100644 index 00000000..23210b60 --- /dev/null +++ b/Skins/ZachTV Pink/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd03214a56fb2c119ff193e08634288599596510e6bae88e8bf22df772513f34 +size 5648 diff --git a/Skins/ZachTV Pink/default-6.png b/Skins/ZachTV Pink/default-6.png new file mode 100644 index 00000000..5250df9b --- /dev/null +++ b/Skins/ZachTV Pink/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ecf97f1741f15cd53efc853caea32002378a82bf8d2bf6ece58a5028b6c74e5 +size 6450 diff --git a/Skins/ZachTV Pink/default-7.png b/Skins/ZachTV Pink/default-7.png new file mode 100644 index 00000000..7b26592e --- /dev/null +++ b/Skins/ZachTV Pink/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6d1a11030b39bfbc52ce4fd7cd0a15d82fcb7f5aab11f3e8527e61cf06cba1 +size 4079 diff --git a/Skins/ZachTV Pink/default-8.png b/Skins/ZachTV Pink/default-8.png new file mode 100644 index 00000000..6e4657ec --- /dev/null +++ b/Skins/ZachTV Pink/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa569f16919c6fb90ae9019b0011afd12b66a132ea2419aa14a09dd8b0213fb0 +size 6660 diff --git a/Skins/ZachTV Pink/default-9.png b/Skins/ZachTV Pink/default-9.png new file mode 100644 index 00000000..ac943ed4 --- /dev/null +++ b/Skins/ZachTV Pink/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506372cff20448e5786242f63ee486ff87e661394e7473a7a21d4a4d002c233f +size 6362 diff --git a/Skins/ZachTV Pink/drum--hitwhistle.wav b/Skins/ZachTV Pink/drum--hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/drum--hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/drum-hitclap .wav b/Skins/ZachTV Pink/drum-hitclap .wav new file mode 100644 index 00000000..490e1003 --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitclap .wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0de5cc1d8faaf9b6a9c5dea37dd3605033ccfb566a2b77d90611a3ee2d768e6 +size 35812 diff --git a/Skins/ZachTV Pink/drum-hitclap.wav b/Skins/ZachTV Pink/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/ZachTV Pink/drum-hitclap2.wav b/Skins/ZachTV Pink/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/ZachTV Pink/drum-hitfinish.wav b/Skins/ZachTV Pink/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/ZachTV Pink/drum-hitfinish2.wav b/Skins/ZachTV Pink/drum-hitfinish2.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/ZachTV Pink/drum-hitnormal - Copy.wav b/Skins/ZachTV Pink/drum-hitnormal - Copy.wav new file mode 100644 index 00000000..98c1a1ef --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitnormal - Copy.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057307aef17643996d76e8255be3767e644c4fc788276107eac6bd314327789e +size 25580 diff --git a/Skins/ZachTV Pink/drum-hitnormal.wav b/Skins/ZachTV Pink/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/ZachTV Pink/drum-hitnormal2.wav b/Skins/ZachTV Pink/drum-hitnormal2.wav new file mode 100644 index 00000000..c2681a84 --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73bf862a8b098bf837d0522bfb73469f101b06ca2a75a2c59ab5c336d020dbb0 +size 28064 diff --git a/Skins/ZachTV Pink/drum-hitnormalh.wav b/Skins/ZachTV Pink/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/ZachTV Pink/drum-hitwhistle.wav b/Skins/ZachTV Pink/drum-hitwhistle.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/ZachTV Pink/drum-hitwhistle2.wav b/Skins/ZachTV Pink/drum-hitwhistle2.wav new file mode 100644 index 00000000..9c7d6314 --- /dev/null +++ b/Skins/ZachTV Pink/drum-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85b2d6a3b96fd189a16b6198b05c261eb9ce60f1fb419cda96b8ad15c779d34 +size 44546 diff --git a/Skins/ZachTV Pink/drum-sliderslide.wav b/Skins/ZachTV Pink/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/drum-sliderslide2.wav b/Skins/ZachTV Pink/drum-sliderslide2.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/ZachTV Pink/drum-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/ZachTV Pink/drum-slidertick.wav b/Skins/ZachTV Pink/drum-slidertick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/drum-slidertick2.wav b/Skins/ZachTV Pink/drum-slidertick2.wav new file mode 100644 index 00000000..9c7d6314 --- /dev/null +++ b/Skins/ZachTV Pink/drum-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85b2d6a3b96fd189a16b6198b05c261eb9ce60f1fb419cda96b8ad15c779d34 +size 44546 diff --git a/Skins/ZachTV Pink/drum-sliderwhistle.wav b/Skins/ZachTV Pink/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/fail-background.png b/Skins/ZachTV Pink/fail-background.png new file mode 100644 index 00000000..eb3a3c0e --- /dev/null +++ b/Skins/ZachTV Pink/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294ba08743a564d81215c159ffd19c97b6ee36c362a513e51338c2e48969e6fe +size 763888 diff --git a/Skins/ZachTV Pink/fail-background@2x.png b/Skins/ZachTV Pink/fail-background@2x.png new file mode 100644 index 00000000..09e700a1 --- /dev/null +++ b/Skins/ZachTV Pink/fail-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8970dc4d0a0fedf3de553d5457eb558b8d399ad732fc932262e3f1e73ab0eba +size 3413040 diff --git a/Skins/ZachTV Pink/failsound.mp3 b/Skins/ZachTV Pink/failsound.mp3 new file mode 100644 index 00000000..56d1406d --- /dev/null +++ b/Skins/ZachTV Pink/failsound.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf4dd5ad707bbd8bafa2b99c59a3e67cf8978ed4df63eb938b370016e4f3ca9 +size 72781 diff --git a/Skins/ZachTV Pink/followpoint-0.png b/Skins/ZachTV Pink/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/followpoint-1.png b/Skins/ZachTV Pink/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/followpoint-11.png b/Skins/ZachTV Pink/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/ZachTV Pink/followpoint-12.png b/Skins/ZachTV Pink/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/ZachTV Pink/followpoint-13.png b/Skins/ZachTV Pink/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/ZachTV Pink/followpoint-14.png b/Skins/ZachTV Pink/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/ZachTV Pink/followpoint-15.png b/Skins/ZachTV Pink/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/ZachTV Pink/followpoint-16.png b/Skins/ZachTV Pink/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/ZachTV Pink/followpoint-17.png b/Skins/ZachTV Pink/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/ZachTV Pink/followpoint-18.png b/Skins/ZachTV Pink/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/ZachTV Pink/followpoint-19.png b/Skins/ZachTV Pink/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/ZachTV Pink/followpoint-2.png b/Skins/ZachTV Pink/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/followpoint-20.png b/Skins/ZachTV Pink/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/ZachTV Pink/followpoint-21.png b/Skins/ZachTV Pink/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/ZachTV Pink/followpoint-22.png b/Skins/ZachTV Pink/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/ZachTV Pink/followpoint-23.png b/Skins/ZachTV Pink/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/ZachTV Pink/followpoint-3.png b/Skins/ZachTV Pink/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/ZachTV Pink/followpoint-4.png b/Skins/ZachTV Pink/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/followpoint-5.png b/Skins/ZachTV Pink/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/followpoint-6.png b/Skins/ZachTV Pink/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/followpoint-7.png b/Skins/ZachTV Pink/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/followpoint-8.png b/Skins/ZachTV Pink/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/followpoint-9.png b/Skins/ZachTV Pink/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/ZachTV Pink/followpoint.png b/Skins/ZachTV Pink/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/go.png b/Skins/ZachTV Pink/go.png new file mode 100644 index 00000000..f0824c9f --- /dev/null +++ b/Skins/ZachTV Pink/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9dd5ffe3a70db26c86ee8d913a80d85129b57ba690dc40a08a9d3cba90d8d39 +size 80132 diff --git a/Skins/ZachTV Pink/gos.wav b/Skins/ZachTV Pink/gos.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/heartbeat.wav b/Skins/ZachTV Pink/heartbeat.wav new file mode 100644 index 00000000..a6285b14 --- /dev/null +++ b/Skins/ZachTV Pink/heartbeat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ad36d832c0fc0d5ea2b36c686428863253c61b4fcef57f8cb0993a4f195908 +size 84844 diff --git a/Skins/ZachTV Pink/hit0.png b/Skins/ZachTV Pink/hit0.png new file mode 100644 index 00000000..322c03a8 --- /dev/null +++ b/Skins/ZachTV Pink/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580af8b765157f62d15e8d6681df871b4cbf2daaf86ce81f9721089412a887ff +size 19580 diff --git a/Skins/ZachTV Pink/hit100.png b/Skins/ZachTV Pink/hit100.png new file mode 100644 index 00000000..99811496 --- /dev/null +++ b/Skins/ZachTV Pink/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9944265cdc799d25aa0f8b7d06ff14b358298d2b7c04ae67a77da737a4f40ae1 +size 18146 diff --git a/Skins/ZachTV Pink/hit100k.png b/Skins/ZachTV Pink/hit100k.png new file mode 100644 index 00000000..99811496 --- /dev/null +++ b/Skins/ZachTV Pink/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9944265cdc799d25aa0f8b7d06ff14b358298d2b7c04ae67a77da737a4f40ae1 +size 18146 diff --git a/Skins/ZachTV Pink/hit300-0.png b/Skins/ZachTV Pink/hit300-0.png new file mode 100644 index 00000000..d1bcf1b5 --- /dev/null +++ b/Skins/ZachTV Pink/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4a2919025f3d10950a2875f7fc21afc4b06f828b27a1c44c0fec301b36f6bf +size 8887 diff --git a/Skins/ZachTV Pink/hit300-1.png b/Skins/ZachTV Pink/hit300-1.png new file mode 100644 index 00000000..5ce7908c --- /dev/null +++ b/Skins/ZachTV Pink/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10835c37aace68034108620f2a0a31012b25cdc2123f33c0ad0227c41de1aa9d +size 9239 diff --git a/Skins/ZachTV Pink/hit300-2.png b/Skins/ZachTV Pink/hit300-2.png new file mode 100644 index 00000000..37eaf193 --- /dev/null +++ b/Skins/ZachTV Pink/hit300-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54ed6dea1d697f090510be65027e93d36d441d8eb257e74e2ba29bca29854c2 +size 9474 diff --git a/Skins/ZachTV Pink/hit300-3.png b/Skins/ZachTV Pink/hit300-3.png new file mode 100644 index 00000000..bdaff46a --- /dev/null +++ b/Skins/ZachTV Pink/hit300-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18581000a4e8215a0af1b0ec4558a54ee68d32172e26c3301cd4fdade7625f7c +size 9535 diff --git a/Skins/ZachTV Pink/hit300-4.png b/Skins/ZachTV Pink/hit300-4.png new file mode 100644 index 00000000..e5dd1765 --- /dev/null +++ b/Skins/ZachTV Pink/hit300-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9510b91620b7d8900a648ef1c38ce49db96f7ec3d236733ec5ae3342a26079fa +size 9362 diff --git a/Skins/ZachTV Pink/hit300-5.png b/Skins/ZachTV Pink/hit300-5.png new file mode 100644 index 00000000..9c7b2f56 --- /dev/null +++ b/Skins/ZachTV Pink/hit300-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f40435f61550abae9eb0be2b7079379b714f1bd8bdb47a5ca3f59a6eb7472c +size 8892 diff --git a/Skins/ZachTV Pink/hit300-6.png b/Skins/ZachTV Pink/hit300-6.png new file mode 100644 index 00000000..f5672efc --- /dev/null +++ b/Skins/ZachTV Pink/hit300-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7e3a6af95420826fa245823145d22c091f729236ea0eb4e3a4d832e72b29a8 +size 8387 diff --git a/Skins/ZachTV Pink/hit300-7.png b/Skins/ZachTV Pink/hit300-7.png new file mode 100644 index 00000000..ba8d8db9 --- /dev/null +++ b/Skins/ZachTV Pink/hit300-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842053427f6c3e42f81810b5ae9c1942dc20dab613e66381b3a1afab59904e8a +size 7576 diff --git a/Skins/ZachTV Pink/hit300-8.png b/Skins/ZachTV Pink/hit300-8.png new file mode 100644 index 00000000..65c03efa --- /dev/null +++ b/Skins/ZachTV Pink/hit300-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e535c7058681bdaf4e0565b5f3434262e4bb36b3d4ba2e0e0d6ab090a30c8d8 +size 3088 diff --git a/Skins/ZachTV Pink/hit300.png b/Skins/ZachTV Pink/hit300.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/hit300g-0.png b/Skins/ZachTV Pink/hit300g-0.png new file mode 100644 index 00000000..d1bcf1b5 --- /dev/null +++ b/Skins/ZachTV Pink/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4a2919025f3d10950a2875f7fc21afc4b06f828b27a1c44c0fec301b36f6bf +size 8887 diff --git a/Skins/ZachTV Pink/hit300g-1.png b/Skins/ZachTV Pink/hit300g-1.png new file mode 100644 index 00000000..5ce7908c --- /dev/null +++ b/Skins/ZachTV Pink/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10835c37aace68034108620f2a0a31012b25cdc2123f33c0ad0227c41de1aa9d +size 9239 diff --git a/Skins/ZachTV Pink/hit300g-2.png b/Skins/ZachTV Pink/hit300g-2.png new file mode 100644 index 00000000..37eaf193 --- /dev/null +++ b/Skins/ZachTV Pink/hit300g-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54ed6dea1d697f090510be65027e93d36d441d8eb257e74e2ba29bca29854c2 +size 9474 diff --git a/Skins/ZachTV Pink/hit300g-3.png b/Skins/ZachTV Pink/hit300g-3.png new file mode 100644 index 00000000..bdaff46a --- /dev/null +++ b/Skins/ZachTV Pink/hit300g-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18581000a4e8215a0af1b0ec4558a54ee68d32172e26c3301cd4fdade7625f7c +size 9535 diff --git a/Skins/ZachTV Pink/hit300g-4.png b/Skins/ZachTV Pink/hit300g-4.png new file mode 100644 index 00000000..e5dd1765 --- /dev/null +++ b/Skins/ZachTV Pink/hit300g-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9510b91620b7d8900a648ef1c38ce49db96f7ec3d236733ec5ae3342a26079fa +size 9362 diff --git a/Skins/ZachTV Pink/hit300g-5.png b/Skins/ZachTV Pink/hit300g-5.png new file mode 100644 index 00000000..9c7b2f56 --- /dev/null +++ b/Skins/ZachTV Pink/hit300g-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f40435f61550abae9eb0be2b7079379b714f1bd8bdb47a5ca3f59a6eb7472c +size 8892 diff --git a/Skins/ZachTV Pink/hit300g-6.png b/Skins/ZachTV Pink/hit300g-6.png new file mode 100644 index 00000000..f5672efc --- /dev/null +++ b/Skins/ZachTV Pink/hit300g-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7e3a6af95420826fa245823145d22c091f729236ea0eb4e3a4d832e72b29a8 +size 8387 diff --git a/Skins/ZachTV Pink/hit300g-7.png b/Skins/ZachTV Pink/hit300g-7.png new file mode 100644 index 00000000..ba8d8db9 --- /dev/null +++ b/Skins/ZachTV Pink/hit300g-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842053427f6c3e42f81810b5ae9c1942dc20dab613e66381b3a1afab59904e8a +size 7576 diff --git a/Skins/ZachTV Pink/hit300g-8.png b/Skins/ZachTV Pink/hit300g-8.png new file mode 100644 index 00000000..65c03efa --- /dev/null +++ b/Skins/ZachTV Pink/hit300g-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e535c7058681bdaf4e0565b5f3434262e4bb36b3d4ba2e0e0d6ab090a30c8d8 +size 3088 diff --git a/src/default-skin/hit300g.png b/Skins/ZachTV Pink/hit300g.png similarity index 100% rename from src/default-skin/hit300g.png rename to Skins/ZachTV Pink/hit300g.png diff --git a/Skins/ZachTV Pink/hit300k-0.png b/Skins/ZachTV Pink/hit300k-0.png new file mode 100644 index 00000000..d1bcf1b5 --- /dev/null +++ b/Skins/ZachTV Pink/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4a2919025f3d10950a2875f7fc21afc4b06f828b27a1c44c0fec301b36f6bf +size 8887 diff --git a/Skins/ZachTV Pink/hit300k-1.png b/Skins/ZachTV Pink/hit300k-1.png new file mode 100644 index 00000000..5ce7908c --- /dev/null +++ b/Skins/ZachTV Pink/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10835c37aace68034108620f2a0a31012b25cdc2123f33c0ad0227c41de1aa9d +size 9239 diff --git a/Skins/ZachTV Pink/hit300k-2.png b/Skins/ZachTV Pink/hit300k-2.png new file mode 100644 index 00000000..37eaf193 --- /dev/null +++ b/Skins/ZachTV Pink/hit300k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54ed6dea1d697f090510be65027e93d36d441d8eb257e74e2ba29bca29854c2 +size 9474 diff --git a/Skins/ZachTV Pink/hit300k-3.png b/Skins/ZachTV Pink/hit300k-3.png new file mode 100644 index 00000000..bdaff46a --- /dev/null +++ b/Skins/ZachTV Pink/hit300k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18581000a4e8215a0af1b0ec4558a54ee68d32172e26c3301cd4fdade7625f7c +size 9535 diff --git a/Skins/ZachTV Pink/hit300k-4.png b/Skins/ZachTV Pink/hit300k-4.png new file mode 100644 index 00000000..e5dd1765 --- /dev/null +++ b/Skins/ZachTV Pink/hit300k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9510b91620b7d8900a648ef1c38ce49db96f7ec3d236733ec5ae3342a26079fa +size 9362 diff --git a/Skins/ZachTV Pink/hit300k-5.png b/Skins/ZachTV Pink/hit300k-5.png new file mode 100644 index 00000000..9c7b2f56 --- /dev/null +++ b/Skins/ZachTV Pink/hit300k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f40435f61550abae9eb0be2b7079379b714f1bd8bdb47a5ca3f59a6eb7472c +size 8892 diff --git a/Skins/ZachTV Pink/hit300k-6.png b/Skins/ZachTV Pink/hit300k-6.png new file mode 100644 index 00000000..f5672efc --- /dev/null +++ b/Skins/ZachTV Pink/hit300k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7e3a6af95420826fa245823145d22c091f729236ea0eb4e3a4d832e72b29a8 +size 8387 diff --git a/Skins/ZachTV Pink/hit300k-7.png b/Skins/ZachTV Pink/hit300k-7.png new file mode 100644 index 00000000..ba8d8db9 --- /dev/null +++ b/Skins/ZachTV Pink/hit300k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842053427f6c3e42f81810b5ae9c1942dc20dab613e66381b3a1afab59904e8a +size 7576 diff --git a/Skins/ZachTV Pink/hit300k-8.png b/Skins/ZachTV Pink/hit300k-8.png new file mode 100644 index 00000000..65c03efa --- /dev/null +++ b/Skins/ZachTV Pink/hit300k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e535c7058681bdaf4e0565b5f3434262e4bb36b3d4ba2e0e0d6ab090a30c8d8 +size 3088 diff --git a/src/default-skin/hit300k.png b/Skins/ZachTV Pink/hit300k.png similarity index 100% rename from src/default-skin/hit300k.png rename to Skins/ZachTV Pink/hit300k.png diff --git a/Skins/ZachTV Pink/hit50.png b/Skins/ZachTV Pink/hit50.png new file mode 100644 index 00000000..218e2997 --- /dev/null +++ b/Skins/ZachTV Pink/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab41f9b20058e54ed73ef064a12ea52d9d0ee164c6ce0481fe1b4952e5d668e +size 17702 diff --git a/Skins/ZachTV Pink/hit50k.png b/Skins/ZachTV Pink/hit50k.png new file mode 100644 index 00000000..f038a380 --- /dev/null +++ b/Skins/ZachTV Pink/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d193d0a5432be1b56dcd3bc63abe026f481d9ff5dcda3cb479eece1f2690b0b2 +size 17559 diff --git a/Skins/ZachTV Pink/hitcircle.png b/Skins/ZachTV Pink/hitcircle.png new file mode 100644 index 00000000..58d672a1 --- /dev/null +++ b/Skins/ZachTV Pink/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982980cd82d8c804bbd38d734e571e43ea007f09366492591b0ebcd76f3d2a77 +size 13076 diff --git a/Skins/ZachTV Pink/hitcircle.zip b/Skins/ZachTV Pink/hitcircle.zip new file mode 100644 index 00000000..2e3f3e9d Binary files /dev/null and b/Skins/ZachTV Pink/hitcircle.zip differ diff --git a/Skins/ZachTV Pink/hitcircleoverlay.png b/Skins/ZachTV Pink/hitcircleoverlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/inputoverlay-background.png b/Skins/ZachTV Pink/inputoverlay-background.png new file mode 100644 index 00000000..d0099855 --- /dev/null +++ b/Skins/ZachTV Pink/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71963f5335c43915f41121a5e2d2b5ac940334eaf2cdefbb89187e5fee072cae +size 14716 diff --git a/Skins/ZachTV Pink/inputoverlay-key.png b/Skins/ZachTV Pink/inputoverlay-key.png new file mode 100644 index 00000000..9602ac8f --- /dev/null +++ b/Skins/ZachTV Pink/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de5d7aa4ba33068e7a19a404c34da02e89a8c66da8ccb522d7a957e29f20b5f +size 788 diff --git a/Skins/ZachTV Pink/inputoverlay-key@2x.png b/Skins/ZachTV Pink/inputoverlay-key@2x.png new file mode 100644 index 00000000..6b68fc94 --- /dev/null +++ b/Skins/ZachTV Pink/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8477b7ce0ee9c5481492793bf250eef470829a90235b7254c4c7732ec78a55 +size 1448 diff --git a/Skins/ZachTV Pink/lighting.png b/Skins/ZachTV Pink/lighting.png new file mode 100644 index 00000000..748c33b0 --- /dev/null +++ b/Skins/ZachTV Pink/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbaab7b57f726e63217fdec7f94f0de436ff09023dd9fe543c607a580521d0e +size 11137 diff --git a/Skins/ZachTV Pink/match-confirm.wav b/Skins/ZachTV Pink/match-confirm.wav new file mode 100644 index 00000000..1c200078 --- /dev/null +++ b/Skins/ZachTV Pink/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3080f4fe3022fad58311afc95d94cafa3f02067ba4fca71bc9900ecad2b223c +size 202004 diff --git a/Skins/ZachTV Pink/match-join.wav b/Skins/ZachTV Pink/match-join.wav new file mode 100644 index 00000000..0248f2d5 --- /dev/null +++ b/Skins/ZachTV Pink/match-join.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df4d853a615d0db4e45aad14cb4285bc2988d75941fbd2237c02191ffa92a34 +size 106618 diff --git a/Skins/ZachTV Pink/match-leave.wav b/Skins/ZachTV Pink/match-leave.wav new file mode 100644 index 00000000..6f72dc74 --- /dev/null +++ b/Skins/ZachTV Pink/match-leave.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2719bd0345fb87bcf808e8b37549cd3611f3f9243018ac89317b0afca8885d41 +size 69754 diff --git a/Skins/ZachTV Pink/match-start.wav b/Skins/ZachTV Pink/match-start.wav new file mode 100644 index 00000000..6d7e12d8 --- /dev/null +++ b/Skins/ZachTV Pink/match-start.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1232fa88d32d50b9ec4a5a1e820633a9bce261627456495d9d309a787fc6d501 +size 158008 diff --git a/Skins/ZachTV Pink/medentero_01.png b/Skins/ZachTV Pink/medentero_01.png new file mode 100644 index 00000000..5eb10231 --- /dev/null +++ b/Skins/ZachTV Pink/medentero_01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cbb5144fafb06dc5e6c177ec4db7cc54e264d1ec23f24732a8213ed3e82d247 +size 306971 diff --git a/Skins/ZachTV Pink/medentero_02.png b/Skins/ZachTV Pink/medentero_02.png new file mode 100644 index 00000000..4adba978 --- /dev/null +++ b/Skins/ZachTV Pink/medentero_02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db88793fbd3a9ace0880f19f31f80587e3e778c00115081d2d8145f97fb93e3a +size 260083 diff --git a/Skins/ZachTV Pink/medentero_03.png b/Skins/ZachTV Pink/medentero_03.png new file mode 100644 index 00000000..ce72fdc9 --- /dev/null +++ b/Skins/ZachTV Pink/medentero_03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d72f4aac1b472bcf3189c335218b9e546fd00422f24a8770a6aa575ba17592 +size 252405 diff --git a/Skins/ZachTV Pink/medentero_04.png b/Skins/ZachTV Pink/medentero_04.png new file mode 100644 index 00000000..54166dc5 --- /dev/null +++ b/Skins/ZachTV Pink/medentero_04.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e86be40359fe9bf33040c0ee45e9f6d2e196c827b3e8dd6b63a6f38cafeec24 +size 314892 diff --git a/Skins/ZachTV Pink/menu-back-hover.wav b/Skins/ZachTV Pink/menu-back-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/menu-back-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/menu-background.jpg b/Skins/ZachTV Pink/menu-background.jpg new file mode 100644 index 00000000..4e36c8f8 --- /dev/null +++ b/Skins/ZachTV Pink/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51db9daf43c88297704f369379664093fdd3f09a723b08c97bfb0289bf3bcdde +size 1775 diff --git a/Skins/ZachTV Pink/menu-button-background.png b/Skins/ZachTV Pink/menu-button-background.png new file mode 100644 index 00000000..3b9bb4f3 --- /dev/null +++ b/Skins/ZachTV Pink/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab33320cefd2d65acc302c22461cff663bccd5d770e8e2de84d33f6a39e3e76 +size 128430 diff --git a/Skins/ZachTV Pink/menu-button-background@2x.png b/Skins/ZachTV Pink/menu-button-background@2x.png new file mode 100644 index 00000000..6c877a1f --- /dev/null +++ b/Skins/ZachTV Pink/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9113cc6733b20ab8242ccb75418850897023ef4c33fd46263be3417742879def +size 327336 diff --git a/Skins/ZachTV Pink/menu-charts-hover.wav b/Skins/ZachTV Pink/menu-charts-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/menu-charts-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/menu-direct-hover.wav b/Skins/ZachTV Pink/menu-direct-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/menu-direct-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/menu-edit-hover.wav b/Skins/ZachTV Pink/menu-edit-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/menu-edit-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/menu-exit-hover.wav b/Skins/ZachTV Pink/menu-exit-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/menu-exit-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/menu-freeplay-hover.wav b/Skins/ZachTV Pink/menu-freeplay-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/menu-freeplay-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/menu-multiplayer-hover.wav b/Skins/ZachTV Pink/menu-multiplayer-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/menu-multiplayer-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/menu-options-hover.wav b/Skins/ZachTV Pink/menu-options-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/menu-options-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/menu-play-hover.wav b/Skins/ZachTV Pink/menu-play-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/menu-play-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/menu-snow.png b/Skins/ZachTV Pink/menu-snow.png new file mode 100644 index 00000000..fcadd23c --- /dev/null +++ b/Skins/ZachTV Pink/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b98a07e766d159a5c984476ad9ec521fc69dcb9e956a13a93a81c06fde4f967 +size 21544 diff --git a/Skins/ZachTV Pink/menuback.wav b/Skins/ZachTV Pink/menuback.wav new file mode 100644 index 00000000..4501f2c0 --- /dev/null +++ b/Skins/ZachTV Pink/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da19d7a7e360a9c869bbd7d87ec361cb62067776b332ec129f4fd7e05b36414a +size 44650 diff --git a/Skins/ZachTV Pink/menuclick.wav b/Skins/ZachTV Pink/menuclick.wav new file mode 100644 index 00000000..5bb12cb7 --- /dev/null +++ b/Skins/ZachTV Pink/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3a82cb6d7ffae7821c9ebf6e5e3683ce31def100a2b6894cc46c941e74bbcc +size 26804 diff --git a/Skins/ZachTV Pink/metronomehigh.wav b/Skins/ZachTV Pink/metronomehigh.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/ZachTV Pink/metronomehigh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/ZachTV Pink/metronomelow.wav b/Skins/ZachTV Pink/metronomelow.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/ZachTV Pink/metronomelow.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/ZachTV Pink/mode-fruits-med.png b/Skins/ZachTV Pink/mode-fruits-med.png new file mode 100644 index 00000000..1b2f756b --- /dev/null +++ b/Skins/ZachTV Pink/mode-fruits-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412a79e74bf28233e9bc8099c7ffb8ffc2429994e3e81cfb898d2deaf4675515 +size 89104 diff --git a/Skins/ZachTV Pink/mode-fruits-med@2x.png b/Skins/ZachTV Pink/mode-fruits-med@2x.png new file mode 100644 index 00000000..6bf92b5d --- /dev/null +++ b/Skins/ZachTV Pink/mode-fruits-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277879756475a2eb6c57696980f2f32c6764b8e88ec62147a4ad01e50b180139 +size 250851 diff --git a/Skins/ZachTV Pink/mode-fruits.png b/Skins/ZachTV Pink/mode-fruits.png new file mode 100644 index 00000000..be6455c1 --- /dev/null +++ b/Skins/ZachTV Pink/mode-fruits.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7fba53f9fc344dd446242e4bd9b70f8d61f69c05bdad6f167ac5e3f391e6e5 +size 30690 diff --git a/Skins/ZachTV Pink/mode-fruits@2x.png b/Skins/ZachTV Pink/mode-fruits@2x.png new file mode 100644 index 00000000..ca8604ac --- /dev/null +++ b/Skins/ZachTV Pink/mode-fruits@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5956a96ffd5e7c05812d73bb2690e0d15cd3972509ceb46d18e1d333713e79 +size 68581 diff --git a/Skins/ZachTV Pink/mode-mania-med.png b/Skins/ZachTV Pink/mode-mania-med.png new file mode 100644 index 00000000..c2c9727a --- /dev/null +++ b/Skins/ZachTV Pink/mode-mania-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b503250bff6d9774ddc6a79882b74f21da3680c7ee17b36c14767306369cd96b +size 106353 diff --git a/Skins/ZachTV Pink/mode-mania-med@2x.png b/Skins/ZachTV Pink/mode-mania-med@2x.png new file mode 100644 index 00000000..5d271058 --- /dev/null +++ b/Skins/ZachTV Pink/mode-mania-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b35fd5efa5e75e6ee7ed17fd7b26eb60e0ab7567afcc54e41892574031486c +size 295453 diff --git a/Skins/ZachTV Pink/mode-mania.png b/Skins/ZachTV Pink/mode-mania.png new file mode 100644 index 00000000..bce8b23e --- /dev/null +++ b/Skins/ZachTV Pink/mode-mania.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:539ca47f397a30be845e4397eeadcc5be6ef211c190fce43bb375745a0ed686b +size 34637 diff --git a/Skins/ZachTV Pink/mode-mania@2x.png b/Skins/ZachTV Pink/mode-mania@2x.png new file mode 100644 index 00000000..1a9480b4 --- /dev/null +++ b/Skins/ZachTV Pink/mode-mania@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2183d9e59f89af5b16747c0aaee18dbd53fa53dd25ad5d2365a4c7b85272360d +size 79761 diff --git a/Skins/ZachTV Pink/mode-osu-med.png b/Skins/ZachTV Pink/mode-osu-med.png new file mode 100644 index 00000000..4b81c3c5 --- /dev/null +++ b/Skins/ZachTV Pink/mode-osu-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2bf741e4b2cc0ebbcc0f0d76c8e1147c40a5406db4f250500d89e0f0d295ee +size 106163 diff --git a/Skins/ZachTV Pink/mode-osu-med@2x.png b/Skins/ZachTV Pink/mode-osu-med@2x.png new file mode 100644 index 00000000..608e0095 --- /dev/null +++ b/Skins/ZachTV Pink/mode-osu-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e08813686b9480e8edf3a51dba47d6793c93b99a48ca7c3ea3fcc531bbdb14e +size 299732 diff --git a/Skins/ZachTV Pink/mode-osu.png b/Skins/ZachTV Pink/mode-osu.png new file mode 100644 index 00000000..4412fc8b --- /dev/null +++ b/Skins/ZachTV Pink/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137c1361ad480c702ccdd89fdf3921b4cbf480a770856783573c8d2750d4b88d +size 67018 diff --git a/Skins/ZachTV Pink/mode-osu@2x.png b/Skins/ZachTV Pink/mode-osu@2x.png new file mode 100644 index 00000000..640769ef --- /dev/null +++ b/Skins/ZachTV Pink/mode-osu@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193dd5d77500874a2fd6a19fa666baea8e971e7a910b273767cd0aec8be44f81 +size 156409 diff --git a/Skins/ZachTV Pink/mode-taiko-med.png b/Skins/ZachTV Pink/mode-taiko-med.png new file mode 100644 index 00000000..013d35e6 --- /dev/null +++ b/Skins/ZachTV Pink/mode-taiko-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a56bf5b588a67b1bffbccdd79d39eb1e1162bc85ef58218b4966d7de9a6d3fc +size 84834 diff --git a/Skins/ZachTV Pink/mode-taiko-med@2x.png b/Skins/ZachTV Pink/mode-taiko-med@2x.png new file mode 100644 index 00000000..16e78c17 --- /dev/null +++ b/Skins/ZachTV Pink/mode-taiko-med@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a9b8f72c2a7d32b7d2fb298665ec3d819416dcb1de42fbd4706068b9f6cf80 +size 240718 diff --git a/Skins/ZachTV Pink/mode-taiko.png b/Skins/ZachTV Pink/mode-taiko.png new file mode 100644 index 00000000..85260db3 --- /dev/null +++ b/Skins/ZachTV Pink/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a42a38228c22cf4a38d3a92a2dd46d41d6a4b957b4c29415d33887b5497e55 +size 50533 diff --git a/Skins/ZachTV Pink/mode-taiko@2x.png b/Skins/ZachTV Pink/mode-taiko@2x.png new file mode 100644 index 00000000..fb903667 --- /dev/null +++ b/Skins/ZachTV Pink/mode-taiko@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:825d197aed1f15cfcde1753374d52b85ac114a2e98b47a2e1320b65326f1f631 +size 116775 diff --git a/Skins/ZachTV Pink/nightcore-clap.wav b/Skins/ZachTV Pink/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/nightcore-finish.wav b/Skins/ZachTV Pink/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/nightcore-hat.wav b/Skins/ZachTV Pink/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/nightcore-kick.wav b/Skins/ZachTV Pink/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/nomal-sliderslide.wav b/Skins/ZachTV Pink/nomal-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/ZachTV Pink/nomal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/ZachTV Pink/normal-hitclap-1.wav b/Skins/ZachTV Pink/normal-hitclap-1.wav new file mode 100644 index 00000000..eb5855d5 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitclap-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:028029b157561e32735ab88f7826d630d4ba3cdbfe18bc2ab0bbd128f01f3eb7 +size 78898 diff --git a/Skins/ZachTV Pink/normal-hitclap.wav b/Skins/ZachTV Pink/normal-hitclap.wav new file mode 100644 index 00000000..44db7324 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6f08efde686ab3613bdfacc31148253e77864e715ddf18cc6f7030d5d10c4f +size 18220 diff --git a/Skins/ZachTV Pink/normal-hitclap1.wav b/Skins/ZachTV Pink/normal-hitclap1.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitclap1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/normal-hitclap2.wav b/Skins/ZachTV Pink/normal-hitclap2.wav new file mode 100644 index 00000000..5a2ba751 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a989cfa9852eefbe960d280ae807effe96e8ce04ff94ea3663f412459198e879 +size 129652 diff --git a/Skins/ZachTV Pink/normal-hitclap3.wav b/Skins/ZachTV Pink/normal-hitclap3.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitclap3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/ZachTV Pink/normal-hitfinish-1.wav b/Skins/ZachTV Pink/normal-hitfinish-1.wav new file mode 100644 index 00000000..8e835fe1 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitfinish-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9532f54b4712f0149f8a654f585ee8da917dc98f26d765fc63cc942af583436c +size 76534 diff --git a/Skins/ZachTV Pink/normal-hitfinish.wav b/Skins/ZachTV Pink/normal-hitfinish.wav new file mode 100644 index 00000000..a99486ac --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b295ebe9dd9402dc54c8c939a4327d3465a3c8fb3ecb68dd749cab9ca3cb05d +size 24784 diff --git a/Skins/ZachTV Pink/normal-hitfinish2.wav b/Skins/ZachTV Pink/normal-hitfinish2.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/ZachTV Pink/normal-hitfinishx.wav b/Skins/ZachTV Pink/normal-hitfinishx.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitfinishx.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/ZachTV Pink/normal-hitnormal-1.wav b/Skins/ZachTV Pink/normal-hitnormal-1.wav new file mode 100644 index 00000000..dc2225bf --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitnormal-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c17dc5a702d119f0684f78a7d50c9a515892bb98781952f234a9c7f8d9cca4d4 +size 76534 diff --git a/Skins/ZachTV Pink/normal-hitnormal.wav b/Skins/ZachTV Pink/normal-hitnormal.wav new file mode 100644 index 00000000..98c1a1ef --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057307aef17643996d76e8255be3767e644c4fc788276107eac6bd314327789e +size 25580 diff --git a/Skins/ZachTV Pink/normal-hitnormal1.wav b/Skins/ZachTV Pink/normal-hitnormal1.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/ZachTV Pink/normal-hitnormal2.wav b/Skins/ZachTV Pink/normal-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/ZachTV Pink/normal-hitnormalh.wav b/Skins/ZachTV Pink/normal-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/ZachTV Pink/normal-hitwhistle-1.wav b/Skins/ZachTV Pink/normal-hitwhistle-1.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitwhistle-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/ZachTV Pink/normal-hitwhistle.wav b/Skins/ZachTV Pink/normal-hitwhistle.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/ZachTV Pink/normal-hitwhistle1.wav b/Skins/ZachTV Pink/normal-hitwhistle1.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitwhistle1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/ZachTV Pink/normal-hitwhistle2.wav b/Skins/ZachTV Pink/normal-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/ZachTV Pink/normal-hitwhistlex.wav b/Skins/ZachTV Pink/normal-hitwhistlex.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitwhistlex.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/ZachTV Pink/normal-hitwistle.wav b/Skins/ZachTV Pink/normal-hitwistle.wav new file mode 100644 index 00000000..7ca41433 --- /dev/null +++ b/Skins/ZachTV Pink/normal-hitwistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f770d06b30853c8ed6b25464af6cf7b7f3f68c332dc8bcfa4ea23076f5445965 +size 13185 diff --git a/Skins/ZachTV Pink/normal-sliderslide.wav b/Skins/ZachTV Pink/normal-sliderslide.wav new file mode 100644 index 00000000..18bed76f --- /dev/null +++ b/Skins/ZachTV Pink/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:215d0d7fa8187499fa8e423dfab69c46605ca774a3970b146aca9d65106887c2 +size 35028 diff --git a/Skins/ZachTV Pink/normal-sliderslide2.wav b/Skins/ZachTV Pink/normal-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/normal-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/normal-slidertick.wav b/Skins/ZachTV Pink/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/ZachTV Pink/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/ZachTV Pink/normal-slidertick2.wav b/Skins/ZachTV Pink/normal-slidertick2.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/ZachTV Pink/normal-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/ZachTV Pink/normal-sliderwhistle-1.wav b/Skins/ZachTV Pink/normal-sliderwhistle-1.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/normal-sliderwhistle.wav b/Skins/ZachTV Pink/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/ZachTV Pink/normal-sliderwhistle2.wav b/Skins/ZachTV Pink/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/numbers.zip b/Skins/ZachTV Pink/numbers.zip new file mode 100644 index 00000000..82c24521 Binary files /dev/null and b/Skins/ZachTV Pink/numbers.zip differ diff --git a/Skins/ZachTV Pink/pause-back.png b/Skins/ZachTV Pink/pause-back.png new file mode 100644 index 00000000..bb900a6c --- /dev/null +++ b/Skins/ZachTV Pink/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e378a24d396c9b8170e4079a5f2d9078677ef2a68b077f47de950097fd3c2ab +size 327 diff --git a/Skins/ZachTV Pink/pause-back@2x.png b/Skins/ZachTV Pink/pause-back@2x.png new file mode 100644 index 00000000..c66c31f9 --- /dev/null +++ b/Skins/ZachTV Pink/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789f767ad8b30ee318475477b130abfcbe24a26eaa81044ae8c728bc7e39f344 +size 6115 diff --git a/Skins/ZachTV Pink/pause-continue.png b/Skins/ZachTV Pink/pause-continue.png new file mode 100644 index 00000000..bb900a6c --- /dev/null +++ b/Skins/ZachTV Pink/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e378a24d396c9b8170e4079a5f2d9078677ef2a68b077f47de950097fd3c2ab +size 327 diff --git a/Skins/ZachTV Pink/pause-continue@2x.png b/Skins/ZachTV Pink/pause-continue@2x.png new file mode 100644 index 00000000..c66c31f9 --- /dev/null +++ b/Skins/ZachTV Pink/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789f767ad8b30ee318475477b130abfcbe24a26eaa81044ae8c728bc7e39f344 +size 6115 diff --git a/Skins/ZachTV Pink/pause-overlay.png b/Skins/ZachTV Pink/pause-overlay.png new file mode 100644 index 00000000..09530fb5 --- /dev/null +++ b/Skins/ZachTV Pink/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ab65a2ee784edd2cbf45ed523d77541c2b27e58c7ec7e53d7affaccc9ef181 +size 762238 diff --git a/Skins/ZachTV Pink/pause-overlay@2x.png b/Skins/ZachTV Pink/pause-overlay@2x.png new file mode 100644 index 00000000..f8173206 --- /dev/null +++ b/Skins/ZachTV Pink/pause-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c4e9d5705c2e94718227e965e3ff1c800e42ae0ad950c99cfeab1361a4d20b +size 3433047 diff --git a/Skins/ZachTV Pink/pause-replay.png b/Skins/ZachTV Pink/pause-replay.png new file mode 100644 index 00000000..149704bf --- /dev/null +++ b/Skins/ZachTV Pink/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e916718550373bce26697f815f5e5fd48859666e8f25bc22b84b34e7ce191386 +size 3343 diff --git a/Skins/ZachTV Pink/pause-replay@2x.png b/Skins/ZachTV Pink/pause-replay@2x.png new file mode 100644 index 00000000..dbf3d593 --- /dev/null +++ b/Skins/ZachTV Pink/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08890e1b5f6bb33336aa31a81201b2e894324434828367e5a2da90df242d2aad +size 28720 diff --git a/Skins/ZachTV Pink/pause-retry.png b/Skins/ZachTV Pink/pause-retry.png new file mode 100644 index 00000000..afbe77c0 --- /dev/null +++ b/Skins/ZachTV Pink/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2def49dda061710cdd7c3ae581f4d5860e74feb1b54b99f666da6396a5241d9 +size 311 diff --git a/Skins/ZachTV Pink/pause-retry@2x.png b/Skins/ZachTV Pink/pause-retry@2x.png new file mode 100644 index 00000000..c31e0573 --- /dev/null +++ b/Skins/ZachTV Pink/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ad9cdb79dce3f7de16b86d58508c6df1d7a6973e0e98fa5134fa94f57fe462 +size 3720 diff --git a/Skins/ZachTV Pink/play-skip-0.png b/Skins/ZachTV Pink/play-skip-0.png new file mode 100644 index 00000000..4de3e8dd --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35010a9f69265e315fafefb4a3e6faec583d9c7bd8a7a095b978a6f7a37c3c27 +size 183573 diff --git a/Skins/ZachTV Pink/play-skip-0@2x.png b/Skins/ZachTV Pink/play-skip-0@2x.png new file mode 100644 index 00000000..ffd41780 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85649d20f795c00cd421820374e02b7c91e85ca80e5f14312c278d8eb85d908b +size 628177 diff --git a/Skins/ZachTV Pink/play-skip-1.png b/Skins/ZachTV Pink/play-skip-1.png new file mode 100644 index 00000000..8df73a52 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f524b9066b90b9f8b208c96248a8fc782605ae1db84825cb8d163fd7553995f2 +size 183573 diff --git a/Skins/ZachTV Pink/play-skip-1@2x.png b/Skins/ZachTV Pink/play-skip-1@2x.png new file mode 100644 index 00000000..6fd8a92c --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f53c69beffe4f8859fb5bad1bdf6aabeebf67fc4eddf33de5078d46aa7d6b3f +size 628177 diff --git a/Skins/ZachTV Pink/play-skip-2.png b/Skins/ZachTV Pink/play-skip-2.png new file mode 100644 index 00000000..a2ddd6a5 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278eb91104fc4e0ebc0e0ec73c79ba849b29dc13ad226317e812b43ec471baca +size 185193 diff --git a/Skins/ZachTV Pink/play-skip-2@2x.png b/Skins/ZachTV Pink/play-skip-2@2x.png new file mode 100644 index 00000000..e811288b --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ead1c602735b26a55db69bf62d32a6b69cffdba640111ac2ae737e21b6dbbe +size 632245 diff --git a/Skins/ZachTV Pink/play-skip-3.png b/Skins/ZachTV Pink/play-skip-3.png new file mode 100644 index 00000000..8adf4dfe --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cca035ad1b78f2b197e117cc216387147d965c4cc294ef9e1fea105b6fdae5ee +size 183025 diff --git a/Skins/ZachTV Pink/play-skip-3@2x.png b/Skins/ZachTV Pink/play-skip-3@2x.png new file mode 100644 index 00000000..3a38db85 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e6285f218e4c8004f737fc55f4977245d6255087afc6ac64473679d3afcd83b +size 625466 diff --git a/Skins/ZachTV Pink/play-skip-4.png b/Skins/ZachTV Pink/play-skip-4.png new file mode 100644 index 00000000..0f318566 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a513fa6714249eeeea185fc9609a7009106da2f95e9d860dd89701eb2cbd7a3 +size 185222 diff --git a/Skins/ZachTV Pink/play-skip-4@2x.png b/Skins/ZachTV Pink/play-skip-4@2x.png new file mode 100644 index 00000000..2dbec0c3 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208737104cdbb729e0143041a0312484e24459c0966a6b69cb5f721b44f224c7 +size 631579 diff --git a/Skins/ZachTV Pink/play-skip-5.png b/Skins/ZachTV Pink/play-skip-5.png new file mode 100644 index 00000000..e0e776f6 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175624b637e69c75a133c680e69ee33f0ac73fc8cd03989e4f0172bb60ec7119 +size 185222 diff --git a/Skins/ZachTV Pink/play-skip-5@2x.png b/Skins/ZachTV Pink/play-skip-5@2x.png new file mode 100644 index 00000000..9346913c --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72e515c5081998058ba32d7b0bd7a5a3434903568f89c53b8f09210eb4e92e6 +size 631579 diff --git a/Skins/ZachTV Pink/play-skip-6.png b/Skins/ZachTV Pink/play-skip-6.png new file mode 100644 index 00000000..5c8d8967 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df9297e933ef5f2bbae9c6f16ea4eada3a0c5545ad0c64be214f8a4166c274a +size 183025 diff --git a/Skins/ZachTV Pink/play-skip-6@2x.png b/Skins/ZachTV Pink/play-skip-6@2x.png new file mode 100644 index 00000000..77e567b9 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277b1933888bba051f6b8cc76cc2c18f53567757e4de266addc855b43ceca663 +size 625466 diff --git a/Skins/ZachTV Pink/play-skip-7.png b/Skins/ZachTV Pink/play-skip-7.png new file mode 100644 index 00000000..a7fea30b --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63170797a03321f1f7419e7db4d1856cd0b832a355713b1e9c693945d1cf0e6e +size 185193 diff --git a/Skins/ZachTV Pink/play-skip-7@2x.png b/Skins/ZachTV Pink/play-skip-7@2x.png new file mode 100644 index 00000000..629333f6 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595a7239ddaa243ea35f7c734bb741e7c4e1dc6de0a29031773786c82be8f683 +size 632245 diff --git a/Skins/ZachTV Pink/play-skip.png b/Skins/ZachTV Pink/play-skip.png new file mode 100644 index 00000000..60d32741 --- /dev/null +++ b/Skins/ZachTV Pink/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5586b94d2865925edf67869a09de23404890291af7631010caafda2e973f81c7 +size 9576 diff --git a/Skins/ZachTV Pink/play-warningarrow.png b/Skins/ZachTV Pink/play-warningarrow.png new file mode 100644 index 00000000..f816631d --- /dev/null +++ b/Skins/ZachTV Pink/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45735d4943496de2a14dabcd4cb8cfca132ba47b6b194708d4a3b0b19a52f4d4 +size 11952 diff --git a/Skins/ZachTV Pink/playfield.png b/Skins/ZachTV Pink/playfield.png new file mode 100644 index 00000000..40a61d93 --- /dev/null +++ b/Skins/ZachTV Pink/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d3fbf590a584138bb563319747dbef0c9e41db91f19ff45d41e785a5f4f98 +size 2808 diff --git a/Skins/ZachTV Pink/ranking-A-small.png b/Skins/ZachTV Pink/ranking-A-small.png new file mode 100644 index 00000000..111396ae --- /dev/null +++ b/Skins/ZachTV Pink/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae69fc0cca2df2c4fe71d78d05db04687a291d6cbcb448b8bb45448c96fa52df +size 1242 diff --git a/Skins/ZachTV Pink/ranking-A.png b/Skins/ZachTV Pink/ranking-A.png new file mode 100644 index 00000000..ccc914cc --- /dev/null +++ b/Skins/ZachTV Pink/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c093afa87a8b75310c300606a8a043590361c2fef80ebe21c45a130af4abf772 +size 15456 diff --git a/Skins/ZachTV Pink/ranking-B-small.png b/Skins/ZachTV Pink/ranking-B-small.png new file mode 100644 index 00000000..d1a776d5 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9870b31a1de0522118ed08258ff53f2f37967ce04112ecb7feb721260f434b21 +size 1262 diff --git a/Skins/ZachTV Pink/ranking-B.png b/Skins/ZachTV Pink/ranking-B.png new file mode 100644 index 00000000..9745170a --- /dev/null +++ b/Skins/ZachTV Pink/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9b5a480e93cfdba02221a16fc4c54ef3d2f06b1a98fac0f61f320317364866 +size 14577 diff --git a/Skins/ZachTV Pink/ranking-C-small.png b/Skins/ZachTV Pink/ranking-C-small.png new file mode 100644 index 00000000..b9f3be82 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d71bdf1d9082f8039289ce85a1374abdbb8f0396fe5c47c104d9363eb513d499 +size 1350 diff --git a/Skins/ZachTV Pink/ranking-C.png b/Skins/ZachTV Pink/ranking-C.png new file mode 100644 index 00000000..83c4c4d8 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebfb636cd2820f0f739e4b74bde242621ab79e8f9615c712e0a146bae88e735f +size 18152 diff --git a/Skins/ZachTV Pink/ranking-D-small.png b/Skins/ZachTV Pink/ranking-D-small.png new file mode 100644 index 00000000..b1b44f92 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:152071d867c561da2feb13bb5ae2935485591891b6593216e0573434276b7f42 +size 1076 diff --git a/Skins/ZachTV Pink/ranking-D.png b/Skins/ZachTV Pink/ranking-D.png new file mode 100644 index 00000000..6abc2675 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2d97795c84302c03a167ae8a6aa06bdea1dc57b110cec96ec7869f0fc12a7e +size 12712 diff --git a/Skins/ZachTV Pink/ranking-S-small.png b/Skins/ZachTV Pink/ranking-S-small.png new file mode 100644 index 00000000..9f523e90 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b75f886285b0f55add1ba57d87ff45b6a40249180870d3526c90bf76b955826d +size 1455 diff --git a/Skins/ZachTV Pink/ranking-S-small.psd b/Skins/ZachTV Pink/ranking-S-small.psd new file mode 100644 index 00000000..9b7fec13 Binary files /dev/null and b/Skins/ZachTV Pink/ranking-S-small.psd differ diff --git a/Skins/ZachTV Pink/ranking-S-small@2x-.png b/Skins/ZachTV Pink/ranking-S-small@2x-.png new file mode 100644 index 00000000..afaaf42b --- /dev/null +++ b/Skins/ZachTV Pink/ranking-S-small@2x-.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec712148a0452073279eae3ed5cf04f053361c5e39468e1ca8eb0bbd2449331 +size 28870 diff --git a/Skins/ZachTV Pink/ranking-S.png b/Skins/ZachTV Pink/ranking-S.png new file mode 100644 index 00000000..1dc6e5ac --- /dev/null +++ b/Skins/ZachTV Pink/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f655197804555372fe4862eeb169f5ef60ac5f3290f3ffc4e7f6422325031104 +size 20126 diff --git a/Skins/ZachTV Pink/ranking-SH-small.png b/Skins/ZachTV Pink/ranking-SH-small.png new file mode 100644 index 00000000..91087349 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:838c021cb2c0d942c46d179d729fa20e72de76c3844fc634da95048358f3c434 +size 1462 diff --git a/Skins/ZachTV Pink/ranking-SH-small@2x.png b/Skins/ZachTV Pink/ranking-SH-small@2x.png new file mode 100644 index 00000000..f6b7ec67 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f95660f5bec80c271a077fd2160181a44a875b54d39671cad1044b489c03cf2 +size 28466 diff --git a/Skins/ZachTV Pink/ranking-SH.png b/Skins/ZachTV Pink/ranking-SH.png new file mode 100644 index 00000000..dc30bf88 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2dc8820bdffd48f1bf14b05bd00a86c1afb5eedb32a7d93d0c671cba19e8680 +size 19900 diff --git a/Skins/ZachTV Pink/ranking-X-small.png b/Skins/ZachTV Pink/ranking-X-small.png new file mode 100644 index 00000000..e01c6b98 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003be8e14009643dafcb43e821feab24ae0603254cd3ab52112db6282804633a +size 2160 diff --git a/Skins/ZachTV Pink/ranking-X-small@2x-.png b/Skins/ZachTV Pink/ranking-X-small@2x-.png new file mode 100644 index 00000000..a385cf84 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-X-small@2x-.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4c1d7996f0b0ba32684fdfd06681f16b0c060b1eb95a2a1940c7e481bacb01 +size 29315 diff --git a/Skins/ZachTV Pink/ranking-X.png b/Skins/ZachTV Pink/ranking-X.png new file mode 100644 index 00000000..82ba9ae9 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b7ac82b3e1fba91b840eb48bb8fb5e7efdbc96fc468890bacd76c959e2f261 +size 27249 diff --git a/Skins/ZachTV Pink/ranking-XH-small.png b/Skins/ZachTV Pink/ranking-XH-small.png new file mode 100644 index 00000000..fc3e9fb8 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87903140ad1223dbc5154da7fe5462eda99e8c8c8bb589878eded09944c1ad43 +size 2090 diff --git a/Skins/ZachTV Pink/ranking-XH-small@2x.png b/Skins/ZachTV Pink/ranking-XH-small@2x.png new file mode 100644 index 00000000..4b3f9f30 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8b406c571f4de236b82a80142809aecb38914d423d2b49d57342fb75a900da +size 29209 diff --git a/Skins/ZachTV Pink/ranking-XH.png b/Skins/ZachTV Pink/ranking-XH.png new file mode 100644 index 00000000..641d5bfa --- /dev/null +++ b/Skins/ZachTV Pink/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1ed17428472d356c5f22d05d79bd447d25402ea9df15b606391670f035301d +size 26326 diff --git a/Skins/ZachTV Pink/ranking-accuracy.png b/Skins/ZachTV Pink/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/ZachTV Pink/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/ZachTV Pink/ranking-accuracy@2x.png b/Skins/ZachTV Pink/ranking-accuracy@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-accuracy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ranking-graph.png b/Skins/ZachTV Pink/ranking-graph.png new file mode 100644 index 00000000..4836ccd7 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed21032e6501ffc5fbf65008587ac900ef9b4510a00c4213b7f2bd4458c2d76f +size 313 diff --git a/Skins/ZachTV Pink/ranking-graph@2x.png b/Skins/ZachTV Pink/ranking-graph@2x.png new file mode 100644 index 00000000..942962cc --- /dev/null +++ b/Skins/ZachTV Pink/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0874b12597a35ddae29c0a23c95b1960387549cead39309a5092fd3efc923c19 +size 4243 diff --git a/Skins/ZachTV Pink/ranking-maxcombo.png b/Skins/ZachTV Pink/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/ZachTV Pink/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/ZachTV Pink/ranking-maxcombo@2x.png b/Skins/ZachTV Pink/ranking-maxcombo@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-maxcombo@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/ranking-panel.png b/Skins/ZachTV Pink/ranking-panel.png new file mode 100644 index 00000000..e214ea8d --- /dev/null +++ b/Skins/ZachTV Pink/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e86e505c785ad401a5478951df9724a720ffc8e4760f2c95aeeb84cf3c43aad +size 547513 diff --git a/Skins/ZachTV Pink/ranking-perfect.png b/Skins/ZachTV Pink/ranking-perfect.png new file mode 100644 index 00000000..21497033 --- /dev/null +++ b/Skins/ZachTV Pink/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd270e4a6be35e0280d43a628b590c47f199874a2d9fadbb7d36656e5efcdcc2 +size 253 diff --git a/Skins/ZachTV Pink/ranking-perfect@2x.png b/Skins/ZachTV Pink/ranking-perfect@2x.png new file mode 100644 index 00000000..4e08b17b --- /dev/null +++ b/Skins/ZachTV Pink/ranking-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487ba6c5224cd0db0b05988288037fae98603faa99c0d9c356487378e4003982 +size 38242 diff --git a/Skins/ZachTV Pink/ranking-title.png b/Skins/ZachTV Pink/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/ZachTV Pink/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/ZachTV Pink/ready.png b/Skins/ZachTV Pink/ready.png new file mode 100644 index 00000000..af52bfff --- /dev/null +++ b/Skins/ZachTV Pink/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4612190892494e984ea4c859151b7390d7346538724c2795ce99b7c08a8cbc51 +size 51909 diff --git a/Skins/ZachTV Pink/readys.wav b/Skins/ZachTV Pink/readys.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/reversearrow.png b/Skins/ZachTV Pink/reversearrow.png new file mode 100644 index 00000000..35905dad --- /dev/null +++ b/Skins/ZachTV Pink/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f313c239c30b0426384ac7b5dda9f3dbf57545d186be9335e44fa7f222f702f3 +size 4312 diff --git a/Skins/ZachTV Pink/reversearrow@2x.png b/Skins/ZachTV Pink/reversearrow@2x.png new file mode 100644 index 00000000..5ca50f5f --- /dev/null +++ b/Skins/ZachTV Pink/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b35c420e83258771930792865abf4925f9cb47c31e055752934691350974c778 +size 23223 diff --git a/Skins/ZachTV Pink/score-0.png b/Skins/ZachTV Pink/score-0.png new file mode 100644 index 00000000..adfe34c2 --- /dev/null +++ b/Skins/ZachTV Pink/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618e0fba14c4b6c608e739c90a98c191c9079483f6da3184e8ac90c27e905663 +size 18413 diff --git a/Skins/ZachTV Pink/score-0@2x.png b/Skins/ZachTV Pink/score-0@2x.png new file mode 100644 index 00000000..e9a88220 --- /dev/null +++ b/Skins/ZachTV Pink/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685143a1b701bf6d4e56e6a96b7093000e60aee9eab0334dcf1355ebe16cde7e +size 4405 diff --git a/Skins/ZachTV Pink/score-1.png b/Skins/ZachTV Pink/score-1.png new file mode 100644 index 00000000..094a2da6 --- /dev/null +++ b/Skins/ZachTV Pink/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112e2dd83b77a4cfb4f5251dd73ae8cff7de080c0bd57972f3112d406c69c23e +size 18073 diff --git a/Skins/ZachTV Pink/score-1@2x.png b/Skins/ZachTV Pink/score-1@2x.png new file mode 100644 index 00000000..9b36b5f5 --- /dev/null +++ b/Skins/ZachTV Pink/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6038c9d37237094bd046442dafa4af8a2e992bcb607ef81f15af6f882ab12e +size 3377 diff --git a/Skins/ZachTV Pink/score-2.png b/Skins/ZachTV Pink/score-2.png new file mode 100644 index 00000000..a68dbcb0 --- /dev/null +++ b/Skins/ZachTV Pink/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd30bd721e5388502837eec39b6d7f20a28fb88a26565c3b446b19251b3661ff +size 18431 diff --git a/Skins/ZachTV Pink/score-2@2x.png b/Skins/ZachTV Pink/score-2@2x.png new file mode 100644 index 00000000..e32e36dc --- /dev/null +++ b/Skins/ZachTV Pink/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f891bc7cac11f878b7f04edac957ed0153f296578b5b488ce725a1cdea9a4e9 +size 4318 diff --git a/Skins/ZachTV Pink/score-3.png b/Skins/ZachTV Pink/score-3.png new file mode 100644 index 00000000..01206deb --- /dev/null +++ b/Skins/ZachTV Pink/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62269e13f2c50f82dc3f9a42cc856df462cd3bc60b74b89ba6daaf174e3c2b4e +size 18878 diff --git a/Skins/ZachTV Pink/score-3@2x.png b/Skins/ZachTV Pink/score-3@2x.png new file mode 100644 index 00000000..79f23de8 --- /dev/null +++ b/Skins/ZachTV Pink/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6503413eca54021c51518d6c8ea761ad93911202fc3aa07c189de3798aa02b7 +size 18922 diff --git a/Skins/ZachTV Pink/score-4.png b/Skins/ZachTV Pink/score-4.png new file mode 100644 index 00000000..7c08b7f9 --- /dev/null +++ b/Skins/ZachTV Pink/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8839f49441bc53fd5d7401afce8348fbd48b3be053a18146e87f33f237a2a42 +size 18426 diff --git a/Skins/ZachTV Pink/score-4@2x.png b/Skins/ZachTV Pink/score-4@2x.png new file mode 100644 index 00000000..5dae0d50 --- /dev/null +++ b/Skins/ZachTV Pink/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9168d1cf20464e9f40424ce2f98815fa51d241f18c2f6802b1eba3d84d0bb68 +size 3953 diff --git a/Skins/ZachTV Pink/score-5.png b/Skins/ZachTV Pink/score-5.png new file mode 100644 index 00000000..73ceac6d --- /dev/null +++ b/Skins/ZachTV Pink/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24342da3e3ed75305a2b131bc0344b41de719bf9d6c8f20dae5e26ebd064b33f +size 18385 diff --git a/Skins/ZachTV Pink/score-5@2x.png b/Skins/ZachTV Pink/score-5@2x.png new file mode 100644 index 00000000..3f6c899d --- /dev/null +++ b/Skins/ZachTV Pink/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd930305492952363f3580ffbdc2489e7306e42c05c939b13a29aba23be5a039 +size 4118 diff --git a/Skins/ZachTV Pink/score-6.png b/Skins/ZachTV Pink/score-6.png new file mode 100644 index 00000000..0e8aa0b7 --- /dev/null +++ b/Skins/ZachTV Pink/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c140e016da6d028567386fe05f31154f048c4bf85238ea3fd9e53ca38f3bc4a7 +size 18539 diff --git a/Skins/ZachTV Pink/score-6@2x.png b/Skins/ZachTV Pink/score-6@2x.png new file mode 100644 index 00000000..fb175c61 --- /dev/null +++ b/Skins/ZachTV Pink/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d15d3a9368291bfaf301cd25dcde1dbec6c95ebea58c519d1f5a7098a04656 +size 4568 diff --git a/Skins/ZachTV Pink/score-7.png b/Skins/ZachTV Pink/score-7.png new file mode 100644 index 00000000..5ce9602e --- /dev/null +++ b/Skins/ZachTV Pink/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f9eff68b87b2b9c571c24ac70afee4eee36ab13f533a85a8524395b74df991 +size 18322 diff --git a/Skins/ZachTV Pink/score-7@2x.png b/Skins/ZachTV Pink/score-7@2x.png new file mode 100644 index 00000000..db2b89c4 --- /dev/null +++ b/Skins/ZachTV Pink/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d445c83c254ea9f4841489b5659d0cc3ed406317b4c0d07640e087a6cd58f9 +size 4355 diff --git a/Skins/ZachTV Pink/score-8.png b/Skins/ZachTV Pink/score-8.png new file mode 100644 index 00000000..ac7ff9a8 --- /dev/null +++ b/Skins/ZachTV Pink/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d2283f2f24b804afe33097864ea82cad7b6ba7a5a02f6fe7defffe37426a5e +size 18672 diff --git a/Skins/ZachTV Pink/score-8@2x.png b/Skins/ZachTV Pink/score-8@2x.png new file mode 100644 index 00000000..9508efb0 --- /dev/null +++ b/Skins/ZachTV Pink/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53376b01e7527a99d0e0f43fefcc0571b53957738267198811219fb1623ab69d +size 5261 diff --git a/Skins/ZachTV Pink/score-9.png b/Skins/ZachTV Pink/score-9.png new file mode 100644 index 00000000..dcad2978 --- /dev/null +++ b/Skins/ZachTV Pink/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50bb1e81a39b06530eed8f76d801ec48264caf7f61f303107fb1702c7470e75 +size 18536 diff --git a/Skins/ZachTV Pink/score-9@2x.png b/Skins/ZachTV Pink/score-9@2x.png new file mode 100644 index 00000000..5f023729 --- /dev/null +++ b/Skins/ZachTV Pink/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3e43ff10846404dc141e9a4ffdc7cbb24f4c4d0ce16eafd644e3c1c17ba4ff +size 4578 diff --git a/Skins/ZachTV Pink/score-comma.png b/Skins/ZachTV Pink/score-comma.png new file mode 100644 index 00000000..3a16314a --- /dev/null +++ b/Skins/ZachTV Pink/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63c1cb06838b8a22c85411151d6e05dec0d74eb8a78c3a4238e0099f83855e5c +size 384 diff --git a/Skins/ZachTV Pink/score-comma@2x.png b/Skins/ZachTV Pink/score-comma@2x.png new file mode 100644 index 00000000..2145bdf0 --- /dev/null +++ b/Skins/ZachTV Pink/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7fa1acef7597a6ec6eff4175ff9431ba88a13d105d4626a1606f5aa718fb3ac +size 893 diff --git a/Skins/ZachTV Pink/score-dot.png b/Skins/ZachTV Pink/score-dot.png new file mode 100644 index 00000000..15fb8b60 --- /dev/null +++ b/Skins/ZachTV Pink/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67daf330ccc1683c4a6df2cfb45dcc388d3654accd1bc698373d50df2230e472 +size 311 diff --git a/Skins/ZachTV Pink/score-dot@2x.png b/Skins/ZachTV Pink/score-dot@2x.png new file mode 100644 index 00000000..a1b2dfae --- /dev/null +++ b/Skins/ZachTV Pink/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f16aa6c7e5fe6d953bd8943402d6fe0b78afce63abd6da754bc53f772554c18 +size 648 diff --git a/Skins/ZachTV Pink/score-percent.png b/Skins/ZachTV Pink/score-percent.png new file mode 100644 index 00000000..9be7101d --- /dev/null +++ b/Skins/ZachTV Pink/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02fa0c9e4e7a15f5ede7a35d8dc7236bfdd6107890a44eb98ab9678e2ed2ad3 +size 1354 diff --git a/Skins/ZachTV Pink/score-x.png b/Skins/ZachTV Pink/score-x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/scorebar-bg - ___.png b/Skins/ZachTV Pink/scorebar-bg - ___.png new file mode 100644 index 00000000..375dd95f --- /dev/null +++ b/Skins/ZachTV Pink/scorebar-bg - ___.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9197be9a8d05e743f275a9cf8dce82c199cca910a8cd9b5f19ed702c75a006 +size 48649 diff --git a/Skins/ZachTV Pink/scorebar-bg.png b/Skins/ZachTV Pink/scorebar-bg.png new file mode 100644 index 00000000..b093ad53 --- /dev/null +++ b/Skins/ZachTV Pink/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f0b825a14421ba9fe172201ad6b58eecd92ef73d33cbd90c810a1e58af5910 +size 46978 diff --git a/Skins/ZachTV Pink/scorebar-bg@2x - ___.png b/Skins/ZachTV Pink/scorebar-bg@2x - ___.png new file mode 100644 index 00000000..d0bcdd8d --- /dev/null +++ b/Skins/ZachTV Pink/scorebar-bg@2x - ___.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b27f8506e72cb7b5e679c46b9a898692d51527dd67a5ff721329f9d8f94d5ef +size 228696 diff --git a/Skins/ZachTV Pink/scorebar-colour@2x.png b/Skins/ZachTV Pink/scorebar-colour@2x.png new file mode 100644 index 00000000..7336073f --- /dev/null +++ b/Skins/ZachTV Pink/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:031bb40a2b9311d016aef76ba1e2a28db72d5fd60fac2e8ab37e0d85e46fb905 +size 7459 diff --git a/Skins/ZachTV Pink/scorebar-ki.png b/Skins/ZachTV Pink/scorebar-ki.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/scorebar-kidanger.png b/Skins/ZachTV Pink/scorebar-kidanger.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/scorebar-kidanger2.png b/Skins/ZachTV Pink/scorebar-kidanger2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/scoreentry-0.png b/Skins/ZachTV Pink/scoreentry-0.png new file mode 100644 index 00000000..0381c21f --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d77227f750612337b50101f5a6c6dc19b2a0bfd8eb64b460d9f68362153d846 +size 21921 diff --git a/Skins/ZachTV Pink/scoreentry-0@2x.png b/Skins/ZachTV Pink/scoreentry-0@2x.png new file mode 100644 index 00000000..0c4730d4 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24bbb2c96cdd4c880922bb46530d502d17fbff2d5bf9586877deda1197bf9e90 +size 22126 diff --git a/Skins/ZachTV Pink/scoreentry-1.png b/Skins/ZachTV Pink/scoreentry-1.png new file mode 100644 index 00000000..59596e3a --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842f1837502bd64f1f6ad366933a0c28c1a5f19f1d433c3385372d2d1e352ba8 +size 21574 diff --git a/Skins/ZachTV Pink/scoreentry-1@2x.png b/Skins/ZachTV Pink/scoreentry-1@2x.png new file mode 100644 index 00000000..c9b1d464 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b811f3cd30f6ebe6286cb3e988f1fcf81016f2204f11ac9d9138366ff72a756 +size 21502 diff --git a/Skins/ZachTV Pink/scoreentry-2.png b/Skins/ZachTV Pink/scoreentry-2.png new file mode 100644 index 00000000..cb1a26be --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbe4d357581f4e764c065d6d8ce127a17d06a019449ea1093f33bc446d12b05 +size 21886 diff --git a/Skins/ZachTV Pink/scoreentry-2@2x.png b/Skins/ZachTV Pink/scoreentry-2@2x.png new file mode 100644 index 00000000..00d6419c --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6666b586d75e8abbefb8408d6dd6b88c24fc22c3b988756995f0eff8912226c +size 22114 diff --git a/Skins/ZachTV Pink/scoreentry-3.png b/Skins/ZachTV Pink/scoreentry-3.png new file mode 100644 index 00000000..1aa506bb --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3297479f4fa9a07a8bff9a0d0e7b2bf498583807773d5308eefe48bb20689235 +size 21825 diff --git a/Skins/ZachTV Pink/scoreentry-3@2x.png b/Skins/ZachTV Pink/scoreentry-3@2x.png new file mode 100644 index 00000000..1711b1a5 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab374fecf2ec3f4a66181a4913a1158c29cef5e30798a7e74d231b553c752191 +size 22046 diff --git a/Skins/ZachTV Pink/scoreentry-4.png b/Skins/ZachTV Pink/scoreentry-4.png new file mode 100644 index 00000000..f30babd7 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694e54e3d835fb573c68c2543d64b32850347d1908a4a1aa1347d922120aeeb4 +size 21841 diff --git a/Skins/ZachTV Pink/scoreentry-4@2x.png b/Skins/ZachTV Pink/scoreentry-4@2x.png new file mode 100644 index 00000000..6ba8205e --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5418d151acc82ddc9c0d71f86ee043d160fc662f52fd792a70841a7549f6966b +size 21867 diff --git a/Skins/ZachTV Pink/scoreentry-5.png b/Skins/ZachTV Pink/scoreentry-5.png new file mode 100644 index 00000000..1112c992 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7194fb2349f872de7e7593882414f73ab9fd04fc1d06c0e64d623dbd5982d52 +size 21949 diff --git a/Skins/ZachTV Pink/scoreentry-5@2x.png b/Skins/ZachTV Pink/scoreentry-5@2x.png new file mode 100644 index 00000000..8feac1ef --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3167c64e6883b278184748f57205c3c91f2787ab4e30a16a18e997ece771958a +size 22039 diff --git a/Skins/ZachTV Pink/scoreentry-6.png b/Skins/ZachTV Pink/scoreentry-6.png new file mode 100644 index 00000000..bb3c2fca --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c096288852ff07e5062fff0bfa2e1e86c78eb08165b735e50d1e484bcb707c8a +size 21958 diff --git a/Skins/ZachTV Pink/scoreentry-6@2x.png b/Skins/ZachTV Pink/scoreentry-6@2x.png new file mode 100644 index 00000000..827172dd --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076dd03dbbfe86e148ca79f205959437dc443669205f45ed15a63fb9c2b861a6 +size 22285 diff --git a/Skins/ZachTV Pink/scoreentry-7.png b/Skins/ZachTV Pink/scoreentry-7.png new file mode 100644 index 00000000..b5549013 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a74e6b41595be855c4ee551e454e6c4def99324d05eb59585ec07c9c2df517 +size 21730 diff --git a/Skins/ZachTV Pink/scoreentry-7@2x.png b/Skins/ZachTV Pink/scoreentry-7@2x.png new file mode 100644 index 00000000..9f8ca788 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81d03b40197d4f47d032028bcff1d4ad3411f84f05cf14e1bc1937c3aab66596 +size 22028 diff --git a/Skins/ZachTV Pink/scoreentry-8.png b/Skins/ZachTV Pink/scoreentry-8.png new file mode 100644 index 00000000..da20ecdf --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:043a09f62e9b6cc8b923d1fb24c3403904d63cd5ffe48394f3f1b2ad526db44a +size 22021 diff --git a/Skins/ZachTV Pink/scoreentry-8@2x.png b/Skins/ZachTV Pink/scoreentry-8@2x.png new file mode 100644 index 00000000..ea16b731 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d65c2c932f0a2027a5349e8d0d234773af39b5e8eaba640c7e012dd7cff7e8e8 +size 22414 diff --git a/Skins/ZachTV Pink/scoreentry-9.png b/Skins/ZachTV Pink/scoreentry-9.png new file mode 100644 index 00000000..b5393d27 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a581c54b47365cb7b483fecc210b2c2287eaa73da154ac4261fdb2596fa2c5d8 +size 21906 diff --git a/Skins/ZachTV Pink/scoreentry-9@2x.png b/Skins/ZachTV Pink/scoreentry-9@2x.png new file mode 100644 index 00000000..9de786d7 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b5dd59e5f9ed293b7c195d3156f1106ce99754dfadbb62f117e515404b37c6 +size 22243 diff --git a/Skins/ZachTV Pink/scoreentry-comma.png b/Skins/ZachTV Pink/scoreentry-comma.png new file mode 100644 index 00000000..a630dfb4 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4658eef96663a47687d54144a72f68498b006414de43a89dcfc7f9fe2c6cba9 +size 21415 diff --git a/Skins/ZachTV Pink/scoreentry-comma@2x.png b/Skins/ZachTV Pink/scoreentry-comma@2x.png new file mode 100644 index 00000000..0cd090bf --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0cf8447a77047f1447c65d419fab97e2c02cdf643a99a111b4b3144b4c7e262 +size 21393 diff --git a/Skins/ZachTV Pink/scoreentry-dot.png b/Skins/ZachTV Pink/scoreentry-dot.png new file mode 100644 index 00000000..10a59536 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5aef521e03015c781dba66b84a6c81cd22a493d7fa7cfbe7e797ec19c63a9f0 +size 21415 diff --git a/Skins/ZachTV Pink/scoreentry-dot@2x.png b/Skins/ZachTV Pink/scoreentry-dot@2x.png new file mode 100644 index 00000000..5655d84b --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ce62c94f5e20c0221b57444b552359fa0313d79b5ff6716d299d590f038f97 +size 21393 diff --git a/Skins/ZachTV Pink/scoreentry-percent.png b/Skins/ZachTV Pink/scoreentry-percent.png new file mode 100644 index 00000000..ba09646a --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e1b2d11f130e05f3a8f6011311c52133f68cbb88a8e204b6eff6a9962d0ead +size 21960 diff --git a/Skins/ZachTV Pink/scoreentry-percent@2x.png b/Skins/ZachTV Pink/scoreentry-percent@2x.png new file mode 100644 index 00000000..17ea1ed8 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6e4e47ce6065716592017d71d873dc82ca5c1ce1e41801a8abef3a98a8bb1f +size 22781 diff --git a/Skins/ZachTV Pink/scoreentry-x.png b/Skins/ZachTV Pink/scoreentry-x.png new file mode 100644 index 00000000..f8577ef2 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc97e8d0d98cff79da25e5d5ef357f783397dedbfa70bad94232356c291ef428 +size 21729 diff --git a/Skins/ZachTV Pink/scoreentry-x@2x.png b/Skins/ZachTV Pink/scoreentry-x@2x.png new file mode 100644 index 00000000..a2098687 --- /dev/null +++ b/Skins/ZachTV Pink/scoreentry-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41da1186a4bd8eae4dc10ab39d5a3fbb1b0b99a01335a63d444ce0ab128c8a2 +size 22091 diff --git a/Skins/ZachTV Pink/section-fail.png b/Skins/ZachTV Pink/section-fail.png new file mode 100644 index 00000000..e0d6874a --- /dev/null +++ b/Skins/ZachTV Pink/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eece2aa26c2490d0049635f1e14f7d364a9c4e21f27d465da561a2369d78b309 +size 273986 diff --git a/Skins/ZachTV Pink/section-fail@2x.png b/Skins/ZachTV Pink/section-fail@2x.png new file mode 100644 index 00000000..9bbbcb72 --- /dev/null +++ b/Skins/ZachTV Pink/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43ba12164fe6408ded0803b0a228ce36ea7566412ba3302499750dd55335e42 +size 721571 diff --git a/Skins/ZachTV Pink/section-pass.png b/Skins/ZachTV Pink/section-pass.png new file mode 100644 index 00000000..b7d97b82 --- /dev/null +++ b/Skins/ZachTV Pink/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3908e6c8d16968e6d729f38d2dd014d2a93fece5124cf4de9dff061e4fcb89a2 +size 291287 diff --git a/Skins/ZachTV Pink/section-pass@2x.png b/Skins/ZachTV Pink/section-pass@2x.png new file mode 100644 index 00000000..945a5aa8 --- /dev/null +++ b/Skins/ZachTV Pink/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e252ce1923bfb12c8206e5631f205855611ecb9004a7412409cb2319115b373c +size 772295 diff --git a/Skins/ZachTV Pink/sectionfail.mp3 b/Skins/ZachTV Pink/sectionfail.mp3 new file mode 100644 index 00000000..46faebd5 --- /dev/null +++ b/Skins/ZachTV Pink/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e69376507f7827f74a279e97b39d8d49f95b9f80817d2cef7283f81b5496d0d +size 62080 diff --git a/Skins/ZachTV Pink/sectionfail.wav b/Skins/ZachTV Pink/sectionfail.wav new file mode 100644 index 00000000..1371a14b --- /dev/null +++ b/Skins/ZachTV Pink/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119f36074e78d3177aa8989e091e48c27292c578eb916596f28fc92fa4cff7cc +size 256430 diff --git a/Skins/ZachTV Pink/sectionpass.mp3 b/Skins/ZachTV Pink/sectionpass.mp3 new file mode 100644 index 00000000..2a9f0464 --- /dev/null +++ b/Skins/ZachTV Pink/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306b0030cbfbfbfddb68ac17c99e267ea0bc69080475ca9236c73f00131f7dee +size 40576 diff --git a/Skins/ZachTV Pink/sectionpass.wav b/Skins/ZachTV Pink/sectionpass.wav new file mode 100644 index 00000000..71e0a0e6 --- /dev/null +++ b/Skins/ZachTV Pink/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec584a07d2f4aaf8515fe3cd282f0e0b4b7205dfce6014d4050926d38d97c809 +size 520206 diff --git a/Skins/ZachTV Pink/seeya.wav b/Skins/ZachTV Pink/seeya.wav new file mode 100644 index 00000000..95d542b1 --- /dev/null +++ b/Skins/ZachTV Pink/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74aff9139e206ea07d58e8827bf041f31fee5b8e30cf6ca797c92f68b9465ca5 +size 1134320 diff --git a/Skins/ZachTV Pink/select-difficulty.wav b/Skins/ZachTV Pink/select-difficulty.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/select-expand.wav b/Skins/ZachTV Pink/select-expand.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/select-expand.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/selection-mode-over.png b/Skins/ZachTV Pink/selection-mode-over.png new file mode 100644 index 00000000..328077e6 --- /dev/null +++ b/Skins/ZachTV Pink/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306918983287f88f53e6e899c710f1cfa1a22686746f2fff93b497c88cf580e5 +size 5436 diff --git a/Skins/ZachTV Pink/selection-mode-over@2x.png b/Skins/ZachTV Pink/selection-mode-over@2x.png new file mode 100644 index 00000000..467a95e0 --- /dev/null +++ b/Skins/ZachTV Pink/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f554ebca705cda0155d042dac8c45eb5fbf7efc8634ddd22c54bd1e1c38bab3 +size 32680 diff --git a/Skins/ZachTV Pink/selection-mode.png b/Skins/ZachTV Pink/selection-mode.png new file mode 100644 index 00000000..3c69ce16 --- /dev/null +++ b/Skins/ZachTV Pink/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39bc3e2b839dd8c751a16b51c6fe40ced49a989668abd932a39f19619459447e +size 183143 diff --git a/Skins/ZachTV Pink/selection-mode@2x.png b/Skins/ZachTV Pink/selection-mode@2x.png new file mode 100644 index 00000000..25418198 --- /dev/null +++ b/Skins/ZachTV Pink/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96cab272b19cc2c46be64e799b9089e4fa8b0d40b146fbfb81abdb2798e4f1bc +size 531804 diff --git a/Skins/ZachTV Pink/selection-mods-over.png b/Skins/ZachTV Pink/selection-mods-over.png new file mode 100644 index 00000000..469b40d8 --- /dev/null +++ b/Skins/ZachTV Pink/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7790ba829a8df4287d61355b5ccbb1721860a07469a43a27a09382491edaa1a +size 5824 diff --git a/Skins/ZachTV Pink/selection-mods-over@2x.png b/Skins/ZachTV Pink/selection-mods-over@2x.png new file mode 100644 index 00000000..ec14c02c --- /dev/null +++ b/Skins/ZachTV Pink/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ccd4af284375acc60b7d9ceb56139f04e019c55dcdb66c501842e5483535fe2 +size 30123 diff --git a/Skins/ZachTV Pink/selection-mods.png b/Skins/ZachTV Pink/selection-mods.png new file mode 100644 index 00000000..7217d327 --- /dev/null +++ b/Skins/ZachTV Pink/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7e7d3964b668d910c9a5a89f6043b4fe23930a1283ee06ff2033ef5857a0de +size 4778 diff --git a/Skins/ZachTV Pink/selection-mods@2x.png b/Skins/ZachTV Pink/selection-mods@2x.png new file mode 100644 index 00000000..0dc23764 --- /dev/null +++ b/Skins/ZachTV Pink/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d310fecc10738d066fb9f60eb2f6d0499a96c96295e4e34658d9458f242f873b +size 26453 diff --git a/Skins/ZachTV Pink/selection-options-over.png b/Skins/ZachTV Pink/selection-options-over.png new file mode 100644 index 00000000..ce6e14df --- /dev/null +++ b/Skins/ZachTV Pink/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5f4090b394a54ead6fe43f48fd53c1f2d178b75ef07ab0d92b80f1b3d326a7 +size 5604 diff --git a/Skins/ZachTV Pink/selection-options-over@2x.png b/Skins/ZachTV Pink/selection-options-over@2x.png new file mode 100644 index 00000000..885c459f --- /dev/null +++ b/Skins/ZachTV Pink/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6a8f931e6e3f7083207d47658a091fe387ce0308bb607fe582193629e66e52 +size 31205 diff --git a/Skins/ZachTV Pink/selection-options.png b/Skins/ZachTV Pink/selection-options.png new file mode 100644 index 00000000..84d2bfcd --- /dev/null +++ b/Skins/ZachTV Pink/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44cff5d02a62858cfffe56d249e7201d5ccb134f96be24339908ff8f33092b0 +size 4383 diff --git a/Skins/ZachTV Pink/selection-options@2x.png b/Skins/ZachTV Pink/selection-options@2x.png new file mode 100644 index 00000000..91eefcbb --- /dev/null +++ b/Skins/ZachTV Pink/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ce7afe194647678fe821bea8518a3327bc295e29ae096a09a2e1b332e83fd3 +size 25498 diff --git a/Skins/ZachTV Pink/selection-random-over.png b/Skins/ZachTV Pink/selection-random-over.png new file mode 100644 index 00000000..bf1d1656 --- /dev/null +++ b/Skins/ZachTV Pink/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b86b946680a5919ced4b093a7c421b8e225da70c9d678627fa4d8d1c1046342 +size 5929 diff --git a/Skins/ZachTV Pink/selection-random-over@2x.png b/Skins/ZachTV Pink/selection-random-over@2x.png new file mode 100644 index 00000000..8345afd3 --- /dev/null +++ b/Skins/ZachTV Pink/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a263f3d7580344fba2e10cb07432cc85a975c9788b228a7fe325665d11cf3a09 +size 30108 diff --git a/Skins/ZachTV Pink/selection-random.png b/Skins/ZachTV Pink/selection-random.png new file mode 100644 index 00000000..9672c64d --- /dev/null +++ b/Skins/ZachTV Pink/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a715b53a640a2ac55849b6afe0109b1dd3092d6afd6dd1da6dec41b7a5d3eca6 +size 4838 diff --git a/Skins/ZachTV Pink/selection-random@2x.png b/Skins/ZachTV Pink/selection-random@2x.png new file mode 100644 index 00000000..2f422e89 --- /dev/null +++ b/Skins/ZachTV Pink/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d01a50d310bb46e68808fdfc8f776260815e3fa8a6554fd8c2447fd349b08b37 +size 26382 diff --git a/Skins/ZachTV Pink/selection-tab.png b/Skins/ZachTV Pink/selection-tab.png new file mode 100644 index 00000000..ef05af34 --- /dev/null +++ b/Skins/ZachTV Pink/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:596722da72c3ecab13e14bfda3389db31039842bfb0cb6c431e4e01e3062594e +size 18621 diff --git a/Skins/ZachTV Pink/selection-tab@2x.png b/Skins/ZachTV Pink/selection-tab@2x.png new file mode 100644 index 00000000..a639ad2a --- /dev/null +++ b/Skins/ZachTV Pink/selection-tab@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044ad6e893ff24cc11fcd9e8ea8a53becf63372f7bd6e963fbb974dc20fc3917 +size 26158 diff --git a/Skins/ZachTV Pink/shutter.wav b/Skins/ZachTV Pink/shutter.wav new file mode 100644 index 00000000..1a51b30a --- /dev/null +++ b/Skins/ZachTV Pink/shutter.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645b7351876c870c825266b57e923ccff732d11b3459f65761bac3ad7241a9bd +size 472264 diff --git a/Skins/ZachTV Pink/skin.ini b/Skins/ZachTV Pink/skin.ini new file mode 100644 index 00000000..e068d9ca --- /dev/null +++ b/Skins/ZachTV Pink/skin.ini @@ -0,0 +1,35 @@ +[General] +Name: ZachTV fixedexport +Author: Zach +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +HitCircleOverlayAboveNumer: 1 +SliderStyle: 2 +Version: latest +AllowSliderBallTint: 0 +AnimationFramerate: 13 + +[Colours] +Combo1: 204,100,200 + + +SliderBorder: 255, 69, 0 +SliderTrackOverride: 5, 0 ,9 +SpinnerApproachCircle: 255,255,255 +MenuGlow: 250, 140, 166 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 0 +ScorePrefix: score + +//166, 152, 61 +//164, 111, 223 +//255, 105, 180 +//235, 88, 88 +//25, 137, 195 +//200, 91, 114 +//82, 162, 237 +//192, 190, 225 +//243, 218, 192 \ No newline at end of file diff --git a/Skins/ZachTV Pink/sliderb0.png b/Skins/ZachTV Pink/sliderb0.png new file mode 100644 index 00000000..f12daca4 --- /dev/null +++ b/Skins/ZachTV Pink/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98620ed2194d038ae91820426ab616245baaa4b2e4db5ec0eed3d3ce58c2a668 +size 10899 diff --git a/Skins/ZachTV Pink/sliderend.png b/Skins/ZachTV Pink/sliderend.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/sliderend.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/sliderendcircle.png b/Skins/ZachTV Pink/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/sliderendcircle.zip b/Skins/ZachTV Pink/sliderendcircle.zip new file mode 100644 index 00000000..f5472fdc Binary files /dev/null and b/Skins/ZachTV Pink/sliderendcircle.zip differ diff --git a/Skins/ZachTV Pink/sliderfollowcircle-0.png b/Skins/ZachTV Pink/sliderfollowcircle-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/sliderfollowcircle-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/sliderfollowcircle.png b/Skins/ZachTV Pink/sliderfollowcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/sliderfollowpoint.png b/Skins/ZachTV Pink/sliderfollowpoint.png new file mode 100644 index 00000000..bcce2d99 --- /dev/null +++ b/Skins/ZachTV Pink/sliderfollowpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e7989b0fa6a60f7a10a068b0ec98b5c5dc0e5285dd99f8fc33ae06472c711d +size 2779 diff --git a/Skins/ZachTV Pink/sliderpoint10.png b/Skins/ZachTV Pink/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/sliderpoint30.png b/Skins/ZachTV Pink/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/sliderscorepoint.png b/Skins/ZachTV Pink/sliderscorepoint.png new file mode 100644 index 00000000..e3c2aded --- /dev/null +++ b/Skins/ZachTV Pink/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee4c80a8de8b933b6dc212970278709de7e4aec815cfba92838de0839ea682b +size 31024 diff --git a/Skins/ZachTV Pink/soft-hitclap.wav b/Skins/ZachTV Pink/soft-hitclap.wav new file mode 100644 index 00000000..5b4c8571 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a52c3996bc945b18bcf05f70e1dfaac491c0754471f13e0bea3ceaf01e2157 +size 36474 diff --git a/Skins/ZachTV Pink/soft-hitclap2.wav b/Skins/ZachTV Pink/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/ZachTV Pink/soft-hitclap3.wav b/Skins/ZachTV Pink/soft-hitclap3.wav new file mode 100644 index 00000000..3d8aaa60 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitclap3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c6bc82e55b02266241dcc1d2095e33205c0e899a72bf22e5f3c00c7d05797b +size 42468 diff --git a/Skins/ZachTV Pink/soft-hitfinish.wav b/Skins/ZachTV Pink/soft-hitfinish.wav new file mode 100644 index 00000000..a99486ac --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b295ebe9dd9402dc54c8c939a4327d3465a3c8fb3ecb68dd749cab9ca3cb05d +size 24784 diff --git a/src/default-skin/normal-hitfinish.wav b/Skins/ZachTV Pink/soft-hitfinish1.wav similarity index 100% rename from src/default-skin/normal-hitfinish.wav rename to Skins/ZachTV Pink/soft-hitfinish1.wav diff --git a/Skins/ZachTV Pink/soft-hitfinish2.wav b/Skins/ZachTV Pink/soft-hitfinish2.wav new file mode 100644 index 00000000..f4647136 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f272833b9f0ba3dff5679939d942a58942f51e7eebde12de6ccfa0ea648d8a +size 258960 diff --git a/Skins/ZachTV Pink/soft-hitfinish222.wav b/Skins/ZachTV Pink/soft-hitfinish222.wav new file mode 100644 index 00000000..958a9d0b --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitfinish222.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48cfe4e7181a51e1e2db1b0b0f939a92a915200738aca02eb1d6ee380dc239ee +size 105884 diff --git a/Skins/ZachTV Pink/soft-hitfinish3.wav b/Skins/ZachTV Pink/soft-hitfinish3.wav new file mode 100644 index 00000000..03eaa188 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitfinish3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a723b41585f71d5ad0bec53a585fbe8c09497dbcd54683a05495b66a5f4ff43c +size 300336 diff --git a/Skins/ZachTV Pink/soft-hitnormal.wav b/Skins/ZachTV Pink/soft-hitnormal.wav new file mode 100644 index 00000000..5895b4af --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6b68c0cd5dd76481f02b14535f2aedfdbdec92d6bf665aaf4649b0bfef4624 +size 25580 diff --git a/Skins/ZachTV Pink/soft-hitnormal1.wav b/Skins/ZachTV Pink/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/ZachTV Pink/soft-hitnormal2.wav b/Skins/ZachTV Pink/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/ZachTV Pink/soft-hitnormal3.wav b/Skins/ZachTV Pink/soft-hitnormal3.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitnormal3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/ZachTV Pink/soft-hitnormal4.wav b/Skins/ZachTV Pink/soft-hitnormal4.wav new file mode 100644 index 00000000..a6b72c61 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitnormal4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111c28f7a55f2bdbb423575fc5994ff85c418601b0d2782ca776d8462eed4cb5 +size 229120 diff --git a/Skins/ZachTV Pink/soft-hitnormalh.wav b/Skins/ZachTV Pink/soft-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/ZachTV Pink/soft-hitnormalhh.wav b/Skins/ZachTV Pink/soft-hitnormalhh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitnormalhh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/ZachTV Pink/soft-hitnormall.wav b/Skins/ZachTV Pink/soft-hitnormall.wav new file mode 100644 index 00000000..5cdbe719 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitnormall.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49430f1084872f9f6e5245401cc50ca86546aeb2014a8a28943e36f59557ad0 +size 66684 diff --git a/Skins/ZachTV Pink/soft-hitnormalq.wav b/Skins/ZachTV Pink/soft-hitnormalq.wav new file mode 100644 index 00000000..5895b4af --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitnormalq.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6b68c0cd5dd76481f02b14535f2aedfdbdec92d6bf665aaf4649b0bfef4624 +size 25580 diff --git a/Skins/ZachTV Pink/soft-hitsoft.wav b/Skins/ZachTV Pink/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/ZachTV Pink/soft-hitwhistle.wav b/Skins/ZachTV Pink/soft-hitwhistle.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/ZachTV Pink/soft-hitwhistle1.wav b/Skins/ZachTV Pink/soft-hitwhistle1.wav new file mode 100644 index 00000000..aac06a41 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitwhistle1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ea7b4fb967158ae380178b7aea0dbdd2868c0d670b917c42b94e72884306b2 +size 210092 diff --git a/Skins/ZachTV Pink/soft-hitwhistle2.wav b/Skins/ZachTV Pink/soft-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/ZachTV Pink/soft-hitwhistlemiruhong.wav b/Skins/ZachTV Pink/soft-hitwhistlemiruhong.wav new file mode 100644 index 00000000..de268703 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitwhistlemiruhong.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab111811f6f6c1aa0f9f8391feac6a0118d09327abe9439c308332a4270cbaf +size 107634 diff --git a/Skins/ZachTV Pink/soft-hitwistle.wav b/Skins/ZachTV Pink/soft-hitwistle.wav new file mode 100644 index 00000000..7ca41433 --- /dev/null +++ b/Skins/ZachTV Pink/soft-hitwistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f770d06b30853c8ed6b25464af6cf7b7f3f68c332dc8bcfa4ea23076f5445965 +size 13185 diff --git a/Skins/ZachTV Pink/soft-sliderslide.wav b/Skins/ZachTV Pink/soft-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/ZachTV Pink/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/ZachTV Pink/soft-sliderslide2.wav b/Skins/ZachTV Pink/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/soft-slidertick.wav b/Skins/ZachTV Pink/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/ZachTV Pink/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/ZachTV Pink/soft-slidertick2.wav b/Skins/ZachTV Pink/soft-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/soft-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/soft-sliderwhistle.wav b/Skins/ZachTV Pink/soft-sliderwhistle.wav new file mode 100644 index 00000000..cfc0314c --- /dev/null +++ b/Skins/ZachTV Pink/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b80e132dd7adf41d45f7e21352dc3420599474382dc87a3b1772f603ce32a81 +size 67256 diff --git a/Skins/ZachTV Pink/soft-sliderwhistle2.wav b/Skins/ZachTV Pink/soft-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/soft-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/ZachTV Pink/softl-hitclap2.wav b/Skins/ZachTV Pink/softl-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/ZachTV Pink/softl-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/ZachTV Pink/softl-hitfinish.wav b/Skins/ZachTV Pink/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/ZachTV Pink/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/ZachTV Pink/softl-hitnormal.wav b/Skins/ZachTV Pink/softl-hitnormal.wav new file mode 100644 index 00000000..0705036c --- /dev/null +++ b/Skins/ZachTV Pink/softl-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df962559b98d3f5a00f88d160f6cd86fe18cd68510ddd59dfc335428961c190 +size 109472 diff --git a/Skins/ZachTV Pink/softl-hitwhistle.wav b/Skins/ZachTV Pink/softl-hitwhistle.wav new file mode 100644 index 00000000..b2ead5b1 --- /dev/null +++ b/Skins/ZachTV Pink/softl-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0bf4803858de71662a0d497d789a4d24d5c3cee7d0976377abf47156578018 +size 20428 diff --git a/Skins/ZachTV Pink/spinner-approachcircle.png b/Skins/ZachTV Pink/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/spinner-approachcircle@2x.png b/Skins/ZachTV Pink/spinner-approachcircle@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/spinner-background.png b/Skins/ZachTV Pink/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/spinner-bottom.png b/Skins/ZachTV Pink/spinner-bottom.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/spinner-bottom@2x.png b/Skins/ZachTV Pink/spinner-bottom@2x.png new file mode 100644 index 00000000..76e175fb --- /dev/null +++ b/Skins/ZachTV Pink/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04d400f0b6d1e0d390ade101df3877b8c6bcec8a7f21b2308f3e56c59b8b03b +size 3836 diff --git a/Skins/ZachTV Pink/spinner-circle.png b/Skins/ZachTV Pink/spinner-circle.png new file mode 100644 index 00000000..412384b5 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985f8a593991015b91f3085f16efe8de64eff332cbdc21cc7f5cab153aec0eb6 +size 6338 diff --git a/Skins/ZachTV Pink/spinner-circle@2x.png b/Skins/ZachTV Pink/spinner-circle@2x.png new file mode 100644 index 00000000..37f8f90b --- /dev/null +++ b/Skins/ZachTV Pink/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f08507d5ef48929f50f899c7d387ad8c78f86bb607a04bcbd0ea3e5c311cf6 +size 18294 diff --git a/Skins/ZachTV Pink/spinner-clear.png b/Skins/ZachTV Pink/spinner-clear.png new file mode 100644 index 00000000..a560b924 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6699d8ab305d2a859af28872cbe3de0989de36a598d6b6bb2f3eb33493bc2f6 +size 911 diff --git a/Skins/ZachTV Pink/spinner-clear@2x.png b/Skins/ZachTV Pink/spinner-clear@2x.png new file mode 100644 index 00000000..bd7fae87 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae921da18f29a88056c4388b54ab362f89796bad9a8b483add548e8fa8b5a7f +size 2383 diff --git a/Skins/ZachTV Pink/spinner-glow.png b/Skins/ZachTV Pink/spinner-glow.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/ZachTV Pink/spinner-metre.png b/Skins/ZachTV Pink/spinner-metre.png new file mode 100644 index 00000000..3f4f6e04 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4311c79b1fffb7d61ac037fbd279ba9780f01dfddd74b79863e94dd1d42e8263 +size 11829 diff --git a/Skins/ZachTV Pink/spinner-metre@2x.png b/Skins/ZachTV Pink/spinner-metre@2x.png new file mode 100644 index 00000000..bffcbc0e --- /dev/null +++ b/Skins/ZachTV Pink/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce403f5d4883a2563d7461f4d693fed8b93b515d05a89aa8c862ba74f55143a +size 39555 diff --git a/Skins/ZachTV Pink/spinner-middle.png b/Skins/ZachTV Pink/spinner-middle.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/spinner-middle2.png b/Skins/ZachTV Pink/spinner-middle2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/spinner-middle2@2x.png b/Skins/ZachTV Pink/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/spinner-middle@2x.png b/Skins/ZachTV Pink/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/spinner-osu.png b/Skins/ZachTV Pink/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/spinner-rpm.png b/Skins/ZachTV Pink/spinner-rpm.png new file mode 100644 index 00000000..cec1eda2 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d359d20da7097cb7fc70d7f221a526e2b6466cb11e51304b01480cc23f90ff70 +size 3261 diff --git a/Skins/ZachTV Pink/spinner-rpm@2x.png b/Skins/ZachTV Pink/spinner-rpm@2x.png new file mode 100644 index 00000000..39a6692b --- /dev/null +++ b/Skins/ZachTV Pink/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6877128fd58b8818e813660e1cdb78ccd08220247e332e91ea9c1d0e22bebfa3 +size 8526 diff --git a/Skins/ZachTV Pink/spinner-spin.png b/Skins/ZachTV Pink/spinner-spin.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/spinner-top.png b/Skins/ZachTV Pink/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/ZachTV Pink/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/ZachTV Pink/spinner.zip b/Skins/ZachTV Pink/spinner.zip new file mode 100644 index 00000000..4b1df5de Binary files /dev/null and b/Skins/ZachTV Pink/spinner.zip differ diff --git a/Skins/ZachTV Pink/spinnerbonus.wav b/Skins/ZachTV Pink/spinnerbonus.wav new file mode 100644 index 00000000..6e901ec0 --- /dev/null +++ b/Skins/ZachTV Pink/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea3774c20fb4a84c33ab6e08b7db0042e2494173e26ca210ec6171c20da9c4 +size 178600 diff --git a/Skins/ZachTV Pink/spinnerspin.mp3 b/Skins/ZachTV Pink/spinnerspin.mp3 new file mode 100644 index 00000000..fdaf9a24 --- /dev/null +++ b/Skins/ZachTV Pink/spinnerspin.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678990e0480ea95ff81eebe0e89ed4d1ed6171c275021f26059fcfc13c0dfe58 +size 13672 diff --git a/Skins/ZachTV Pink/spinnerspin.wav b/Skins/ZachTV Pink/spinnerspin.wav new file mode 100644 index 00000000..8e3c0d9a --- /dev/null +++ b/Skins/ZachTV Pink/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca06ced00a460d2bea791c5e0ef611d49aafb4ebb2790a8cb893080c4fb72826 +size 66080 diff --git a/Skins/ZachTV Pink/star.png b/Skins/ZachTV Pink/star.png new file mode 100644 index 00000000..ed5209fe --- /dev/null +++ b/Skins/ZachTV Pink/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d7990682ce7572182d838baa4acc247cf9beacfb883c746e254f5bc332037b +size 18486 diff --git a/Skins/ZachTV Pink/star2.png b/Skins/ZachTV Pink/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/ZachTV Pink/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/ZachTV Pink/welcome.wav b/Skins/ZachTV Pink/welcome.wav new file mode 100644 index 00000000..873e4b2d --- /dev/null +++ b/Skins/ZachTV Pink/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f24c5e84e91ecb9dc6d62b7cc350d0405db1eba71b9f889e94f14d19f74462 +size 120876 diff --git a/Skins/ZachTV Pink/welcome_text.png b/Skins/ZachTV Pink/welcome_text.png new file mode 100644 index 00000000..c62964f2 --- /dev/null +++ b/Skins/ZachTV Pink/welcome_text.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356fad06d7f0de0cceffb735fbef14fc8d0b37de7c1c2096873a946e2f6df465 +size 35293 diff --git a/Skins/ZachTV Pink/welcome_text@2x.png b/Skins/ZachTV Pink/welcome_text@2x.png new file mode 100644 index 00000000..9f851c7f --- /dev/null +++ b/Skins/ZachTV Pink/welcome_text@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc17dc1be6cee0618a6d488af6c339379aace460d391260c2d1476bd4c3847d +size 48939 diff --git a/Skins/ZachTV Pink/whoosh.wav b/Skins/ZachTV Pink/whoosh.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/ZachTV Pink/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/1menu-background@2x.jpg b/Skins/_• adidas for3v3r/1menu-background@2x.jpg new file mode 100644 index 00000000..10e8243e --- /dev/null +++ b/Skins/_• adidas for3v3r/1menu-background@2x.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a11381047c8fd460c6315b2063102354cc6f50e00e19fc67a1d06b0f0dcaee +size 68499 diff --git a/Skins/_• adidas for3v3r/4K.ini b/Skins/_• adidas for3v3r/4K.ini new file mode 100644 index 00000000..7e996620 --- /dev/null +++ b/Skins/_• adidas for3v3r/4K.ini @@ -0,0 +1,18 @@ +//Mania skin config +ColumnLineWidth: 0.7 +ColumnStart: 136 +BarlineWidth: 1.2 +HitPosition: 402 +SpecialStyle: 0 +SpecialPositionLeft: 1 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +FontCombo: score +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +ColumnLine: 1,1,1,1,1 +//Colours +//images +//Keys diff --git a/Skins/_• adidas for3v3r/Applause.mp3 b/Skins/_• adidas for3v3r/Applause.mp3 new file mode 100644 index 00000000..67fbcb70 --- /dev/null +++ b/Skins/_• adidas for3v3r/Applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f13b9a92ad1c8353647a146e4f70f3ac206985dcde034f435dbca47973518fc +size 2153390 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-0@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-0@2x.png new file mode 100644 index 00000000..0f072cb3 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18fcdb39b3d4682e1c267494801998e56db2283a6cd8b6ad19555fb5f51a97f9 +size 20901 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-1@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-1@2x.png new file mode 100644 index 00000000..95e71705 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f30f0c3aed35cb1df3eb624a33451e8f49fe40b7bb98f6a65492b4ce8fc1ca5 +size 16438 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-2@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-2@2x.png new file mode 100644 index 00000000..19ceab52 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c70f3fe79d9b2b9f5de5200caa7c83cdf0175d17d068bfae7c7e77e72c938b +size 20693 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-3@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-3@2x.png new file mode 100644 index 00000000..0d3c19de --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023d36df37f133c2f5bfa39153570d14d2593bd69caaf0aa36cf5648c973ba41 +size 21716 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-4@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-4@2x.png new file mode 100644 index 00000000..c9df40b8 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337e35cd480ea37ca0c655292c51983bad7c3de6617b5b0e726396f436844603 +size 18987 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-5@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-5@2x.png new file mode 100644 index 00000000..75fcefbf --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df782779b1a749c073deee6155c404a2165215f5e73c3f9805dc4c73c5cabe92 +size 20558 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-6@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-6@2x.png new file mode 100644 index 00000000..859c8462 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5836fe7126407da47dd8aae8fa8b355ff98b2c04e629bef39406ea21610bba36 +size 20751 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-7@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-7@2x.png new file mode 100644 index 00000000..7ccf8497 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ce2e4f5d947a0810321110f35ca5d391853cb8d1e64abdb3309031284ada1d +size 18727 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-8@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-8@2x.png new file mode 100644 index 00000000..1099aa45 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b975b83b0d24ccd6f3b891cfae364db7cdbf67913a91ed4efee802a8942f88 +size 21665 diff --git a/Skins/_• adidas for3v3r/Assets/default/default-9@2x.png b/Skins/_• adidas for3v3r/Assets/default/default-9@2x.png new file mode 100644 index 00000000..36d796b9 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/default/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30faafbd160ce454ef6bd8ad7c880716b23d6dea416e9578db5e1f7f961a5c81 +size 20740 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-0@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-0@2x.png new file mode 100644 index 00000000..36a6b8f9 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74fee20e95e0fe01f1bb46a9a7e2ddeb8b3f4387f8a4089d54f55fee6eff902 +size 2633 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-1@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-1@2x.png new file mode 100644 index 00000000..bfbb89ab --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7adae56f089d49d67448a7e72d969ab1712e7b9913b294389cd0b1738c201458 +size 1067 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-2@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-2@2x.png new file mode 100644 index 00000000..821c148f --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c37a73dc7fef00295b81598796b6ccde4f5d8ff99e516b5e929a8df0075e985 +size 2523 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-3@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-3@2x.png new file mode 100644 index 00000000..611f1a98 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf4461d27b3da6251eedd9edf8405658ae9448df61438c4bee9d519f2372152 +size 2463 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-4@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-4@2x.png new file mode 100644 index 00000000..25565ab7 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42069b1801b32719bc63fc080d92c875918e7201db33426c4e2bb0715f2af736 +size 2618 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-5@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-5@2x.png new file mode 100644 index 00000000..4776a48c --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ed6cbbe0fdd979f6067add9e4e16b9471e56ffc012d773c73a71cd26d1bc69c +size 2552 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-6@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-6@2x.png new file mode 100644 index 00000000..6297255a --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de304c6cd2587f2ee8067e9156050824ab0187d4d60d06ae16ebb93a3319861c +size 3148 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-7@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-7@2x.png new file mode 100644 index 00000000..ce0de972 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e64844e558f4bd82e931f7a5ab0ecf67dfa180a485509b7725fb7863728a39e +size 1993 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-8@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-8@2x.png new file mode 100644 index 00000000..d675fe03 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a562109fcc522bcbf9b8b2e9785d1f9ab25e863ab6bb54a0e4ee145c579ecdb +size 3736 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-9@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-9@2x.png new file mode 100644 index 00000000..bb8f6cb2 --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54195686e8cacbde1d0dc13584260e114cdb22eba9d049c102674d6bc93bddde +size 3209 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-comma@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-comma@2x.png new file mode 100644 index 00000000..aa81047e --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da70bf5fe12ed60f2ba50034f5ee53ff754fc7764fb7fcf75f4dbea51c7afb41 +size 355 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-dot@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-dot@2x.png new file mode 100644 index 00000000..aa81047e --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da70bf5fe12ed60f2ba50034f5ee53ff754fc7764fb7fcf75f4dbea51c7afb41 +size 355 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-percent@2x.png b/Skins/_• adidas for3v3r/Assets/score/score-percent@2x.png new file mode 100644 index 00000000..d308bb5a --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7111c437ee81adfe2c254c18668c62e6349324657d876deaa5f80cff0a0e2ec8 +size 1011 diff --git a/Skins/_• adidas for3v3r/Assets/score/score-x.png b/Skins/_• adidas for3v3r/Assets/score/score-x.png new file mode 100644 index 00000000..906648fa --- /dev/null +++ b/Skins/_• adidas for3v3r/Assets/score/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ff24028255e3787e38390106f32b20bb8c6af2943c418f3436b584ce9d5674 +size 2810 diff --git a/Skins/_• adidas for3v3r/approachcircle.png b/Skins/_• adidas for3v3r/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/_• adidas for3v3r/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/_• adidas for3v3r/button-left.png b/Skins/_• adidas for3v3r/button-left.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/_• adidas for3v3r/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/_• adidas for3v3r/button-middle.png b/Skins/_• adidas for3v3r/button-middle.png new file mode 100644 index 00000000..ff6450e6 --- /dev/null +++ b/Skins/_• adidas for3v3r/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26d1b2213d058c494c0e45c54638a1d05345e9317eaefee2e964e0cd45ae2be +size 2811 diff --git a/Skins/_• adidas for3v3r/button-right.png b/Skins/_• adidas for3v3r/button-right.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/_• adidas for3v3r/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/_• adidas for3v3r/coin.png b/Skins/_• adidas for3v3r/coin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/coin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/coins-bg.png b/Skins/_• adidas for3v3r/coins-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/coins-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/coins-buy.png b/Skins/_• adidas for3v3r/coins-buy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/coins-buy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/coins-earn.wav b/Skins/_• adidas for3v3r/coins-earn.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/coins-earn.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/coins-recharge.wav b/Skins/_• adidas for3v3r/coins-recharge.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/coins-recharge.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/coins-use.wav b/Skins/_• adidas for3v3r/coins-use.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/coins-use.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/coins.png b/Skins/_• adidas for3v3r/coins.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/coins.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/comboburst.png b/Skins/_• adidas for3v3r/comboburst.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/_• adidas for3v3r/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/_• adidas for3v3r/count1.png b/Skins/_• adidas for3v3r/count1.png new file mode 100644 index 00000000..c26ec9e8 --- /dev/null +++ b/Skins/_• adidas for3v3r/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d00000e327042e5a22f066d622acb87a6900f1a83e58aecd2c66f8a8e4c10ea +size 17232 diff --git a/Skins/_• adidas for3v3r/count1s.wav b/Skins/_• adidas for3v3r/count1s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/count2.png b/Skins/_• adidas for3v3r/count2.png new file mode 100644 index 00000000..6409b082 --- /dev/null +++ b/Skins/_• adidas for3v3r/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593cd74803be2c97fe9f5eac38fc70fe397b3df4a99206f0f85c70d071e151ee +size 17232 diff --git a/Skins/_• adidas for3v3r/count2s.wav b/Skins/_• adidas for3v3r/count2s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/count3.png b/Skins/_• adidas for3v3r/count3.png new file mode 100644 index 00000000..7bd2b02b --- /dev/null +++ b/Skins/_• adidas for3v3r/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf7ada11b48390117bc6f16c043e9939051dedcd7485f99d3a30f12582f2998 +size 17232 diff --git a/Skins/_• adidas for3v3r/count3s.wav b/Skins/_• adidas for3v3r/count3s.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/cursor@2x.png b/Skins/_• adidas for3v3r/cursor@2x.png new file mode 100644 index 00000000..da82b299 --- /dev/null +++ b/Skins/_• adidas for3v3r/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a597927a165f8f949a6943f709071d60d0271f89fd745d8075f367315ca12ed8 +size 11550 diff --git a/Skins/_• adidas for3v3r/cursortail.png b/Skins/_• adidas for3v3r/cursortail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/cursortail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/cursortrail.png b/Skins/_• adidas for3v3r/cursortrail.png new file mode 100644 index 00000000..c1e25be4 --- /dev/null +++ b/Skins/_• adidas for3v3r/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c4e54e7898d339c6612255769fbe456211a2f93229c0bcea2377b2c810411d +size 3665 diff --git a/Skins/_• adidas for3v3r/default-0.png b/Skins/_• adidas for3v3r/default-0.png new file mode 100644 index 00000000..aa28ab0b --- /dev/null +++ b/Skins/_• adidas for3v3r/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2a1371655d38d5d6556324587ce7e641331cc0a939c5592080cadbeeba35cc +size 2296 diff --git a/Skins/_• adidas for3v3r/default-1.png b/Skins/_• adidas for3v3r/default-1.png new file mode 100644 index 00000000..8bd9bc87 --- /dev/null +++ b/Skins/_• adidas for3v3r/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e85e780e626d21ed6a67a83e9487d4aa457b8eadfd2850cbaea9690ade08a1 +size 870 diff --git a/Skins/_• adidas for3v3r/default-2.png b/Skins/_• adidas for3v3r/default-2.png new file mode 100644 index 00000000..83ebddf5 --- /dev/null +++ b/Skins/_• adidas for3v3r/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa1ba658fdb9450043a0fdfb4959bb49791141a9970c8339f88770e25e94bbd +size 2259 diff --git a/Skins/_• adidas for3v3r/default-3.png b/Skins/_• adidas for3v3r/default-3.png new file mode 100644 index 00000000..87091954 --- /dev/null +++ b/Skins/_• adidas for3v3r/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806637db7e584d0ca13abccc95b89ac40b66629945a4f0c12e32dfb0ae14bd2b +size 2600 diff --git a/Skins/_• adidas for3v3r/default-4.png b/Skins/_• adidas for3v3r/default-4.png new file mode 100644 index 00000000..3525ebfe --- /dev/null +++ b/Skins/_• adidas for3v3r/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ae038137fb0e0dd7c9ce6f2eedebf5f54b03eb20128a1ae75d2a16961baf3f +size 1668 diff --git a/Skins/_• adidas for3v3r/default-5.png b/Skins/_• adidas for3v3r/default-5.png new file mode 100644 index 00000000..8069fa50 --- /dev/null +++ b/Skins/_• adidas for3v3r/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581eec904b3bf33091b17f4f23fc68b5652484fb9194020b3bfc658a14d0ab6e +size 2172 diff --git a/Skins/_• adidas for3v3r/default-6.png b/Skins/_• adidas for3v3r/default-6.png new file mode 100644 index 00000000..1e4bb9ac --- /dev/null +++ b/Skins/_• adidas for3v3r/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a88aecdde29c07e847c5a20647f4dde0e9a5c404c7435794d2f4be97d915b7 +size 2152 diff --git a/Skins/_• adidas for3v3r/default-7.png b/Skins/_• adidas for3v3r/default-7.png new file mode 100644 index 00000000..9ba04da9 --- /dev/null +++ b/Skins/_• adidas for3v3r/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2eba1ceeebe31921d47d272490fc24659dc7d4ce4941d39dfe571643e3a64ba +size 1711 diff --git a/Skins/_• adidas for3v3r/default-8.png b/Skins/_• adidas for3v3r/default-8.png new file mode 100644 index 00000000..c092861b --- /dev/null +++ b/Skins/_• adidas for3v3r/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dc6d5187cedd1701bf84c11871ac885951c2712edf3ce0876d6498f2770d7a +size 2555 diff --git a/Skins/_• adidas for3v3r/default-9.png b/Skins/_• adidas for3v3r/default-9.png new file mode 100644 index 00000000..ad0038a9 --- /dev/null +++ b/Skins/_• adidas for3v3r/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445243872032ef35afd20b507e5e4ae3d3412a1dfd0d6cce96d8a68b3f004939 +size 2271 diff --git a/Skins/_• adidas for3v3r/drum-hitclap.mp3 b/Skins/_• adidas for3v3r/drum-hitclap.mp3 new file mode 100644 index 00000000..96de62a5 --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-hitclap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d18563b49216163686d2461228d8cf7ea5a9dcb40a85db2918f050afec207d +size 1302 diff --git a/Skins/_• adidas for3v3r/drum-hitclap.wav b/Skins/_• adidas for3v3r/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/_• adidas for3v3r/drum-hitclap2.wav b/Skins/_• adidas for3v3r/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/_• adidas for3v3r/drum-hitfinish.mp3 b/Skins/_• adidas for3v3r/drum-hitfinish.mp3 new file mode 100644 index 00000000..bfd9e4a2 --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-hitfinish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d91b4db223e4a464fe302a38355a9ea459e1447ea6f3eb450eec67f57339d67 +size 4069 diff --git a/Skins/_• adidas for3v3r/drum-hitfinish.wav b/Skins/_• adidas for3v3r/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/_• adidas for3v3r/drum-hitnormal.mp3 b/Skins/_• adidas for3v3r/drum-hitnormal.mp3 new file mode 100644 index 00000000..40bc5148 --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-hitnormal.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:799426f395b019e08987d0b907af8cc3635ee1798062e9d38f759b47b0b275b7 +size 5790 diff --git a/Skins/_• adidas for3v3r/drum-hitnormal.wav b/Skins/_• adidas for3v3r/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/_• adidas for3v3r/drum-hitwhistle.mp3 b/Skins/_• adidas for3v3r/drum-hitwhistle.mp3 new file mode 100644 index 00000000..6676f30b --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-hitwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7601e5e53906c4912d240a0de65e61c8993206d9390bf2960265fc208edba2f +size 521 diff --git a/Skins/_• adidas for3v3r/drum-hitwhistle.wav b/Skins/_• adidas for3v3r/drum-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/drum-sliderslide.mp3 b/Skins/_• adidas for3v3r/drum-sliderslide.mp3 new file mode 100644 index 00000000..6676f30b --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-sliderslide.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7601e5e53906c4912d240a0de65e61c8993206d9390bf2960265fc208edba2f +size 521 diff --git a/Skins/_• adidas for3v3r/drum-sliderslide.wav b/Skins/_• adidas for3v3r/drum-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/drum-slidertick.mp3 b/Skins/_• adidas for3v3r/drum-slidertick.mp3 new file mode 100644 index 00000000..6676f30b --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-slidertick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7601e5e53906c4912d240a0de65e61c8993206d9390bf2960265fc208edba2f +size 521 diff --git a/Skins/_• adidas for3v3r/drum-slidertick.wav b/Skins/_• adidas for3v3r/drum-slidertick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• adidas for3v3r/drum-sliderwhistle.mp3 b/Skins/_• adidas for3v3r/drum-sliderwhistle.mp3 new file mode 100644 index 00000000..6676f30b --- /dev/null +++ b/Skins/_• adidas for3v3r/drum-sliderwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7601e5e53906c4912d240a0de65e61c8993206d9390bf2960265fc208edba2f +size 521 diff --git a/Skins/_• adidas for3v3r/drum-sliderwhistle.wav b/Skins/_• adidas for3v3r/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• adidas for3v3r/failsound.wav b/Skins/_• adidas for3v3r/failsound.wav new file mode 100644 index 00000000..8d40fb17 --- /dev/null +++ b/Skins/_• adidas for3v3r/failsound.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6f04c5fccc950abf9f80213bc19336ff9f094fe961242fd04ce6b2cc3bb5e3 +size 997568 diff --git a/Skins/_• adidas for3v3r/followpoint-0.png b/Skins/_• adidas for3v3r/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/followpoint-1.png b/Skins/_• adidas for3v3r/followpoint-1.png new file mode 100644 index 00000000..52088883 --- /dev/null +++ b/Skins/_• adidas for3v3r/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfdcf784ad0431ffcee82e1a2d0f10c7c39b8dc4ddaaecdf3ed929d44d4186a +size 3097 diff --git a/Skins/_• adidas for3v3r/followpoint-2.png b/Skins/_• adidas for3v3r/followpoint-2.png new file mode 100644 index 00000000..52088883 --- /dev/null +++ b/Skins/_• adidas for3v3r/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfdcf784ad0431ffcee82e1a2d0f10c7c39b8dc4ddaaecdf3ed929d44d4186a +size 3097 diff --git a/Skins/_• adidas for3v3r/followpoint.png b/Skins/_• adidas for3v3r/followpoint.png new file mode 100644 index 00000000..65e9b962 --- /dev/null +++ b/Skins/_• adidas for3v3r/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d6a98fab77863b1e30aae429d216068e90c8dc0176cdec795ef144ce528676 +size 1034 diff --git a/Skins/_• adidas for3v3r/followpoint@2x.png b/Skins/_• adidas for3v3r/followpoint@2x.png new file mode 100644 index 00000000..ac56ac72 --- /dev/null +++ b/Skins/_• adidas for3v3r/followpoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf17b503737a96011a9fe1f8fe4345371d5209f81d9c99e15866e4151356f21 +size 4983 diff --git a/Skins/_• adidas for3v3r/go.png b/Skins/_• adidas for3v3r/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• adidas for3v3r/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• adidas for3v3r/gos.wav b/Skins/_• adidas for3v3r/gos.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/hit0-0@2x.png b/Skins/_• adidas for3v3r/hit0-0@2x.png new file mode 100644 index 00000000..0506a05a --- /dev/null +++ b/Skins/_• adidas for3v3r/hit0-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c92282e57d3e776e48198f4e18d98ccfdbfb7c5a6f4c77000fe08dafe2578e +size 15795 diff --git a/Skins/_• adidas for3v3r/hit0.png b/Skins/_• adidas for3v3r/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/hit100-0.png b/Skins/_• adidas for3v3r/hit100-0.png new file mode 100644 index 00000000..5613299f --- /dev/null +++ b/Skins/_• adidas for3v3r/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7be7742582113f6dfd4b404e366b58b038a9028228f8fb3712a9f6becd25016 +size 8960 diff --git a/Skins/_• adidas for3v3r/hit100-0@2x.png b/Skins/_• adidas for3v3r/hit100-0@2x.png new file mode 100644 index 00000000..9140a195 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa47bc04ae338cd287eac97a330c5a54f2481a9b1ad144654a34c35828e1649c +size 7481 diff --git a/Skins/_• adidas for3v3r/hit100.png b/Skins/_• adidas for3v3r/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/hit100k-0.png b/Skins/_• adidas for3v3r/hit100k-0.png new file mode 100644 index 00000000..f74f5ed9 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee58347b54080865c14ca4ac6b4e5e0bb8abc1067b780e294340bd0e0ffba6b0 +size 11335 diff --git a/Skins/_• adidas for3v3r/hit100k-0@2x.png b/Skins/_• adidas for3v3r/hit100k-0@2x.png new file mode 100644 index 00000000..ea154a98 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd5ee86cc7c4303c4e7ac5300b7cdf6da3af85b2579bded0c2cb1eabbfee88a +size 13966 diff --git a/Skins/_• adidas for3v3r/hit100k.png b/Skins/_• adidas for3v3r/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/hit300-0.png b/Skins/_• adidas for3v3r/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• adidas for3v3r/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• adidas for3v3r/hit300.png b/Skins/_• adidas for3v3r/hit300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/_• adidas for3v3r/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/_• adidas for3v3r/hit300g-0.png b/Skins/_• adidas for3v3r/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• adidas for3v3r/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• adidas for3v3r/hit300g.png b/Skins/_• adidas for3v3r/hit300g.png new file mode 100644 index 00000000..06898bd1 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9dce9a7b07b046e0339f3d42f6533d4c192a82152a35c8604a6ca2acce8139 +size 15303 diff --git a/Skins/_• adidas for3v3r/hit300k-0.png b/Skins/_• adidas for3v3r/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• adidas for3v3r/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• adidas for3v3r/hit300k.png b/Skins/_• adidas for3v3r/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/_• adidas for3v3r/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/_• adidas for3v3r/hit50-0.png b/Skins/_• adidas for3v3r/hit50-0.png new file mode 100644 index 00000000..fef43eb6 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad4b02f288f5c48766fac1242557bf566bd8e1db395fcee0bcf9a6ead6f661ea +size 7848 diff --git a/Skins/_• adidas for3v3r/hit50-0@2x.png b/Skins/_• adidas for3v3r/hit50-0@2x.png new file mode 100644 index 00000000..7a5a6c6f --- /dev/null +++ b/Skins/_• adidas for3v3r/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42b138f91177cdf0dc1b3c3e22a76c0e9402716721618348cb09241bc5bf174 +size 7961 diff --git a/Skins/_• adidas for3v3r/hit50.png b/Skins/_• adidas for3v3r/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/hit50@2x.png b/Skins/_• adidas for3v3r/hit50@2x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/hitcircle.png b/Skins/_• adidas for3v3r/hitcircle.png new file mode 100644 index 00000000..58edacff --- /dev/null +++ b/Skins/_• adidas for3v3r/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e081bcb246d426acaac852fa4a6cd05e5c6804989d0187301144679128d77ec +size 9659 diff --git a/Skins/_• adidas for3v3r/hitcircleoverlay.png b/Skins/_• adidas for3v3r/hitcircleoverlay.png new file mode 100644 index 00000000..e84ae01b --- /dev/null +++ b/Skins/_• adidas for3v3r/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2242085fcfd0a3680fe53191a999547fe99a3703fbbae2925c799df6ef287b +size 8362 diff --git a/Skins/_• adidas for3v3r/hitcircleselect@2x.png b/Skins/_• adidas for3v3r/hitcircleselect@2x.png new file mode 100644 index 00000000..796fa239 --- /dev/null +++ b/Skins/_• adidas for3v3r/hitcircleselect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948dc3875aea0743ff0c5e79cc4dea2d38e73909620296371c52e341af91e05 +size 10181 diff --git a/Skins/_• adidas for3v3r/inputoverlay-background.png b/Skins/_• adidas for3v3r/inputoverlay-background.png new file mode 100644 index 00000000..bebee13d --- /dev/null +++ b/Skins/_• adidas for3v3r/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92a0efa1f778b60e87c45472aefff9eca355205f548c97922982369f4ca67f9 +size 15303 diff --git a/Skins/_• adidas for3v3r/inputoverlay-key@2x.png b/Skins/_• adidas for3v3r/inputoverlay-key@2x.png new file mode 100644 index 00000000..7dad1f1e --- /dev/null +++ b/Skins/_• adidas for3v3r/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe382682230bea874d70aa399f8df041c14f4fe20f4b8e21135b741f4d38d3a9 +size 4317 diff --git a/Skins/_• adidas for3v3r/menu-back-0@2x.png b/Skins/_• adidas for3v3r/menu-back-0@2x.png new file mode 100644 index 00000000..87e9db10 --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6fd4563d5cf5823a9b74b1ea57fecd0d4929019aa270dd2b48aeff0968bfe8 +size 6576 diff --git a/Skins/_• adidas for3v3r/menu-back-1@2x.png b/Skins/_• adidas for3v3r/menu-back-1@2x.png new file mode 100644 index 00000000..8708ac62 --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6385780e2e527518959b80ffcb3185b2f3c6de2731814632682c86c75c199a7a +size 22739 diff --git a/Skins/_• adidas for3v3r/menu-back-2@2x.png b/Skins/_• adidas for3v3r/menu-back-2@2x.png new file mode 100644 index 00000000..6cc2e71a --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5013e62ca89f3d2ebaab281f6f8f6b07b421f6a941685113c63302696140440e +size 32975 diff --git a/Skins/_• adidas for3v3r/menu-back-3@2x.png b/Skins/_• adidas for3v3r/menu-back-3@2x.png new file mode 100644 index 00000000..e47c00bf --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4381bd5400068d1d72285b8abf61d034e8a85147f52257277fd2234c659ca289 +size 39963 diff --git a/Skins/_• adidas for3v3r/menu-back-4@2x.png b/Skins/_• adidas for3v3r/menu-back-4@2x.png new file mode 100644 index 00000000..6cc2e71a --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5013e62ca89f3d2ebaab281f6f8f6b07b421f6a941685113c63302696140440e +size 32975 diff --git a/Skins/_• adidas for3v3r/menu-back-5@2x.png b/Skins/_• adidas for3v3r/menu-back-5@2x.png new file mode 100644 index 00000000..8708ac62 --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6385780e2e527518959b80ffcb3185b2f3c6de2731814632682c86c75c199a7a +size 22739 diff --git a/Skins/_• adidas for3v3r/menu-back-6@2x.png b/Skins/_• adidas for3v3r/menu-back-6@2x.png new file mode 100644 index 00000000..3f9b2b61 --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39dbfd52a5f8f225ad6500e2417c53beb7a4cebdaed9c4fc25b3ce8430eeb45a +size 26391 diff --git a/Skins/_• adidas for3v3r/menu-back-7@2x.png b/Skins/_• adidas for3v3r/menu-back-7@2x.png new file mode 100644 index 00000000..88138357 --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dcab6b54cea186a1d64d6731db704cd9a7b604835f4cd6743d29b7bf2d4101c +size 37833 diff --git a/Skins/_• adidas for3v3r/menu-back-8@2x.png b/Skins/_• adidas for3v3r/menu-back-8@2x.png new file mode 100644 index 00000000..7093a2a4 --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5a86bb045d23ca4ac284a22de2bef416d973b8b7d1b026ae602fd05fe7b5b0 +size 42508 diff --git a/Skins/_• adidas for3v3r/menu-back-9@2x.png b/Skins/_• adidas for3v3r/menu-back-9@2x.png new file mode 100644 index 00000000..34a4caa9 --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-back-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8417dfb88719c322292c64856ac127b9ffc65e9dfeba05f2dca7fcf10236312 +size 25374 diff --git a/Skins/_• adidas for3v3r/menu-background.jpg b/Skins/_• adidas for3v3r/menu-background.jpg new file mode 100644 index 00000000..87557cbb --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9890b8f014e0d76e4c7c3c32c70fa95f6c330eb2abd6a9ff9bae0f2b989ba668 +size 102975 diff --git a/Skins/_• adidas for3v3r/menu-button-background.png b/Skins/_• adidas for3v3r/menu-button-background.png new file mode 100644 index 00000000..1ea6975e --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5153e4c598d4a29e9c42a7eb7210696c1759b010b27b4f03da60e840f8546c61 +size 18633 diff --git a/Skins/_• adidas for3v3r/menu-button-background@2x.png b/Skins/_• adidas for3v3r/menu-button-background@2x.png new file mode 100644 index 00000000..dff6cefb --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375b630656281cf7d0161fe6029f08fd389eb9b07f8771f4ccc007f0c3d7d119 +size 1680 diff --git a/Skins/_• adidas for3v3r/menu-snow@2x.png b/Skins/_• adidas for3v3r/menu-snow@2x.png new file mode 100644 index 00000000..7486006b --- /dev/null +++ b/Skins/_• adidas for3v3r/menu-snow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4f68274d893821a0de6a604c4759eca03270efcb9cbdfa244d0dae4cec023 +size 8157 diff --git a/Skins/_• adidas for3v3r/menuback.wav b/Skins/_• adidas for3v3r/menuback.wav new file mode 100644 index 00000000..4501f2c0 --- /dev/null +++ b/Skins/_• adidas for3v3r/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da19d7a7e360a9c869bbd7d87ec361cb62067776b332ec129f4fd7e05b36414a +size 44650 diff --git a/Skins/_• adidas for3v3r/menuclick.wav b/Skins/_• adidas for3v3r/menuclick.wav new file mode 100644 index 00000000..5bb12cb7 --- /dev/null +++ b/Skins/_• adidas for3v3r/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3a82cb6d7ffae7821c9ebf6e5e3683ce31def100a2b6894cc46c941e74bbcc +size 26804 diff --git a/Skins/_• adidas for3v3r/menuhit.wav b/Skins/_• adidas for3v3r/menuhit.wav new file mode 100644 index 00000000..d317abac --- /dev/null +++ b/Skins/_• adidas for3v3r/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c291b8e9e323be085c1ecbfd8872a1c29a36ca4322bbe3b5de8ce905153c50 +size 71874 diff --git a/Skins/_• adidas for3v3r/nightcore-clap.wav b/Skins/_• adidas for3v3r/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• adidas for3v3r/nightcore-finish.wav b/Skins/_• adidas for3v3r/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• adidas for3v3r/nightcore-hat.wav b/Skins/_• adidas for3v3r/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• adidas for3v3r/nightcore-kick.wav b/Skins/_• adidas for3v3r/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• adidas for3v3r/normal-hitclap.mp3 b/Skins/_• adidas for3v3r/normal-hitclap.mp3 new file mode 100644 index 00000000..6676f30b --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitclap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7601e5e53906c4912d240a0de65e61c8993206d9390bf2960265fc208edba2f +size 521 diff --git a/Skins/_• adidas for3v3r/normal-hitclap.wav b/Skins/_• adidas for3v3r/normal-hitclap.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/normal-hitclap2.wav b/Skins/_• adidas for3v3r/normal-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/_• adidas for3v3r/normal-hitfinish.mp3 b/Skins/_• adidas for3v3r/normal-hitfinish.mp3 new file mode 100644 index 00000000..4cb44dd7 --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitfinish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719291746d06804a1a2f4f8d6b28a26691033efe0ef0bf88db85013f6c51e0cf +size 4330 diff --git a/Skins/_• adidas for3v3r/normal-hitfinish.wav b/Skins/_• adidas for3v3r/normal-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/_• adidas for3v3r/normal-hitfinish2.wav b/Skins/_• adidas for3v3r/normal-hitfinish2.wav new file mode 100644 index 00000000..ce87097b --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f08f44fb21bf8b838f4a5e4d030464470c30ab8c5e8acab18e79f47f0263ea4 +size 291392 diff --git a/Skins/_• adidas for3v3r/normal-hitnormal.mp3 b/Skins/_• adidas for3v3r/normal-hitnormal.mp3 new file mode 100644 index 00000000..40bc5148 --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitnormal.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:799426f395b019e08987d0b907af8cc3635ee1798062e9d38f759b47b0b275b7 +size 5790 diff --git a/Skins/_• adidas for3v3r/normal-hitnormal.wav b/Skins/_• adidas for3v3r/normal-hitnormal.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/_• adidas for3v3r/normal-hitnormal2.wav b/Skins/_• adidas for3v3r/normal-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/_• adidas for3v3r/normal-hitwhistle.mp3 b/Skins/_• adidas for3v3r/normal-hitwhistle.mp3 new file mode 100644 index 00000000..95c1116a --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766db7d6696afeaecd31d29b989fdf5a9e5c02f476d6d4f8ae303b87d9ef5d98 +size 19411 diff --git a/Skins/_• adidas for3v3r/normal-hitwhistle.wav b/Skins/_• adidas for3v3r/normal-hitwhistle.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/_• adidas for3v3r/normal-hitwhistle2.wav b/Skins/_• adidas for3v3r/normal-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/_• adidas for3v3r/normal-sliderslide.mp3 b/Skins/_• adidas for3v3r/normal-sliderslide.mp3 new file mode 100644 index 00000000..6676f30b --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-sliderslide.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7601e5e53906c4912d240a0de65e61c8993206d9390bf2960265fc208edba2f +size 521 diff --git a/Skins/_• adidas for3v3r/normal-sliderslide.wav b/Skins/_• adidas for3v3r/normal-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• adidas for3v3r/normal-sliderslide2.wav b/Skins/_• adidas for3v3r/normal-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/normal-slidertick.mp3 b/Skins/_• adidas for3v3r/normal-slidertick.mp3 new file mode 100644 index 00000000..1afed6eb --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-slidertick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327a39d1c266da846ca1f484fcf0b69c5be1c904dd570029dca60807808d3a2a +size 4070 diff --git a/Skins/_• adidas for3v3r/normal-slidertick.wav b/Skins/_• adidas for3v3r/normal-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/_• adidas for3v3r/normal-slidertick2.wav b/Skins/_• adidas for3v3r/normal-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/normal-sliderwhistle.mp3 b/Skins/_• adidas for3v3r/normal-sliderwhistle.mp3 new file mode 100644 index 00000000..6676f30b --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-sliderwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7601e5e53906c4912d240a0de65e61c8993206d9390bf2960265fc208edba2f +size 521 diff --git a/Skins/_• adidas for3v3r/normal-sliderwhistle.wav b/Skins/_• adidas for3v3r/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• adidas for3v3r/normal-sliderwhistle2.wav b/Skins/_• adidas for3v3r/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/pause-back@2x.png b/Skins/_• adidas for3v3r/pause-back@2x.png new file mode 100644 index 00000000..8e10db3b --- /dev/null +++ b/Skins/_• adidas for3v3r/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31e9e9e26e76de9aae7bec2f1b5490dd9ced6af0f4a5a10fe5f240e4ed58e8e +size 37864 diff --git a/Skins/_• adidas for3v3r/pause-continue@2x.png b/Skins/_• adidas for3v3r/pause-continue@2x.png new file mode 100644 index 00000000..f493d74c --- /dev/null +++ b/Skins/_• adidas for3v3r/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbfe6791c65b99613a9d39172f226a112e4d1c140aa068105bd5c51dacc85da +size 47992 diff --git a/Skins/_• adidas for3v3r/pause-loop.wav b/Skins/_• adidas for3v3r/pause-loop.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• adidas for3v3r/pause-replay.png b/Skins/_• adidas for3v3r/pause-replay.png new file mode 100644 index 00000000..e2bc7591 --- /dev/null +++ b/Skins/_• adidas for3v3r/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b9bdaae9c3bda6982906dd8e47f34585fd29411d84fb382b3741fcde06584a +size 15994 diff --git a/Skins/_• adidas for3v3r/pause-retry@2x.png b/Skins/_• adidas for3v3r/pause-retry@2x.png new file mode 100644 index 00000000..92b9f2a6 --- /dev/null +++ b/Skins/_• adidas for3v3r/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98f2731d3ef53b8ee04a2f4629f03dfbc5723e27f0c07bd3cd66cde2386c93e +size 37704 diff --git a/Skins/_• adidas for3v3r/play-skip.png b/Skins/_• adidas for3v3r/play-skip.png new file mode 100644 index 00000000..f0eb130a --- /dev/null +++ b/Skins/_• adidas for3v3r/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308d737fc6e4e06c126974e9b5947e90e2ee8db9b09bc39f6017d04e902acdc3 +size 51476 diff --git a/Skins/_• adidas for3v3r/play-unranked@2x.png b/Skins/_• adidas for3v3r/play-unranked@2x.png new file mode 100644 index 00000000..467eb22f --- /dev/null +++ b/Skins/_• adidas for3v3r/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b6b6b29b3d8258b9d8a8ee7d254a7002bb895aede2a3a7a3e178944cc7e793 +size 9859 diff --git a/Skins/_• adidas for3v3r/play-warningarrow@2x.png b/Skins/_• adidas for3v3r/play-warningarrow@2x.png new file mode 100644 index 00000000..a852aa4b --- /dev/null +++ b/Skins/_• adidas for3v3r/play-warningarrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e264b76bb14ea8d07baf834d3620d8ca0eb7ecce28d8c1cf55f52578c0350c +size 3899 diff --git a/Skins/_• adidas for3v3r/ranking-A-small.png b/Skins/_• adidas for3v3r/ranking-A-small.png new file mode 100644 index 00000000..f9c359df --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6979b5338f2ccf47a8e06b510f051623fa425431d64998731075e4add332621e +size 2199 diff --git a/Skins/_• adidas for3v3r/ranking-A-small@2x.png b/Skins/_• adidas for3v3r/ranking-A-small@2x.png new file mode 100644 index 00000000..9f619730 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1bc3e954646b8ba0cc300a6f8b354cd5533c19aa290c0f6569ca631eb823845 +size 5870 diff --git a/Skins/_• adidas for3v3r/ranking-A@2x.png b/Skins/_• adidas for3v3r/ranking-A@2x.png new file mode 100644 index 00000000..e9cdfafa --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a86364e804d62731323ed2e041cfc8119f7b9a974eb48c47656e6aedc4ef486 +size 67108 diff --git a/Skins/_• adidas for3v3r/ranking-B-small.png b/Skins/_• adidas for3v3r/ranking-B-small.png new file mode 100644 index 00000000..a95366e6 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf196721fa6982fd6241e6b3fa741f5ecf81ad0cfdee4e0a916045c5486f13ea +size 2826 diff --git a/Skins/_• adidas for3v3r/ranking-B-small@2x.png b/Skins/_• adidas for3v3r/ranking-B-small@2x.png new file mode 100644 index 00000000..e532bece --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b35c3d09adfd8d07cae0c393ddac7c75ae7e049d76d0449c96e5be5549506a3c +size 5351 diff --git a/Skins/_• adidas for3v3r/ranking-B@2x.png b/Skins/_• adidas for3v3r/ranking-B@2x.png new file mode 100644 index 00000000..8aa16706 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0352a0ed626352369f55770d44b8b74b50a231d469f7173f188c97c1decf2355 +size 49853 diff --git a/Skins/_• adidas for3v3r/ranking-C-small.png b/Skins/_• adidas for3v3r/ranking-C-small.png new file mode 100644 index 00000000..792c14b3 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5137b0cff16ebe7c4e9d3ef833c1206e73877f68fecb4612a3a344caf5a1e20b +size 1977 diff --git a/Skins/_• adidas for3v3r/ranking-C-small@2x.png b/Skins/_• adidas for3v3r/ranking-C-small@2x.png new file mode 100644 index 00000000..8ac3eba7 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fcf5b0d652f48bde2209da1aed54f29db18d082dc8104daf1d9f31ef3e47dd0 +size 5375 diff --git a/Skins/_• adidas for3v3r/ranking-C@2x.png b/Skins/_• adidas for3v3r/ranking-C@2x.png new file mode 100644 index 00000000..04e7594f --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb34aaf289da3c72e71fb16542d7749f80c2dd7ee3e76489deac74907fae631 +size 60691 diff --git a/Skins/_• adidas for3v3r/ranking-D-small.png b/Skins/_• adidas for3v3r/ranking-D-small.png new file mode 100644 index 00000000..f558c4fa --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e309e39984c521ffe3ca56947dd46acd6eefe10e4f99705d3b1222d95d28d945 +size 2093 diff --git a/Skins/_• adidas for3v3r/ranking-D-small@2x.png b/Skins/_• adidas for3v3r/ranking-D-small@2x.png new file mode 100644 index 00000000..2a0e70ab --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09c6364983a018d0d243a01acb9a5418a4b6db4fc8749d10d1bddb3d7e24753 +size 5366 diff --git a/Skins/_• adidas for3v3r/ranking-D@2x.png b/Skins/_• adidas for3v3r/ranking-D@2x.png new file mode 100644 index 00000000..ab9e7fde --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1454dc3e3ab60769b6e33f0ec3887eb483896edc3c75781171ce9660ec463989 +size 47657 diff --git a/Skins/_• adidas for3v3r/ranking-S-small.png b/Skins/_• adidas for3v3r/ranking-S-small.png new file mode 100644 index 00000000..2df2a751 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13686357cd761993e762186700575a06e6280c65defa97724e1b844bde738b18 +size 2192 diff --git a/Skins/_• adidas for3v3r/ranking-S-small@2x.png b/Skins/_• adidas for3v3r/ranking-S-small@2x.png new file mode 100644 index 00000000..7400ddc0 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab2b4c717f54af02d087c40a504795ed8a550f730650cb2edd60410cd6e6c40 +size 6724 diff --git a/Skins/_• adidas for3v3r/ranking-S@2x.png b/Skins/_• adidas for3v3r/ranking-S@2x.png new file mode 100644 index 00000000..d62ffc7a --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c840153a4f72f457f04c4e041efb8cefd784284815c611203d00469e9cd746 +size 76088 diff --git a/Skins/_• adidas for3v3r/ranking-SH-small.png b/Skins/_• adidas for3v3r/ranking-SH-small.png new file mode 100644 index 00000000..00670886 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377d643be84e27e71033b9e4fd5aaf1c9554e1b5c908b6abe2f207c2ab7bdc3e +size 2202 diff --git a/Skins/_• adidas for3v3r/ranking-SH-small@2x.png b/Skins/_• adidas for3v3r/ranking-SH-small@2x.png new file mode 100644 index 00000000..5e7e591f --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0208af340d4a1384063cae5a7d722207d1868fe17809ded91826595bbb209ec +size 6471 diff --git a/Skins/_• adidas for3v3r/ranking-SH@2x.png b/Skins/_• adidas for3v3r/ranking-SH@2x.png new file mode 100644 index 00000000..223a83be --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34c463b3fbfbde19514655ff10b6a256f65bc3b42f223814b1f4c33a1bca25c +size 72396 diff --git a/Skins/_• adidas for3v3r/ranking-X-small.png b/Skins/_• adidas for3v3r/ranking-X-small.png new file mode 100644 index 00000000..fe891f33 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ec896f239a442c77bf5b4aae7daa7ec69bd8bdc9082024e207a3b02994466f +size 4168 diff --git a/Skins/_• adidas for3v3r/ranking-X-small@2x.png b/Skins/_• adidas for3v3r/ranking-X-small@2x.png new file mode 100644 index 00000000..40f8d999 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:097d70bdaadadfe7474b2a09b1f761695ee0239ff5f78234be5c1d7e00a7039c +size 8192 diff --git a/Skins/_• adidas for3v3r/ranking-X@2x.png b/Skins/_• adidas for3v3r/ranking-X@2x.png new file mode 100644 index 00000000..ab8f1677 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc6c540e1819fde92101e3a6e292a2f2b9a8cbb0b35a3fe2aac5ca0141f9851 +size 133822 diff --git a/Skins/_• adidas for3v3r/ranking-XH-small.png b/Skins/_• adidas for3v3r/ranking-XH-small.png new file mode 100644 index 00000000..ea32edc7 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b184cfa4dffbac0f9966db7d9d09a1cce12f9d4a833a7ee3dcf26d1882adc75 +size 3828 diff --git a/Skins/_• adidas for3v3r/ranking-XH-small@2x.png b/Skins/_• adidas for3v3r/ranking-XH-small@2x.png new file mode 100644 index 00000000..1fcb67d4 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1215dd59273e49f96484f52e01950346f7cf248d36df8fe26ba34702d7462c0a +size 7725 diff --git a/Skins/_• adidas for3v3r/ranking-XH@2x.png b/Skins/_• adidas for3v3r/ranking-XH@2x.png new file mode 100644 index 00000000..a7b58e95 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41aeae4d27cd07264c49fffb89370caba1be0903657094b0fb2b2b2bc2608eb +size 127331 diff --git a/Skins/_• adidas for3v3r/ranking-accuracy.png b/Skins/_• adidas for3v3r/ranking-accuracy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/ranking-background-overlay.png b/Skins/_• adidas for3v3r/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/ranking-graph.png b/Skins/_• adidas for3v3r/ranking-graph.png new file mode 100644 index 00000000..431d576b --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ff81162814a5315cb855b028f61677b941e78f16a56ee149f42a7e92bb71ca +size 3015 diff --git a/Skins/_• adidas for3v3r/ranking-maxcombo.png b/Skins/_• adidas for3v3r/ranking-maxcombo.png new file mode 100644 index 00000000..d4077227 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8762e9e54d5d3f51350402e2fd7ff47545adca14e1927688cb42bbf24ad12ca3 +size 14510 diff --git a/Skins/_• adidas for3v3r/ranking-panel.png b/Skins/_• adidas for3v3r/ranking-panel.png new file mode 100644 index 00000000..02d61012 --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4e76884f680a764fce2b8927085878a9162133263e294b313826cfe02912ac +size 6540 diff --git a/Skins/_• adidas for3v3r/ranking-perfect.png b/Skins/_• adidas for3v3r/ranking-perfect.png new file mode 100644 index 00000000..4da05b7a --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3136dd422baa88bd5b0b1342c6cf2446174602438681c430aa7b325d58624bd4 +size 69492 diff --git a/Skins/_• adidas for3v3r/ranking-title.png b/Skins/_• adidas for3v3r/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• adidas for3v3r/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• adidas for3v3r/ready.png b/Skins/_• adidas for3v3r/ready.png new file mode 100644 index 00000000..d4077227 --- /dev/null +++ b/Skins/_• adidas for3v3r/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8762e9e54d5d3f51350402e2fd7ff47545adca14e1927688cb42bbf24ad12ca3 +size 14510 diff --git a/Skins/_• adidas for3v3r/readys.wav b/Skins/_• adidas for3v3r/readys.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/reversearrow.png b/Skins/_• adidas for3v3r/reversearrow.png new file mode 100644 index 00000000..4d62c970 --- /dev/null +++ b/Skins/_• adidas for3v3r/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc72b63d6866d1c3d79cf2865df27a175fde74bc870d6355d593a54676b0769 +size 10201 diff --git a/Skins/_• adidas for3v3r/score-0@2x.png b/Skins/_• adidas for3v3r/score-0@2x.png new file mode 100644 index 00000000..32d8706c --- /dev/null +++ b/Skins/_• adidas for3v3r/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c2253f60b17eb44b81886f87dac65042ce0a620075417e59bb0f7d6a596c468 +size 1972 diff --git a/Skins/_• adidas for3v3r/score-1@2x.png b/Skins/_• adidas for3v3r/score-1@2x.png new file mode 100644 index 00000000..df290002 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09bfa1d4c846b697be800659a45787fa208cc84c57521dd00fcb507a5ea8e7e2 +size 1554 diff --git a/Skins/_• adidas for3v3r/score-2@2x.png b/Skins/_• adidas for3v3r/score-2@2x.png new file mode 100644 index 00000000..b84e428d --- /dev/null +++ b/Skins/_• adidas for3v3r/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a6a6ff5405a0b503da6a92ad866745f085c4ea133d1dc2c32b92084d236f737 +size 1906 diff --git a/Skins/_• adidas for3v3r/score-3@2x.png b/Skins/_• adidas for3v3r/score-3@2x.png new file mode 100644 index 00000000..841d9fe2 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37bcdaa2edcca6074f776b7d0a69d1d9756d1b03ac74c9a7edc6a72d43fe70d6 +size 1926 diff --git a/Skins/_• adidas for3v3r/score-4@2x.png b/Skins/_• adidas for3v3r/score-4@2x.png new file mode 100644 index 00000000..f27c66b6 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1d05b7fab2c2a9943572d79beb0cc811221f878d5f9b502f21c7c9f5bdd53d +size 1752 diff --git a/Skins/_• adidas for3v3r/score-5@2x.png b/Skins/_• adidas for3v3r/score-5@2x.png new file mode 100644 index 00000000..5cd2be0d --- /dev/null +++ b/Skins/_• adidas for3v3r/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40caa0d9553f475d200d8199d4e174ca364a9c905b34172817a905da3ecb8a50 +size 1847 diff --git a/Skins/_• adidas for3v3r/score-6@2x.png b/Skins/_• adidas for3v3r/score-6@2x.png new file mode 100644 index 00000000..eb553314 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb8fbad957ba5a93c7e369c64c76004b995d98259c6e9c55e10ab4b07007dba4 +size 1940 diff --git a/Skins/_• adidas for3v3r/score-7@2x.png b/Skins/_• adidas for3v3r/score-7@2x.png new file mode 100644 index 00000000..4fb4ad21 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6336d96cd187c7fb039191f565abd9cacce80d6c39ba573849a77b504a63cf9e +size 1660 diff --git a/Skins/_• adidas for3v3r/score-8@2x.png b/Skins/_• adidas for3v3r/score-8@2x.png new file mode 100644 index 00000000..2ddf115e --- /dev/null +++ b/Skins/_• adidas for3v3r/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ad75f4b0d1dbe731d9bea3cd65d03fc4d0efec906a02af78d50425d25dee83 +size 1961 diff --git a/Skins/_• adidas for3v3r/score-9@2x.png b/Skins/_• adidas for3v3r/score-9@2x.png new file mode 100644 index 00000000..08561025 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10856084777ab49bbe6a7b16170dad4617ce589266a07dfddcb0d0b382a9936d +size 1949 diff --git a/Skins/_• adidas for3v3r/score-comma.png b/Skins/_• adidas for3v3r/score-comma.png new file mode 100644 index 00000000..39618998 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3482de33343175efd6c5381350e744948a0e6c16e1b0a73c9aeeccdec1949b70 +size 786 diff --git a/Skins/_• adidas for3v3r/score-comma@2x.png b/Skins/_• adidas for3v3r/score-comma@2x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/score-dot.png b/Skins/_• adidas for3v3r/score-dot.png new file mode 100644 index 00000000..4035bd37 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f67f01dc2314a5f55dd296c0e8283b4baac3f1f5e80d67c2c849ddc84c2b27 +size 610 diff --git a/Skins/_• adidas for3v3r/score-dot@2x.png b/Skins/_• adidas for3v3r/score-dot@2x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/score-percent.png b/Skins/_• adidas for3v3r/score-percent.png new file mode 100644 index 00000000..c6c45afb --- /dev/null +++ b/Skins/_• adidas for3v3r/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2059d1292f096ee5dd0313d8224eae61808ea8df9f40038f1aa361b803237572 +size 2115 diff --git a/Skins/_• adidas for3v3r/score-percent@2x.png b/Skins/_• adidas for3v3r/score-percent@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/_• adidas for3v3r/score-x.png b/Skins/_• adidas for3v3r/score-x.png new file mode 100644 index 00000000..1dd57c84 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb1f7abd6bbad4ebc49962a40a73728b864b43c42f02a30948bb2e43f579a29 +size 1676 diff --git a/Skins/_• adidas for3v3r/score-x@2x.png b/Skins/_• adidas for3v3r/score-x@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/_• adidas for3v3r/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/_• adidas for3v3r/scorebar-bg.png b/Skins/_• adidas for3v3r/scorebar-bg.png new file mode 100644 index 00000000..750c65b6 --- /dev/null +++ b/Skins/_• adidas for3v3r/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ba8e57e5fbf0c9893065b4c80bb987328a5d65b86fbc968832d06323f76e16 +size 602 diff --git a/Skins/_• adidas for3v3r/scorebar-colour.png b/Skins/_• adidas for3v3r/scorebar-colour.png new file mode 100644 index 00000000..750c65b6 --- /dev/null +++ b/Skins/_• adidas for3v3r/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ba8e57e5fbf0c9893065b4c80bb987328a5d65b86fbc968832d06323f76e16 +size 602 diff --git a/Skins/_• adidas for3v3r/scorebar-ki.png b/Skins/_• adidas for3v3r/scorebar-ki.png new file mode 100644 index 00000000..fac29168 --- /dev/null +++ b/Skins/_• adidas for3v3r/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620234b2f7442c73273afc2f3d90769c6d7ac8813f8d2c14849ba316d7281af7 +size 2803 diff --git a/Skins/_• adidas for3v3r/scorebar-kidanger.png b/Skins/_• adidas for3v3r/scorebar-kidanger.png new file mode 100644 index 00000000..ddab0bf6 --- /dev/null +++ b/Skins/_• adidas for3v3r/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4595cab4b46b51c203c2c6e22629fac69343bed05ec2fe778f509acfd24e0298 +size 2803 diff --git a/Skins/_• adidas for3v3r/scorebar-kidanger2.png b/Skins/_• adidas for3v3r/scorebar-kidanger2.png new file mode 100644 index 00000000..5ed877c3 --- /dev/null +++ b/Skins/_• adidas for3v3r/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0d08de15725e6c4e84824e5cb71b04dbb8d8f9fcfdc8b498163993114cae8f +size 2803 diff --git a/Skins/_• adidas for3v3r/section-fail@2x.png b/Skins/_• adidas for3v3r/section-fail@2x.png new file mode 100644 index 00000000..f47ca068 --- /dev/null +++ b/Skins/_• adidas for3v3r/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc9799d0ef2f1600e197b85d51794cf82a19001bb40882215e4f31c45588669 +size 19054 diff --git a/Skins/_• adidas for3v3r/section-pass@2x.png b/Skins/_• adidas for3v3r/section-pass@2x.png new file mode 100644 index 00000000..5c479102 --- /dev/null +++ b/Skins/_• adidas for3v3r/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f3f401add4315d8da5a03e7306025fcb30af157eceb70c199c9308b1807c524 +size 24065 diff --git a/Skins/_• adidas for3v3r/sectionfail.mp3 b/Skins/_• adidas for3v3r/sectionfail.mp3 new file mode 100644 index 00000000..9d138134 --- /dev/null +++ b/Skins/_• adidas for3v3r/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0200b88cef0c05616b8018e8c9b4d6bca870f3204c81e458fbac5a456d2d4e +size 25578 diff --git a/Skins/_• adidas for3v3r/sectionpass.ogg b/Skins/_• adidas for3v3r/sectionpass.ogg new file mode 100644 index 00000000..3cd65c13 --- /dev/null +++ b/Skins/_• adidas for3v3r/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04eebe03dd9fb4073fa4eb47aad404aa21854b29b8353e9d655d6ce8b6bdb659 +size 13351 diff --git a/Skins/_• adidas for3v3r/selection-mod-autopilot.png b/Skins/_• adidas for3v3r/selection-mod-autopilot.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-autopilot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-mod-autoplay.png b/Skins/_• adidas for3v3r/selection-mod-autoplay.png new file mode 100644 index 00000000..40a61d93 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d3fbf590a584138bb563319747dbef0c9e41db91f19ff45d41e785a5f4f98 +size 2808 diff --git a/Skins/_• adidas for3v3r/selection-mod-doubletime.png b/Skins/_• adidas for3v3r/selection-mod-doubletime.png new file mode 100644 index 00000000..44d3710d --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab64839360d37ff46fbd33edb536e4ec44ea925fe673158dc9fe8f56d1fd1694 +size 4548 diff --git a/Skins/_• adidas for3v3r/selection-mod-easy.png b/Skins/_• adidas for3v3r/selection-mod-easy.png new file mode 100644 index 00000000..40a61d93 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d3fbf590a584138bb563319747dbef0c9e41db91f19ff45d41e785a5f4f98 +size 2808 diff --git a/Skins/_• adidas for3v3r/selection-mod-flashlight.png b/Skins/_• adidas for3v3r/selection-mod-flashlight.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-mod-halftime.png b/Skins/_• adidas for3v3r/selection-mod-halftime.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-mod-hardrock.png b/Skins/_• adidas for3v3r/selection-mod-hardrock.png new file mode 100644 index 00000000..75f35d0d --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c567ec54d48078f0e2df4c6441289004dab663eca88dd56cccb358b9b5c0d7 +size 4714 diff --git a/Skins/_• adidas for3v3r/selection-mod-hidden.png b/Skins/_• adidas for3v3r/selection-mod-hidden.png new file mode 100644 index 00000000..2c381c54 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88a016c1c2e76a31eb4f37ffd004cd0c46f18cbcc3e485624c5be567b9a2aaf +size 5047 diff --git a/Skins/_• adidas for3v3r/selection-mod-nightcore.png b/Skins/_• adidas for3v3r/selection-mod-nightcore.png new file mode 100644 index 00000000..692c1857 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f775a0c36f29b173105e890fa76cace9d78a2534cb1afe9cf06e8b38e79a6d9a +size 4004 diff --git a/Skins/_• adidas for3v3r/selection-mod-nofail.png b/Skins/_• adidas for3v3r/selection-mod-nofail.png new file mode 100644 index 00000000..ef2d4264 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5dc117f06176c2b0c2a6365668ca178026c1d78ad4320f67c8b83a667d8fc91 +size 5002 diff --git a/Skins/_• adidas for3v3r/selection-mod-novideo.png b/Skins/_• adidas for3v3r/selection-mod-novideo.png new file mode 100644 index 00000000..94e78e6e --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-novideo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5902669635e51c4097ca960b3c6e33fbeb552e234f8b6ed4d1ea07b511e25b +size 7615 diff --git a/Skins/_• adidas for3v3r/selection-mod-relax.png b/Skins/_• adidas for3v3r/selection-mod-relax.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-mod-relax2.png b/Skins/_• adidas for3v3r/selection-mod-relax2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-mod-scorev2.png b/Skins/_• adidas for3v3r/selection-mod-scorev2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-mod-spunout.png b/Skins/_• adidas for3v3r/selection-mod-spunout.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-mod-suddendeath.png b/Skins/_• adidas for3v3r/selection-mod-suddendeath.png new file mode 100644 index 00000000..2a2c290e --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab7727bdb99a5d9a5086ec5d1bb19fe113d23a6999d2b99cc380e15c97e1839 +size 4946 diff --git a/Skins/_• adidas for3v3r/selection-mode.png b/Skins/_• adidas for3v3r/selection-mode.png new file mode 100644 index 00000000..40a61d93 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d3fbf590a584138bb563319747dbef0c9e41db91f19ff45d41e785a5f4f98 +size 2808 diff --git a/Skins/_• adidas for3v3r/selection-mode@2x.png b/Skins/_• adidas for3v3r/selection-mode@2x.png new file mode 100644 index 00000000..59602e4f --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b90f37beea47d64e6476c0c3ab782b6c0ae136b8fa6759ba182fbf6daeff5a7 +size 543100 diff --git a/Skins/_• adidas for3v3r/selection-mods _ ä{äÇäüäyäæ.png b/Skins/_• adidas for3v3r/selection-mods _ ä{äÇäüäyäæ.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mods _ ä{äÇäüäyäæ.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-mods-over.png b/Skins/_• adidas for3v3r/selection-mods-over.png new file mode 100644 index 00000000..19bf3e9a --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9e45bd521e1f952c1d19c8eacfcd8ced9795f5b06497c1bd6926b2a1c5e146 +size 111 diff --git a/Skins/_• adidas for3v3r/selection-mods.png b/Skins/_• adidas for3v3r/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-mods@2x.png b/Skins/_• adidas for3v3r/selection-mods@2x.png new file mode 100644 index 00000000..39c24218 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d7e61caac697d909fccb6ac01ac80afd711375e96922b154ddadcce52ade49 +size 4089 diff --git a/Skins/_• adidas for3v3r/selection-options-over - Copy.png b/Skins/_• adidas for3v3r/selection-options-over - Copy.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-options-over - Copy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-options-over.png b/Skins/_• adidas for3v3r/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-options.png b/Skins/_• adidas for3v3r/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-random-over.png b/Skins/_• adidas for3v3r/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-random.png b/Skins/_• adidas for3v3r/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• adidas for3v3r/selection-selectoptions-over.png b/Skins/_• adidas for3v3r/selection-selectoptions-over.png new file mode 100644 index 00000000..ef49e7a7 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d17470c892f72405e6e836dcd880030be0c8edc4c891c74e9a448de4a01a38 +size 3904 diff --git a/Skins/_• adidas for3v3r/selection-selectoptions.png b/Skins/_• adidas for3v3r/selection-selectoptions.png new file mode 100644 index 00000000..bd52ae1c --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500167adb5b2a8a487b6678724eeb23f1f453fee3baef9f284cd0f5c1be9ad6 +size 3652 diff --git a/Skins/_• adidas for3v3r/selection-tab.png b/Skins/_• adidas for3v3r/selection-tab.png new file mode 100644 index 00000000..48294853 --- /dev/null +++ b/Skins/_• adidas for3v3r/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64280abc5430bc92972049d98d76180779bfa0851f3a91916ac74ce14cd3ba72 +size 2885 diff --git a/Skins/_• adidas for3v3r/skin.ini b/Skins/_• adidas for3v3r/skin.ini new file mode 100644 index 00000000..3c9046ef --- /dev/null +++ b/Skins/_• adidas for3v3r/skin.ini @@ -0,0 +1,46 @@ +[General] +Name: adidas for3v3r +Author: adidas pocan +Version: 6.66 +SliderBallFlip: 0 +CursorRotate: 0 +CursorExpand: 1 +CursorCentre: 1 +SliderBallFrames: 1 +HitCircleOverlayAboveNumer: 0 +ComboBurstRandom: 0 +SliderStyle: 2 + +[Colours] +Combo1: 255,255,255 +Combo2: 255,255,255 +Combo3: 255,255,255 +Combo4: 255,255,255 +SliderBorder: 255,255,255 +SliderTrackOverride: 15,0,25 +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 230,230,230 +SpinnerApproachCircle: 255,255,255 +ApproachCircle: 255,255,255 +MenuGlow: 0,0,190 + +[Fonts] +HitCircleOverlap: 15 +ScoreOverlap: 2 +ComboPrefix: Assets/score/scor1231231313123e +ComboOverlap: 2 +[Mania] +Keys: 4 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +//Colours +//images +//Keys diff --git a/Skins/_• adidas for3v3r/sliderb@2x.png b/Skins/_• adidas for3v3r/sliderb@2x.png new file mode 100644 index 00000000..97077972 --- /dev/null +++ b/Skins/_• adidas for3v3r/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e322a9ec706595ce59cc9622a4eecd3098cc1015e8683854bd33448be8898c2f +size 4988 diff --git a/Skins/_• adidas for3v3r/sliderendcircle.png b/Skins/_• adidas for3v3r/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/_• adidas for3v3r/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/_• adidas for3v3r/sliderfollowcircle@2x.png b/Skins/_• adidas for3v3r/sliderfollowcircle@2x.png new file mode 100644 index 00000000..039debe6 --- /dev/null +++ b/Skins/_• adidas for3v3r/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:390dec3a5fbcd083d4980c8734a521abf9d429226154d20ffddbaf437d50b33d +size 15254 diff --git a/Skins/_• adidas for3v3r/sliderpoint10.png b/Skins/_• adidas for3v3r/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/sliderscorepoint.png b/Skins/_• adidas for3v3r/sliderscorepoint.png new file mode 100644 index 00000000..e3c4a631 --- /dev/null +++ b/Skins/_• adidas for3v3r/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3402f9043cff21c8693995e92ea6df3f11e024ba368151004c6ef8b23de3f524 +size 3899 diff --git a/Skins/_• adidas for3v3r/sliderstartcircle.png b/Skins/_• adidas for3v3r/sliderstartcircle.png new file mode 100644 index 00000000..ad4e800b --- /dev/null +++ b/Skins/_• adidas for3v3r/sliderstartcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65d5882b8ec40233394f103468ab78c496de9f9d4540a43fd633acc1d3cd163 +size 9483 diff --git a/Skins/_• adidas for3v3r/soft-hitclap.mp3 b/Skins/_• adidas for3v3r/soft-hitclap.mp3 new file mode 100644 index 00000000..45bfcfd3 --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitclap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c1e7ba1801bf41a4969ab1f6b1fc320986be63ad6c8f76497eda8661160f79 +size 2164 diff --git a/Skins/_• adidas for3v3r/soft-hitclap.wav b/Skins/_• adidas for3v3r/soft-hitclap.wav new file mode 100644 index 00000000..ba0577bd --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d41d2409a443714d2afda3e6745288e4a699422d8248a70ffd8a9d4ebc71d1 +size 4548 diff --git a/Skins/_• adidas for3v3r/soft-hitclap2.wav b/Skins/_• adidas for3v3r/soft-hitclap2.wav new file mode 100644 index 00000000..3d8aaa60 --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c6bc82e55b02266241dcc1d2095e33205c0e899a72bf22e5f3c00c7d05797b +size 42468 diff --git a/Skins/_• adidas for3v3r/soft-hitfinish.mp3 b/Skins/_• adidas for3v3r/soft-hitfinish.mp3 new file mode 100644 index 00000000..94ab8eda --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitfinish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e37e406e3e8596611bf916541b460de7e849be3fbb8fad8f8f114cfdaa498668 +size 17117 diff --git a/Skins/_• adidas for3v3r/soft-hitfinish.wav b/Skins/_• adidas for3v3r/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/_• adidas for3v3r/soft-hitnormal.mp3 b/Skins/_• adidas for3v3r/soft-hitnormal.mp3 new file mode 100644 index 00000000..247dbb7f --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitnormal.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4acb614b1c9dd24aef03ce02963826f017f4de566e506374f389498188591276 +size 2086 diff --git a/Skins/_• adidas for3v3r/soft-hitnormal.wav b/Skins/_• adidas for3v3r/soft-hitnormal.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/_• adidas for3v3r/soft-hitnormal1.wav b/Skins/_• adidas for3v3r/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/_• adidas for3v3r/soft-hitnormal2.wav b/Skins/_• adidas for3v3r/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/_• adidas for3v3r/soft-hitwhistle.mp3 b/Skins/_• adidas for3v3r/soft-hitwhistle.mp3 new file mode 100644 index 00000000..0dd37313 --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fbdd9edcfbca19d4384a1644b7f361eb793aea1fb5208b48aa8e828dd85478 +size 5788 diff --git a/Skins/_• adidas for3v3r/soft-hitwhistle.wav b/Skins/_• adidas for3v3r/soft-hitwhistle.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/_• adidas for3v3r/soft-hitwhistle2.wav b/Skins/_• adidas for3v3r/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/_• adidas for3v3r/soft-sliderslide.mp3 b/Skins/_• adidas for3v3r/soft-sliderslide.mp3 new file mode 100644 index 00000000..6676f30b --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-sliderslide.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7601e5e53906c4912d240a0de65e61c8993206d9390bf2960265fc208edba2f +size 521 diff --git a/Skins/_• adidas for3v3r/soft-sliderslide.wav b/Skins/_• adidas for3v3r/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/soft-sliderslide2.wav b/Skins/_• adidas for3v3r/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/soft-slidertick.mp3 b/Skins/_• adidas for3v3r/soft-slidertick.mp3 new file mode 100644 index 00000000..916510df --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-slidertick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e244c44e23be7a79d2da023c9da612f11a6064078cec0b71380047dfbf76024f +size 12673 diff --git a/Skins/_• adidas for3v3r/soft-slidertick.wav b/Skins/_• adidas for3v3r/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/_• adidas for3v3r/soft-slidertick2.wav b/Skins/_• adidas for3v3r/soft-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/_• adidas for3v3r/soft-sliderwhistle.mp3 b/Skins/_• adidas for3v3r/soft-sliderwhistle.mp3 new file mode 100644 index 00000000..45100aeb --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-sliderwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9eeaba3adea15dcc3e3c82053e8b4aed59b73767f4c2126b42e2e891b0513bc +size 7512 diff --git a/Skins/_• adidas for3v3r/soft-sliderwhistle.wav b/Skins/_• adidas for3v3r/soft-sliderwhistle.wav new file mode 100644 index 00000000..ca81266f --- /dev/null +++ b/Skins/_• adidas for3v3r/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e9fc47debfdff56028ea82a0de24403187ddd7e3cccd61c538ca20ba81f427 +size 47580 diff --git a/Skins/_• adidas for3v3r/songselect-bottom@2x.png b/Skins/_• adidas for3v3r/songselect-bottom@2x.png new file mode 100644 index 00000000..1980fe49 --- /dev/null +++ b/Skins/_• adidas for3v3r/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3840b7e81cdfd3dc2920ac3d3996faa3ed9f76fbb439e15a4b39c262e99f230a +size 5265 diff --git a/Skins/_• adidas for3v3r/spinner-approachcircle.png b/Skins/_• adidas for3v3r/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/_• adidas for3v3r/spinner-approachcircle@2x.png b/Skins/_• adidas for3v3r/spinner-approachcircle@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/_• adidas for3v3r/spinner-background.png b/Skins/_• adidas for3v3r/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/_• adidas for3v3r/spinner-bottom.png b/Skins/_• adidas for3v3r/spinner-bottom.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/_• adidas for3v3r/spinner-circle.png b/Skins/_• adidas for3v3r/spinner-circle.png new file mode 100644 index 00000000..74fe7dc4 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4f6bb0ebe0b9d81c69c060cdee80db2c4a234a02b3bdf12c340fb3eaa7a932 +size 12638 diff --git a/Skins/_• adidas for3v3r/spinner-clear.png b/Skins/_• adidas for3v3r/spinner-clear.png new file mode 100644 index 00000000..f97b1918 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f358d591de1c694c74d90615b6bdd827e714984cbdda4dc7721b6477cedf347 +size 23699 diff --git a/Skins/_• adidas for3v3r/spinner-glow.png b/Skins/_• adidas for3v3r/spinner-glow.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/_• adidas for3v3r/spinner-metre.png b/Skins/_• adidas for3v3r/spinner-metre.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/spinner-middle.png b/Skins/_• adidas for3v3r/spinner-middle.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/_• adidas for3v3r/spinner-middle2.png b/Skins/_• adidas for3v3r/spinner-middle2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/_• adidas for3v3r/spinner-middle2@2x.png b/Skins/_• adidas for3v3r/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/_• adidas for3v3r/spinner-middle@2x.png b/Skins/_• adidas for3v3r/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/_• adidas for3v3r/spinner-osu.png b/Skins/_• adidas for3v3r/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/spinner-rpm.png b/Skins/_• adidas for3v3r/spinner-rpm.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/spinner-spin.png b/Skins/_• adidas for3v3r/spinner-spin.png new file mode 100644 index 00000000..4c24f955 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46115e74175b608b5cd9e4a40255a2f92039026103606298ff2391d0b70a6283 +size 41353 diff --git a/Skins/_• adidas for3v3r/spinner-top.png b/Skins/_• adidas for3v3r/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/_• adidas for3v3r/spinnerbonus.wav b/Skins/_• adidas for3v3r/spinnerbonus.wav new file mode 100644 index 00000000..6e901ec0 --- /dev/null +++ b/Skins/_• adidas for3v3r/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea3774c20fb4a84c33ab6e08b7db0042e2494173e26ca210ec6171c20da9c4 +size 178600 diff --git a/Skins/_• adidas for3v3r/spinnerspin.wav b/Skins/_• adidas for3v3r/spinnerspin.wav new file mode 100644 index 00000000..8e3c0d9a --- /dev/null +++ b/Skins/_• adidas for3v3r/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca06ced00a460d2bea791c5e0ef611d49aafb4ebb2790a8cb893080c4fb72826 +size 66080 diff --git a/Skins/_• adidas for3v3r/star.png b/Skins/_• adidas for3v3r/star.png new file mode 100644 index 00000000..57cc86e3 --- /dev/null +++ b/Skins/_• adidas for3v3r/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0923dba4b00cd7e9a694d731db281bf87da06a8a5bb51c7bf59f889c630f69 +size 17316 diff --git a/Skins/_• adidas for3v3r/star2.png b/Skins/_• adidas for3v3r/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• adidas for3v3r/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• adidas for3v3r/volume-bg-effect@2x.png b/Skins/_• adidas for3v3r/volume-bg-effect@2x.png new file mode 100644 index 00000000..4515098f --- /dev/null +++ b/Skins/_• adidas for3v3r/volume-bg-effect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101be858ccc62f2e7895e1d9b62fb3f60b3c2e01b17d31b92f89586c2d99cfd1 +size 10602 diff --git a/Skins/_• adidas for3v3r/volume-bg@2x.png b/Skins/_• adidas for3v3r/volume-bg@2x.png new file mode 100644 index 00000000..4649433b --- /dev/null +++ b/Skins/_• adidas for3v3r/volume-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35baa1a18decd33f8a1f2991c2fed3fca43a308495df049596c987cf6c891c3f +size 8664 diff --git a/Skins/_• rafisedit/applause.ogg b/Skins/_• rafisedit/applause.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/approachcircle.png b/Skins/_• rafisedit/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/_• rafisedit/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/_• rafisedit/arrow-pause.png b/Skins/_• rafisedit/arrow-pause.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/arrow-pause.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/back-button-click.ogg b/Skins/_• rafisedit/back-button-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/back-button-hover.ogg b/Skins/_• rafisedit/back-button-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/button-left.png b/Skins/_• rafisedit/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/button-middle.png b/Skins/_• rafisedit/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/button-right.png b/Skins/_• rafisedit/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/check-off.ogg b/Skins/_• rafisedit/check-off.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/check-on.ogg b/Skins/_• rafisedit/check-on.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/click-close.ogg b/Skins/_• rafisedit/click-close.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/click-short-confirm.ogg b/Skins/_• rafisedit/click-short-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/click-short.ogg b/Skins/_• rafisedit/click-short.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/comboburst.ogg b/Skins/_• rafisedit/comboburst.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/comboburst.png b/Skins/_• rafisedit/comboburst.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/count.ogg b/Skins/_• rafisedit/count.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/count1.png b/Skins/_• rafisedit/count1.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/_• rafisedit/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/_• rafisedit/count1s.ogg b/Skins/_• rafisedit/count1s.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/count2.png b/Skins/_• rafisedit/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/count2s.ogg b/Skins/_• rafisedit/count2s.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/count3.png b/Skins/_• rafisedit/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/count3s.ogg b/Skins/_• rafisedit/count3s.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/cursor.png b/Skins/_• rafisedit/cursor.png new file mode 100644 index 00000000..a59f26b4 --- /dev/null +++ b/Skins/_• rafisedit/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c07341bf82baf999fe79ab86d5052f18a87c6ae9bc18dba7d8f9f996788efc61 +size 4913 diff --git a/Skins/_• rafisedit/cursortrail.png b/Skins/_• rafisedit/cursortrail.png new file mode 100644 index 00000000..c9994cdb --- /dev/null +++ b/Skins/_• rafisedit/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f384f8ad207f2d9eb1abe63ad44a3ffb8b69df7850fc26252b863925302e33 +size 3423 diff --git a/Skins/_• rafisedit/default-0.png b/Skins/_• rafisedit/default-0.png new file mode 100644 index 00000000..64858f31 --- /dev/null +++ b/Skins/_• rafisedit/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbf5a57bc4ddb3c7c85f75f90f2843d6532459545610bf51f8eae5dce4c326b +size 5310 diff --git a/Skins/_• rafisedit/default-1.png b/Skins/_• rafisedit/default-1.png new file mode 100644 index 00000000..aa4f3307 --- /dev/null +++ b/Skins/_• rafisedit/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b2536e0af1f5632b841db73aec1136c9174cba10cb8303f0c0e065584fd19 +size 3645 diff --git a/Skins/_• rafisedit/default-2.png b/Skins/_• rafisedit/default-2.png new file mode 100644 index 00000000..55beb36f --- /dev/null +++ b/Skins/_• rafisedit/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829ca68fc1fc9e0aaba0f2f6d41a92adc9de6bf9c2511365ba70baa3d61790cb +size 5709 diff --git a/Skins/_• rafisedit/default-3.png b/Skins/_• rafisedit/default-3.png new file mode 100644 index 00000000..265b0dac --- /dev/null +++ b/Skins/_• rafisedit/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a098dfe1bf81dc21d017d8dfe5e944cd49c63208ddb5c032ce7f518cf208f5c6 +size 5741 diff --git a/Skins/_• rafisedit/default-4.png b/Skins/_• rafisedit/default-4.png new file mode 100644 index 00000000..9f003f7f --- /dev/null +++ b/Skins/_• rafisedit/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747a290ca5ee9b65839c3193176a8ce57d09382c974a609ee5148b688ddd550d +size 4796 diff --git a/Skins/_• rafisedit/default-5.png b/Skins/_• rafisedit/default-5.png new file mode 100644 index 00000000..2c1bf42f --- /dev/null +++ b/Skins/_• rafisedit/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab00a8ec33a6c69157bb68367aa74a27d34917a163c4d31429ab08a471ca688 +size 5492 diff --git a/Skins/_• rafisedit/default-6.png b/Skins/_• rafisedit/default-6.png new file mode 100644 index 00000000..7c18c2b4 --- /dev/null +++ b/Skins/_• rafisedit/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa75ef2541e3759644705f565ff2ac90184c37d83ef676b163ce380ed0c91ebd +size 5489 diff --git a/Skins/_• rafisedit/default-7.png b/Skins/_• rafisedit/default-7.png new file mode 100644 index 00000000..d018b09e --- /dev/null +++ b/Skins/_• rafisedit/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de8149971f96b584196147374f168bdfac4dca1b6d6b4485409df0026e181b7 +size 5107 diff --git a/Skins/_• rafisedit/default-8.png b/Skins/_• rafisedit/default-8.png new file mode 100644 index 00000000..8d653450 --- /dev/null +++ b/Skins/_• rafisedit/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc23776e5e57efc3854b65b023f89dfb44dca2a9a1d44a6228e63cfabe832947 +size 5602 diff --git a/Skins/_• rafisedit/default-9.png b/Skins/_• rafisedit/default-9.png new file mode 100644 index 00000000..4a53267c --- /dev/null +++ b/Skins/_• rafisedit/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882725cf243743606128440651a4328157311def82fc00ea7415a38ccaf3d02e +size 5451 diff --git a/Skins/_• rafisedit/drum-hitclap.ogg b/Skins/_• rafisedit/drum-hitclap.ogg new file mode 100644 index 00000000..69fa3fd0 --- /dev/null +++ b/Skins/_• rafisedit/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933861cb92d0da79e6c64de23425e64da86bcb5ad5b98bee0b2a6436bbdbb86f +size 4614 diff --git a/Skins/_• rafisedit/drum-hitfinish.ogg b/Skins/_• rafisedit/drum-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/_• rafisedit/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/_• rafisedit/drum-hitnormal.ogg b/Skins/_• rafisedit/drum-hitnormal.ogg new file mode 100644 index 00000000..7221dc34 --- /dev/null +++ b/Skins/_• rafisedit/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0339f2aae06df054dc1b1bbda0168f46e34426c00da3f4d0adc986fede7b0227 +size 7506 diff --git a/Skins/_• rafisedit/drum-hitwhistle.ogg b/Skins/_• rafisedit/drum-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/_• rafisedit/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/_• rafisedit/drum-sliderslide.ogg b/Skins/_• rafisedit/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/drum-slidertick.ogg b/Skins/_• rafisedit/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/drum-sliderwhistle.ogg b/Skins/_• rafisedit/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/failsound.ogg b/Skins/_• rafisedit/failsound.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/followpoint-0.png b/Skins/_• rafisedit/followpoint-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/_• rafisedit/followpoint-1.png b/Skins/_• rafisedit/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/followpoint-2.png b/Skins/_• rafisedit/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/followpoint-3.png b/Skins/_• rafisedit/followpoint-3.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/_• rafisedit/followpoint-4.png b/Skins/_• rafisedit/followpoint-4.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/_• rafisedit/followpoint-5.png b/Skins/_• rafisedit/followpoint-5.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/_• rafisedit/followpoint-6.png b/Skins/_• rafisedit/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/followpoint-7.png b/Skins/_• rafisedit/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/followpoint-8.png b/Skins/_• rafisedit/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/followpoint-9.png b/Skins/_• rafisedit/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/followpoint.png b/Skins/_• rafisedit/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/_• rafisedit/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/_• rafisedit/go.png b/Skins/_• rafisedit/go.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/_• rafisedit/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/_• rafisedit/gos.ogg b/Skins/_• rafisedit/gos.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/heartbeat.ogg b/Skins/_• rafisedit/heartbeat.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/hit0-0.png b/Skins/_• rafisedit/hit0-0.png new file mode 100644 index 00000000..37370c7e --- /dev/null +++ b/Skins/_• rafisedit/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcc98ce442024382f729db48f54a8aaf5ca68a8ad38db09bd797d860a7a09335 +size 3002 diff --git a/Skins/_• rafisedit/hit0.png b/Skins/_• rafisedit/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/hit100-0.png b/Skins/_• rafisedit/hit100-0.png new file mode 100644 index 00000000..68dbe724 --- /dev/null +++ b/Skins/_• rafisedit/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d898134b6632193a84ce2b1b3fc24a148f6461c2146912b8e380fcd9cd5934f +size 7031 diff --git a/Skins/_• rafisedit/hit100-0@2x.png b/Skins/_• rafisedit/hit100-0@2x.png new file mode 100644 index 00000000..7086fc9d --- /dev/null +++ b/Skins/_• rafisedit/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1926c7306214d4dc4a866e9a4c0c1c79e2725b135de3f9a3045566b9be9a5191 +size 6643 diff --git a/Skins/_• rafisedit/hit100.png b/Skins/_• rafisedit/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/hit100k-0.png b/Skins/_• rafisedit/hit100k-0.png new file mode 100644 index 00000000..e01a38ce --- /dev/null +++ b/Skins/_• rafisedit/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda94ac254a8ca99742c643eaeecd87efd640a76ee49cf1ee4914d2356653cd8 +size 8624 diff --git a/Skins/_• rafisedit/hit100k-0@2x.png b/Skins/_• rafisedit/hit100k-0@2x.png new file mode 100644 index 00000000..6fe97234 --- /dev/null +++ b/Skins/_• rafisedit/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d2d65d765d7af47a87cd93106ef56033e146960ed490a738fd5a962e0bb837 +size 13252 diff --git a/Skins/_• rafisedit/hit100k.png b/Skins/_• rafisedit/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/hit300-0.png b/Skins/_• rafisedit/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• rafisedit/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• rafisedit/hit300.png b/Skins/_• rafisedit/hit300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/_• rafisedit/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/_• rafisedit/hit300g-0.png b/Skins/_• rafisedit/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• rafisedit/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• rafisedit/hit300g.png b/Skins/_• rafisedit/hit300g.png new file mode 100644 index 00000000..06898bd1 --- /dev/null +++ b/Skins/_• rafisedit/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9dce9a7b07b046e0339f3d42f6533d4c192a82152a35c8604a6ca2acce8139 +size 15303 diff --git a/Skins/_• rafisedit/hit300k-0.png b/Skins/_• rafisedit/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• rafisedit/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• rafisedit/hit300k.png b/Skins/_• rafisedit/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/_• rafisedit/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/_• rafisedit/hit50-0.png b/Skins/_• rafisedit/hit50-0.png new file mode 100644 index 00000000..04fdf4c4 --- /dev/null +++ b/Skins/_• rafisedit/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd3ef4fa5cf3cf9ec672a847716ca09908cadf01ff1ad72c496646069c4055bb +size 6034 diff --git a/Skins/_• rafisedit/hit50-0@2x.png b/Skins/_• rafisedit/hit50-0@2x.png new file mode 100644 index 00000000..b088dfe1 --- /dev/null +++ b/Skins/_• rafisedit/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dd52aac33996a5e10a5363e998e9c618c799e2f56b1ac3a061322a8116d9a1 +size 7141 diff --git a/Skins/_• rafisedit/hit50.png b/Skins/_• rafisedit/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/hitcircle.png b/Skins/_• rafisedit/hitcircle.png new file mode 100644 index 00000000..58edacff --- /dev/null +++ b/Skins/_• rafisedit/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e081bcb246d426acaac852fa4a6cd05e5c6804989d0187301144679128d77ec +size 9659 diff --git a/Skins/_• rafisedit/hitcircleoverlay.png b/Skins/_• rafisedit/hitcircleoverlay.png new file mode 100644 index 00000000..e84ae01b --- /dev/null +++ b/Skins/_• rafisedit/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2242085fcfd0a3680fe53191a999547fe99a3703fbbae2925c799df6ef287b +size 8362 diff --git a/Skins/_• rafisedit/inputoverlay-background.png b/Skins/_• rafisedit/inputoverlay-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/inputoverlay-key.png b/Skins/_• rafisedit/inputoverlay-key.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/key-confirm.ogg b/Skins/_• rafisedit/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/key-delete.ogg b/Skins/_• rafisedit/key-delete.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/key-movement.ogg b/Skins/_• rafisedit/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/key-press-1.ogg b/Skins/_• rafisedit/key-press-1.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/key-press-2.ogg b/Skins/_• rafisedit/key-press-2.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/key-press-3.ogg b/Skins/_• rafisedit/key-press-3.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/key-press-4.ogg b/Skins/_• rafisedit/key-press-4.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/match-confirm.ogg b/Skins/_• rafisedit/match-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/match-join.ogg b/Skins/_• rafisedit/match-join.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/match-leave.ogg b/Skins/_• rafisedit/match-leave.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/match-notready.ogg b/Skins/_• rafisedit/match-notready.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/match-ready.ogg b/Skins/_• rafisedit/match-ready.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/match-start.ogg b/Skins/_• rafisedit/match-start.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-back-click.ogg b/Skins/_• rafisedit/menu-back-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-back-hover.ogg b/Skins/_• rafisedit/menu-back-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-back.png b/Skins/_• rafisedit/menu-back.png new file mode 100644 index 00000000..60b2f556 --- /dev/null +++ b/Skins/_• rafisedit/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b498f8a2ba0bdbf48de66753b3cfaa1c8bcfe4b7327d3abd149c6e15ffef47d1 +size 109 diff --git a/Skins/_• rafisedit/menu-button-background.png b/Skins/_• rafisedit/menu-button-background.png new file mode 100644 index 00000000..429a8a15 --- /dev/null +++ b/Skins/_• rafisedit/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78580c310366d47c2abab87c6a786a402328be16e3af61c07332c48c317b5f56 +size 144 diff --git a/Skins/_• rafisedit/menu-direct-click.ogg b/Skins/_• rafisedit/menu-direct-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-direct-hover.ogg b/Skins/_• rafisedit/menu-direct-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-edit-click.ogg b/Skins/_• rafisedit/menu-edit-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-edit-hover.ogg b/Skins/_• rafisedit/menu-edit-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-exit-click.ogg b/Skins/_• rafisedit/menu-exit-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-exit-hover.ogg b/Skins/_• rafisedit/menu-exit-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-freeplay-click.ogg b/Skins/_• rafisedit/menu-freeplay-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-freeplay-hover.ogg b/Skins/_• rafisedit/menu-freeplay-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-multiplayer-click.ogg b/Skins/_• rafisedit/menu-multiplayer-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-multiplayer-hover.ogg b/Skins/_• rafisedit/menu-multiplayer-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-options-click.ogg b/Skins/_• rafisedit/menu-options-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-options-hover.ogg b/Skins/_• rafisedit/menu-options-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-play-click.ogg b/Skins/_• rafisedit/menu-play-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menu-play-hover.ogg b/Skins/_• rafisedit/menu-play-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menuback.ogg b/Skins/_• rafisedit/menuback.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menuclick.ogg b/Skins/_• rafisedit/menuclick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/menuhit.ogg b/Skins/_• rafisedit/menuhit.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/mode-osu-small.png b/Skins/_• rafisedit/mode-osu-small.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/_• rafisedit/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/_• rafisedit/mode-osu.png b/Skins/_• rafisedit/mode-osu.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/_• rafisedit/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/_• rafisedit/multi-skipped.png b/Skins/_• rafisedit/multi-skipped.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/_• rafisedit/multi-skipped.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/_• rafisedit/nightcore-clap.wav b/Skins/_• rafisedit/nightcore-clap.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/_• rafisedit/nightcore-clap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/_• rafisedit/nightcore-finish.wav b/Skins/_• rafisedit/nightcore-finish.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/_• rafisedit/nightcore-finish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/_• rafisedit/nightcore-hat.wav b/Skins/_• rafisedit/nightcore-hat.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/_• rafisedit/nightcore-hat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/_• rafisedit/nightcore-kick.wav b/Skins/_• rafisedit/nightcore-kick.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/_• rafisedit/nightcore-kick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/_• rafisedit/normal-hitclap.ogg b/Skins/_• rafisedit/normal-hitclap.ogg new file mode 100644 index 00000000..69fa3fd0 --- /dev/null +++ b/Skins/_• rafisedit/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933861cb92d0da79e6c64de23425e64da86bcb5ad5b98bee0b2a6436bbdbb86f +size 4614 diff --git a/Skins/_• rafisedit/normal-hitfinish.ogg b/Skins/_• rafisedit/normal-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/_• rafisedit/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/_• rafisedit/normal-hitnormal.ogg b/Skins/_• rafisedit/normal-hitnormal.ogg new file mode 100644 index 00000000..7221dc34 --- /dev/null +++ b/Skins/_• rafisedit/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0339f2aae06df054dc1b1bbda0168f46e34426c00da3f4d0adc986fede7b0227 +size 7506 diff --git a/Skins/_• rafisedit/normal-hitwhistle.ogg b/Skins/_• rafisedit/normal-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/_• rafisedit/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/_• rafisedit/normal-sliderslide.ogg b/Skins/_• rafisedit/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/normal-slidertick.ogg b/Skins/_• rafisedit/normal-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/normal-sliderwhistle.ogg b/Skins/_• rafisedit/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/pause-back-click.ogg b/Skins/_• rafisedit/pause-back-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/pause-back-hover.ogg b/Skins/_• rafisedit/pause-back-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/pause-back@2x.png b/Skins/_• rafisedit/pause-back@2x.png new file mode 100644 index 00000000..7f89a933 --- /dev/null +++ b/Skins/_• rafisedit/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac91edf200e9960b691134acdb6d9f53eab482a89115065bc8448a75dcfa8265 +size 3178 diff --git a/Skins/_• rafisedit/pause-continue-click.ogg b/Skins/_• rafisedit/pause-continue-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/pause-continue-hover.ogg b/Skins/_• rafisedit/pause-continue-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/pause-continue@2x.png b/Skins/_• rafisedit/pause-continue@2x.png new file mode 100644 index 00000000..10bd5eda --- /dev/null +++ b/Skins/_• rafisedit/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502dbe1621e7d2a7396196b12e000beddcc1edbc5f3ab027aba160b023729a66 +size 3712 diff --git a/Skins/_• rafisedit/pause-hover.ogg b/Skins/_• rafisedit/pause-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/pause-loop.ogg b/Skins/_• rafisedit/pause-loop.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/pause-replay@2x.png b/Skins/_• rafisedit/pause-replay@2x.png new file mode 100644 index 00000000..056e8edd --- /dev/null +++ b/Skins/_• rafisedit/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7267817c95c02dce42f68d21fc4f6a58245b6f54791e616bc0a11a545616bbe7 +size 3838 diff --git a/Skins/_• rafisedit/pause-retry-click.ogg b/Skins/_• rafisedit/pause-retry-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/pause-retry-hover.ogg b/Skins/_• rafisedit/pause-retry-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/pause-retry@2x.png b/Skins/_• rafisedit/pause-retry@2x.png new file mode 100644 index 00000000..577004f5 --- /dev/null +++ b/Skins/_• rafisedit/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce68471b938dc2beb953ac239e957b99e92e73a012d78b340d573555807f7063 +size 3024 diff --git a/Skins/_• rafisedit/play-unranked.png b/Skins/_• rafisedit/play-unranked.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/play-warningarrow@2x.png b/Skins/_• rafisedit/play-warningarrow@2x.png new file mode 100644 index 00000000..f8e6c3db --- /dev/null +++ b/Skins/_• rafisedit/play-warningarrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0475c4075db86b6ca8a3c68aaeb7515710eaaf70ed4fd9d0c9e6f203d22606 +size 418 diff --git a/Skins/_• rafisedit/ranking-accuracy.png b/Skins/_• rafisedit/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• rafisedit/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• rafisedit/ranking-graph.png b/Skins/_• rafisedit/ranking-graph.png new file mode 100644 index 00000000..d4af6b34 --- /dev/null +++ b/Skins/_• rafisedit/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52616bdb820538196240182a81d2a7d5b3c88dab87c1a53109baf97903089e32 +size 114 diff --git a/Skins/_• rafisedit/ranking-maxcombo.png b/Skins/_• rafisedit/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/_• rafisedit/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/_• rafisedit/ranking-panel.png b/Skins/_• rafisedit/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/_• rafisedit/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/_• rafisedit/ranking-perfect.png b/Skins/_• rafisedit/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/_• rafisedit/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/_• rafisedit/ranking-title.png b/Skins/_• rafisedit/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/_• rafisedit/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/_• rafisedit/ranking-winner.png b/Skins/_• rafisedit/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/_• rafisedit/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/_• rafisedit/ready.png b/Skins/_• rafisedit/ready.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/readys.ogg b/Skins/_• rafisedit/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/reversearrow@2x.png b/Skins/_• rafisedit/reversearrow@2x.png new file mode 100644 index 00000000..556f7a18 --- /dev/null +++ b/Skins/_• rafisedit/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c786a9909d65b60db2dc4e15aa7255c4d0ddc4b645aa1f74d94348108286e99 +size 10519 diff --git a/Skins/_• rafisedit/score-0.png b/Skins/_• rafisedit/score-0.png new file mode 100644 index 00000000..855c8e71 --- /dev/null +++ b/Skins/_• rafisedit/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7170a4bced5520f101074bf05ba7bfcfa240ee6d0024dde437c97b167cf3902 +size 530 diff --git a/Skins/_• rafisedit/score-1.png b/Skins/_• rafisedit/score-1.png new file mode 100644 index 00000000..70878031 --- /dev/null +++ b/Skins/_• rafisedit/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595b96e50ba6a1c465fbebb37155946a3079ed3e40ea2c368d1f816b34b69803 +size 284 diff --git a/Skins/_• rafisedit/score-2.png b/Skins/_• rafisedit/score-2.png new file mode 100644 index 00000000..892a7cb6 --- /dev/null +++ b/Skins/_• rafisedit/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d22ebbcec0d8124c61f2035c5298c04a905cf293769c9c3728efa0e1f00166 +size 465 diff --git a/Skins/_• rafisedit/score-3.png b/Skins/_• rafisedit/score-3.png new file mode 100644 index 00000000..d06a275a --- /dev/null +++ b/Skins/_• rafisedit/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d8e7dd630fce143b22e6f2366eae27779aba36f2f327f7b21919f63c96c11e +size 525 diff --git a/Skins/_• rafisedit/score-4.png b/Skins/_• rafisedit/score-4.png new file mode 100644 index 00000000..12e11a93 --- /dev/null +++ b/Skins/_• rafisedit/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681db845b3a800c7ba924c694a8de925a38aeb66f5d71cb9a46622fdcbcfd736 +size 433 diff --git a/Skins/_• rafisedit/score-5.png b/Skins/_• rafisedit/score-5.png new file mode 100644 index 00000000..2d75f7d7 --- /dev/null +++ b/Skins/_• rafisedit/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8819f5f0101099bb01631e9bd405c157a4345f57cd9cb69013df1fa29abde895 +size 491 diff --git a/Skins/_• rafisedit/score-6.png b/Skins/_• rafisedit/score-6.png new file mode 100644 index 00000000..fab1e0be --- /dev/null +++ b/Skins/_• rafisedit/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ef287a30f81fe6c72e06b09ae10ccf529ee80f026389268018f4bcca87e74b +size 545 diff --git a/Skins/_• rafisedit/score-7.png b/Skins/_• rafisedit/score-7.png new file mode 100644 index 00000000..f6a6efe1 --- /dev/null +++ b/Skins/_• rafisedit/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2684c2d794f6f6ddb0172e5c6dc62a14c441186c5310debbd1f06e16f3e9fd1a +size 378 diff --git a/Skins/_• rafisedit/score-8.png b/Skins/_• rafisedit/score-8.png new file mode 100644 index 00000000..bb5af047 --- /dev/null +++ b/Skins/_• rafisedit/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc655c3def011471916f520dab0e9e5f97c924b905d8af838f16d1878ac0980a +size 517 diff --git a/Skins/_• rafisedit/score-9.png b/Skins/_• rafisedit/score-9.png new file mode 100644 index 00000000..4679ed1a --- /dev/null +++ b/Skins/_• rafisedit/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea51b6d119aa6c25435748ed2f685ef0e75fae500b5d84f58975f9169325e69 +size 552 diff --git a/Skins/_• rafisedit/score-comma.png b/Skins/_• rafisedit/score-comma.png new file mode 100644 index 00000000..2a675b76 --- /dev/null +++ b/Skins/_• rafisedit/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3ab83160dddd23fc3a762ea79653b5256fa8ba03c695b76a658846cff9de57 +size 253 diff --git a/Skins/_• rafisedit/score-dot.png b/Skins/_• rafisedit/score-dot.png new file mode 100644 index 00000000..8932c22e --- /dev/null +++ b/Skins/_• rafisedit/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0bf1654e55dd0ad97bbdeb25c955cd249bd3c8ac11b478deef94c1c41de20e +size 190 diff --git a/Skins/_• rafisedit/score-percent.png b/Skins/_• rafisedit/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/score-x.png b/Skins/_• rafisedit/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/scorebar-bg.png b/Skins/_• rafisedit/scorebar-bg.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/_• rafisedit/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/_• rafisedit/scorebar-colour@2x.png b/Skins/_• rafisedit/scorebar-colour@2x.png new file mode 100644 index 00000000..d10482ef --- /dev/null +++ b/Skins/_• rafisedit/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e625e7a88b300a56658dfd424335e0b928cab07ea431bf0d95313fac1eb555ba +size 1990 diff --git a/Skins/_• rafisedit/section-fail@2x.png b/Skins/_• rafisedit/section-fail@2x.png new file mode 100644 index 00000000..a45728ea --- /dev/null +++ b/Skins/_• rafisedit/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6946c44e1f213d88120baae2ce05fd44091393d961b550f7386e4f190cb76f +size 141012 diff --git a/Skins/_• rafisedit/section-pass@2x.png b/Skins/_• rafisedit/section-pass@2x.png new file mode 100644 index 00000000..b38e6b8a --- /dev/null +++ b/Skins/_• rafisedit/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2ee48eb30b19283b7fc7bc86ea7458d330e6ee8a51bdc424fd43c0ef89ad75 +size 60934 diff --git a/Skins/_• rafisedit/sectionfail.ogg b/Skins/_• rafisedit/sectionfail.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/sectionpass.ogg b/Skins/_• rafisedit/sectionpass.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/seeya.ogg b/Skins/_• rafisedit/seeya.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/select-difficulty.ogg b/Skins/_• rafisedit/select-difficulty.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/select-expand.ogg b/Skins/_• rafisedit/select-expand.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/selection-mode-over.png b/Skins/_• rafisedit/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/selection-mode.png b/Skins/_• rafisedit/selection-mode.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/selection-mods-over.png b/Skins/_• rafisedit/selection-mods-over.png new file mode 100644 index 00000000..e1d51441 --- /dev/null +++ b/Skins/_• rafisedit/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:729c19ca550ea02c05f80cc35b9c157cceb71f43c9bb576670ec33c5308892c5 +size 111 diff --git a/Skins/_• rafisedit/selection-mods.png b/Skins/_• rafisedit/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/selection-options-over.png b/Skins/_• rafisedit/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/selection-options.png b/Skins/_• rafisedit/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/selection-random-over.png b/Skins/_• rafisedit/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/selection-random.png b/Skins/_• rafisedit/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/selection-tab.png b/Skins/_• rafisedit/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/_• rafisedit/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/_• rafisedit/shutter.ogg b/Skins/_• rafisedit/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/skin.ini b/Skins/_• rafisedit/skin.ini new file mode 100644 index 00000000..5e4ec085 --- /dev/null +++ b/Skins/_• rafisedit/skin.ini @@ -0,0 +1,22 @@ +[General] +Name: rafisedit +Author: draingang remake - https://github.com/thepro2k/Maliszewski-osu-skins/blob/main/skin.md +Version: 2.7 +CursorExpand: 1 +CursorRotate: 0 +AllowSliderBallTint: 0 + +[Colours] +Combo1: 255,255,255 +Combo2: 255,255,255 +Combo3: 255,255,255 +Combo4: 255,255,255 +InputOverlayText: 255,255,255 +SongSelectActiveText: 255,255,255 +SliderBorder: 50,50,50 +SliderTrackOverride: 0,0,0 + +[Fonts] +HitCircleOverlap: 20 +ScoreOverlap: 7 +ComboOverlap: 7 diff --git a/Skins/_• rafisedit/sliderb@2x.png b/Skins/_• rafisedit/sliderb@2x.png new file mode 100644 index 00000000..7d23c734 --- /dev/null +++ b/Skins/_• rafisedit/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d628b7a451a184ceea89e7c8854e410d3f84daad6e71ef3436c1c9cb494adf4d +size 4743 diff --git a/Skins/_• rafisedit/sliderbar.ogg b/Skins/_• rafisedit/sliderbar.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/sliderendcircle.png b/Skins/_• rafisedit/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/sliderfollowcircle.png b/Skins/_• rafisedit/sliderfollowcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/sliderscorepoint.png b/Skins/_• rafisedit/sliderscorepoint.png new file mode 100644 index 00000000..01781551 --- /dev/null +++ b/Skins/_• rafisedit/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6f30039ae057b51522b2e4b5c69667761ae33827bfab55e6eb31f868819feb +size 3386 diff --git a/Skins/_• rafisedit/soft-hitclap.ogg b/Skins/_• rafisedit/soft-hitclap.ogg new file mode 100644 index 00000000..69fa3fd0 --- /dev/null +++ b/Skins/_• rafisedit/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933861cb92d0da79e6c64de23425e64da86bcb5ad5b98bee0b2a6436bbdbb86f +size 4614 diff --git a/Skins/_• rafisedit/soft-hitfinish.ogg b/Skins/_• rafisedit/soft-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/_• rafisedit/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/_• rafisedit/soft-hitnormal.ogg b/Skins/_• rafisedit/soft-hitnormal.ogg new file mode 100644 index 00000000..7221dc34 --- /dev/null +++ b/Skins/_• rafisedit/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0339f2aae06df054dc1b1bbda0168f46e34426c00da3f4d0adc986fede7b0227 +size 7506 diff --git a/Skins/_• rafisedit/soft-hitwhistle.ogg b/Skins/_• rafisedit/soft-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/_• rafisedit/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/_• rafisedit/soft-sliderslide.ogg b/Skins/_• rafisedit/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/soft-slidertick.ogg b/Skins/_• rafisedit/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/soft-sliderwhistle.ogg b/Skins/_• rafisedit/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/spinner-approachcircle.png b/Skins/_• rafisedit/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/_• rafisedit/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/_• rafisedit/spinner-background.png b/Skins/_• rafisedit/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/_• rafisedit/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/_• rafisedit/spinner-circle@2x.png b/Skins/_• rafisedit/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/_• rafisedit/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/_• rafisedit/spinner-clear.png b/Skins/_• rafisedit/spinner-clear.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/spinner-metre.png b/Skins/_• rafisedit/spinner-metre.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/spinner-osu.png b/Skins/_• rafisedit/spinner-osu.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/spinner-rpm.png b/Skins/_• rafisedit/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/spinner-spin.png b/Skins/_• rafisedit/spinner-spin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/_• rafisedit/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/_• rafisedit/spinnerbonus.ogg b/Skins/_• rafisedit/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/spinnerspin.ogg b/Skins/_• rafisedit/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/_• rafisedit/star2.png b/Skins/_• rafisedit/star2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/_• rafisedit/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/_• rafisedit/welcome.ogg b/Skins/_• rafisedit/welcome.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/applause.ogg b/Skins/altruism - Copy/applause.ogg new file mode 100644 index 00000000..215b5dc7 --- /dev/null +++ b/Skins/altruism - Copy/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99676d45d74779ad732614f17da9b066c329186a4fd1d3b76691961a473b8e66 +size 261990 diff --git a/Skins/altruism - Copy/approachcircle.png b/Skins/altruism - Copy/approachcircle.png new file mode 100644 index 00000000..e2e8feb9 --- /dev/null +++ b/Skins/altruism - Copy/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cec20489c3b244fab672f841f1d1bfe2bf075b8aa9a1a4495df1d9f5b62a36 +size 16112 diff --git a/Skins/altruism - Copy/approachcircle@2x.png b/Skins/altruism - Copy/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/altruism - Copy/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/altruism - Copy/arrow-warning.png b/Skins/altruism - Copy/arrow-warning.png new file mode 100644 index 00000000..ee4f4590 --- /dev/null +++ b/Skins/altruism - Copy/arrow-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f913b3085921e777caaf99729862f8d3030be75f43f405dbfd7cbb6f7bf15cc +size 920 diff --git a/Skins/altruism - Copy/button-left.png b/Skins/altruism - Copy/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/button-middle.png b/Skins/altruism - Copy/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/button-right.png b/Skins/altruism - Copy/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/check-off.ogg b/Skins/altruism - Copy/check-off.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/check-off.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/check-on.ogg b/Skins/altruism - Copy/check-on.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/check-on.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/click-short-confirm.ogg b/Skins/altruism - Copy/click-short-confirm.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/click-short-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/click-short.ogg b/Skins/altruism - Copy/click-short.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/click-short.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/combo-0.png b/Skins/altruism - Copy/combo-0.png new file mode 100644 index 00000000..0479f6b3 --- /dev/null +++ b/Skins/altruism - Copy/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d10a590366f37afbc849e0bedcff84579ef43259c2b0c2c69ea184c3ce6ea07 +size 1027 diff --git a/Skins/altruism - Copy/combo-0@2x.png b/Skins/altruism - Copy/combo-0@2x.png new file mode 100644 index 00000000..3766ba1d --- /dev/null +++ b/Skins/altruism - Copy/combo-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a96e8f3658be0ee47af859290b6876b225a4d3ef5bbe7c4f575e08ab619dcb +size 1615 diff --git a/Skins/altruism - Copy/combo-1.png b/Skins/altruism - Copy/combo-1.png new file mode 100644 index 00000000..43558523 --- /dev/null +++ b/Skins/altruism - Copy/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6b598ac7b438e780c56bb38beead542c8b8754b3695c02481f08cf6f35b3c6 +size 624 diff --git a/Skins/altruism - Copy/combo-1@2x.png b/Skins/altruism - Copy/combo-1@2x.png new file mode 100644 index 00000000..9bcee634 --- /dev/null +++ b/Skins/altruism - Copy/combo-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553f9a89072578f7396637dc4cee4158ec08c2b0070834026bc9f63b1e1e5836 +size 1057 diff --git a/Skins/altruism - Copy/combo-2.png b/Skins/altruism - Copy/combo-2.png new file mode 100644 index 00000000..7fe9fc50 --- /dev/null +++ b/Skins/altruism - Copy/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6cd0660fb7020f1cd43938b5922601003d99166850c33c5c197aee039f0251 +size 952 diff --git a/Skins/altruism - Copy/combo-2@2x.png b/Skins/altruism - Copy/combo-2@2x.png new file mode 100644 index 00000000..ad414b95 --- /dev/null +++ b/Skins/altruism - Copy/combo-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72e6e897b6cad78235b432e221dfc7ab9f359ddd6702419162fb96afc9754cd +size 1412 diff --git a/Skins/altruism - Copy/combo-3.png b/Skins/altruism - Copy/combo-3.png new file mode 100644 index 00000000..f399e685 --- /dev/null +++ b/Skins/altruism - Copy/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360575ed0483abc255c308dc3c9eb31b0d15d9ef64a1a7fb011d29d16d09b28f +size 1006 diff --git a/Skins/altruism - Copy/combo-3@2x.png b/Skins/altruism - Copy/combo-3@2x.png new file mode 100644 index 00000000..dc931e63 --- /dev/null +++ b/Skins/altruism - Copy/combo-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e51317c911416d3774ca76c2ad53a34e556dbb38c53bbf0dca9c4eba4305f9 +size 1420 diff --git a/Skins/altruism - Copy/combo-4.png b/Skins/altruism - Copy/combo-4.png new file mode 100644 index 00000000..cb4dc7b4 --- /dev/null +++ b/Skins/altruism - Copy/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fcb910d395dc8908a472973efe76885765d729f042c2e064e7003702742b56 +size 959 diff --git a/Skins/altruism - Copy/combo-4@2x.png b/Skins/altruism - Copy/combo-4@2x.png new file mode 100644 index 00000000..b43d5350 --- /dev/null +++ b/Skins/altruism - Copy/combo-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40b0a9d7f86040f6d3e8ab763ed4d41426aea521e1f21fefbe2f6f47200d650 +size 1509 diff --git a/Skins/altruism - Copy/combo-5.png b/Skins/altruism - Copy/combo-5.png new file mode 100644 index 00000000..63f0f546 --- /dev/null +++ b/Skins/altruism - Copy/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa4ac25aaa868b871d912a3bbf913879c739a11609611802d9b1b08cca7a4d3 +size 1020 diff --git a/Skins/altruism - Copy/combo-5@2x.png b/Skins/altruism - Copy/combo-5@2x.png new file mode 100644 index 00000000..175e2df4 --- /dev/null +++ b/Skins/altruism - Copy/combo-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eddcbea08a24729e7db798db654dd4e48cf15aca0c73e7ffe5878f4189f6e802 +size 1427 diff --git a/Skins/altruism - Copy/combo-6.png b/Skins/altruism - Copy/combo-6.png new file mode 100644 index 00000000..9f669b00 --- /dev/null +++ b/Skins/altruism - Copy/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64853fe5ca93196b16171fefad75cd318d895b80b3c173c69defb2060075c7ac +size 1046 diff --git a/Skins/altruism - Copy/combo-6@2x.png b/Skins/altruism - Copy/combo-6@2x.png new file mode 100644 index 00000000..6b7dd0ed --- /dev/null +++ b/Skins/altruism - Copy/combo-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e840447f20d3cf161402214a3211d749408ac2746170faf8832a7b2ff27e96fc +size 1538 diff --git a/Skins/altruism - Copy/combo-7.png b/Skins/altruism - Copy/combo-7.png new file mode 100644 index 00000000..7e6c361e --- /dev/null +++ b/Skins/altruism - Copy/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62b6ea0bfb0a6ef950ac71d40deb01023fa596c91b3144022cd513d7fa39be6 +size 758 diff --git a/Skins/altruism - Copy/combo-7@2x.png b/Skins/altruism - Copy/combo-7@2x.png new file mode 100644 index 00000000..aaa31bd4 --- /dev/null +++ b/Skins/altruism - Copy/combo-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b66e960891215435f98dd81471f920db0ca267745c1b75dec2415babceab6c +size 1248 diff --git a/Skins/altruism - Copy/combo-8.png b/Skins/altruism - Copy/combo-8.png new file mode 100644 index 00000000..07885c64 --- /dev/null +++ b/Skins/altruism - Copy/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f53a69bed20172d2941fac24281c11678039a1906041254ed72c2593158ef42 +size 1073 diff --git a/Skins/altruism - Copy/combo-8@2x.png b/Skins/altruism - Copy/combo-8@2x.png new file mode 100644 index 00000000..238122a3 --- /dev/null +++ b/Skins/altruism - Copy/combo-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4a2799f9acddffb1530d041a06c9f1f264fe4f5c3a8b40054411829aac3a66 +size 1573 diff --git a/Skins/altruism - Copy/combo-9.png b/Skins/altruism - Copy/combo-9.png new file mode 100644 index 00000000..031f1a15 --- /dev/null +++ b/Skins/altruism - Copy/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57256cc494c919f8c975c5a0a2e0d4681652af237ab2a907b7d97c3e30a766e4 +size 1035 diff --git a/Skins/altruism - Copy/combo-9@2x.png b/Skins/altruism - Copy/combo-9@2x.png new file mode 100644 index 00000000..2e0ac3ea --- /dev/null +++ b/Skins/altruism - Copy/combo-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0694e781554f6f15c788823b003518c7197fe9a6d4596173a17ea2111cca5887 +size 1563 diff --git a/Skins/altruism - Copy/count.ogg b/Skins/altruism - Copy/count.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/count1.png b/Skins/altruism - Copy/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/count2.png b/Skins/altruism - Copy/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/count3.png b/Skins/altruism - Copy/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/cursor-smoke.png b/Skins/altruism - Copy/cursor-smoke.png new file mode 100644 index 00000000..072c56dc --- /dev/null +++ b/Skins/altruism - Copy/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ce8c21a36db630ffafb9c05a78a911370fd199f6e2b7a5853e94b0cbcd32ed +size 2801 diff --git a/Skins/altruism - Copy/cursor.png b/Skins/altruism - Copy/cursor.png new file mode 100644 index 00000000..1d17678f --- /dev/null +++ b/Skins/altruism - Copy/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50b154abdaf85ff3d6f0be69f0c1b771e26b7ca85424bab6c6c4679b570a67c +size 3312 diff --git a/Skins/altruism - Copy/cursortrail.png b/Skins/altruism - Copy/cursortrail.png new file mode 100644 index 00000000..5b7f45f2 --- /dev/null +++ b/Skins/altruism - Copy/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b58a6fdb308ed6c9a3ae6b73c7fcabde9105fc495f5093f13eb0740d7bd9f8a +size 1740 diff --git a/Skins/altruism - Copy/default-0.png b/Skins/altruism - Copy/default-0.png new file mode 100644 index 00000000..0b52d8e4 --- /dev/null +++ b/Skins/altruism - Copy/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1a6ad4b6fb347f91995734805f2f73755946a60eceabca83e24019ed0101cd +size 1696 diff --git a/Skins/altruism - Copy/default-1.png b/Skins/altruism - Copy/default-1.png new file mode 100644 index 00000000..0c34c5eb --- /dev/null +++ b/Skins/altruism - Copy/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97787cc5999dd8422ae9c8258b3229afd842a9645bc58c70943b7421064cfea +size 750 diff --git a/Skins/altruism - Copy/default-2.png b/Skins/altruism - Copy/default-2.png new file mode 100644 index 00000000..bfc7396c --- /dev/null +++ b/Skins/altruism - Copy/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c0dc1a0774bf500ba0913035899bb776ad4bd02c2597b6d17095f95bc63b35 +size 1619 diff --git a/Skins/altruism - Copy/default-3.png b/Skins/altruism - Copy/default-3.png new file mode 100644 index 00000000..80b26e7d --- /dev/null +++ b/Skins/altruism - Copy/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e11a260579a75824361117aa5a2087c6ed3b183bef99a868e1d5feb7c243cff +size 1646 diff --git a/Skins/altruism - Copy/default-4.png b/Skins/altruism - Copy/default-4.png new file mode 100644 index 00000000..a93775bf --- /dev/null +++ b/Skins/altruism - Copy/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2d01068ce7180d3fd41b1a9784ed3a821d85e5d5f0736a141b8dd6f0dfc905 +size 1400 diff --git a/Skins/altruism - Copy/default-5.png b/Skins/altruism - Copy/default-5.png new file mode 100644 index 00000000..dba00c67 --- /dev/null +++ b/Skins/altruism - Copy/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc498965bcb8a60a704ece25974abfd07eef23e56893dbc607ba157b306c68ce +size 1491 diff --git a/Skins/altruism - Copy/default-6.png b/Skins/altruism - Copy/default-6.png new file mode 100644 index 00000000..ea8ecb26 --- /dev/null +++ b/Skins/altruism - Copy/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827c576015d645c28895cb965a13f788e8911d1481a1d54600ce9c91f0e5dd55 +size 1558 diff --git a/Skins/altruism - Copy/default-7.png b/Skins/altruism - Copy/default-7.png new file mode 100644 index 00000000..49d0fdb0 --- /dev/null +++ b/Skins/altruism - Copy/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43eeba1d5e7c3a9907a25ba0227867aee97d68cf2c2bc485c28204c5f51cf57e +size 1267 diff --git a/Skins/altruism - Copy/default-8.png b/Skins/altruism - Copy/default-8.png new file mode 100644 index 00000000..759af0fd --- /dev/null +++ b/Skins/altruism - Copy/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa073f389e145ff2459d55a147a2c06685431d3d36b2c2ae0d462190ebb981a +size 1522 diff --git a/Skins/altruism - Copy/default-9.png b/Skins/altruism - Copy/default-9.png new file mode 100644 index 00000000..d61bfb84 --- /dev/null +++ b/Skins/altruism - Copy/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c278c6989101f2a8ca9754747ddb98a9469410d1482514602f854d56a8de9b +size 1544 diff --git a/Skins/altruism - Copy/drum-hitclap.ogg b/Skins/altruism - Copy/drum-hitclap.ogg new file mode 100644 index 00000000..69fa3fd0 --- /dev/null +++ b/Skins/altruism - Copy/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933861cb92d0da79e6c64de23425e64da86bcb5ad5b98bee0b2a6436bbdbb86f +size 4614 diff --git a/Skins/altruism - Copy/drum-hitfinish.ogg b/Skins/altruism - Copy/drum-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/altruism - Copy/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/altruism - Copy/drum-hitnormal.ogg b/Skins/altruism - Copy/drum-hitnormal.ogg new file mode 100644 index 00000000..7221dc34 --- /dev/null +++ b/Skins/altruism - Copy/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0339f2aae06df054dc1b1bbda0168f46e34426c00da3f4d0adc986fede7b0227 +size 7506 diff --git a/Skins/altruism - Copy/drum-hitwhistle.ogg b/Skins/altruism - Copy/drum-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism - Copy/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism - Copy/drum-sliderslide.ogg b/Skins/altruism - Copy/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/drum-slidertick.ogg b/Skins/altruism - Copy/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/drum-sliderwhistle.ogg b/Skins/altruism - Copy/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/fail-background.png b/Skins/altruism - Copy/fail-background.png new file mode 100644 index 00000000..eda61e98 --- /dev/null +++ b/Skins/altruism - Copy/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6808a73400c459580f390c5fd9ecb2ed502d4e80c485cec85a0c69644ffe482 +size 46386 diff --git a/Skins/altruism - Copy/failsound.ogg b/Skins/altruism - Copy/failsound.ogg new file mode 100644 index 00000000..4286abbd --- /dev/null +++ b/Skins/altruism - Copy/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017a305fefc72335befe08bd94cd189761c2b4be9a516d9fa1e5154df9255398 +size 174250 diff --git a/Skins/altruism - Copy/followpoint-0.png b/Skins/altruism - Copy/followpoint-0.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-1.png b/Skins/altruism - Copy/followpoint-1.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-10.png b/Skins/altruism - Copy/followpoint-10.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-11.png b/Skins/altruism - Copy/followpoint-11.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-12.png b/Skins/altruism - Copy/followpoint-12.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-13.png b/Skins/altruism - Copy/followpoint-13.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-14.png b/Skins/altruism - Copy/followpoint-14.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-15.png b/Skins/altruism - Copy/followpoint-15.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-16.png b/Skins/altruism - Copy/followpoint-16.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-17.png b/Skins/altruism - Copy/followpoint-17.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-18.png b/Skins/altruism - Copy/followpoint-18.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-19.png b/Skins/altruism - Copy/followpoint-19.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-2.png b/Skins/altruism - Copy/followpoint-2.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-20.png b/Skins/altruism - Copy/followpoint-20.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-21.png b/Skins/altruism - Copy/followpoint-21.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-22.png b/Skins/altruism - Copy/followpoint-22.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-23.png b/Skins/altruism - Copy/followpoint-23.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-24.png b/Skins/altruism - Copy/followpoint-24.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-25.png b/Skins/altruism - Copy/followpoint-25.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-26.png b/Skins/altruism - Copy/followpoint-26.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-27.png b/Skins/altruism - Copy/followpoint-27.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-28.png b/Skins/altruism - Copy/followpoint-28.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-29.png b/Skins/altruism - Copy/followpoint-29.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-3.png b/Skins/altruism - Copy/followpoint-3.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-30.png b/Skins/altruism - Copy/followpoint-30.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-31.png b/Skins/altruism - Copy/followpoint-31.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-32.png b/Skins/altruism - Copy/followpoint-32.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-33.png b/Skins/altruism - Copy/followpoint-33.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-34.png b/Skins/altruism - Copy/followpoint-34.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-35.png b/Skins/altruism - Copy/followpoint-35.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-36.png b/Skins/altruism - Copy/followpoint-36.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-37.png b/Skins/altruism - Copy/followpoint-37.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-38.png b/Skins/altruism - Copy/followpoint-38.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-39.png b/Skins/altruism - Copy/followpoint-39.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-4.png b/Skins/altruism - Copy/followpoint-4.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-40.png b/Skins/altruism - Copy/followpoint-40.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-41.png b/Skins/altruism - Copy/followpoint-41.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-42.png b/Skins/altruism - Copy/followpoint-42.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-43.png b/Skins/altruism - Copy/followpoint-43.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-44.png b/Skins/altruism - Copy/followpoint-44.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-45.png b/Skins/altruism - Copy/followpoint-45.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-46.png b/Skins/altruism - Copy/followpoint-46.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-47.png b/Skins/altruism - Copy/followpoint-47.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-48.png b/Skins/altruism - Copy/followpoint-48.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism - Copy/followpoint-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism - Copy/followpoint-49.png b/Skins/altruism - Copy/followpoint-49.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-5.png b/Skins/altruism - Copy/followpoint-5.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-50.png b/Skins/altruism - Copy/followpoint-50.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-51.png b/Skins/altruism - Copy/followpoint-51.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-52.png b/Skins/altruism - Copy/followpoint-52.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-53.png b/Skins/altruism - Copy/followpoint-53.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-54.png b/Skins/altruism - Copy/followpoint-54.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-55.png b/Skins/altruism - Copy/followpoint-55.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-56.png b/Skins/altruism - Copy/followpoint-56.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-57.png b/Skins/altruism - Copy/followpoint-57.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-58.png b/Skins/altruism - Copy/followpoint-58.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-59.png b/Skins/altruism - Copy/followpoint-59.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-6.png b/Skins/altruism - Copy/followpoint-6.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-60.png b/Skins/altruism - Copy/followpoint-60.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-7.png b/Skins/altruism - Copy/followpoint-7.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-8.png b/Skins/altruism - Copy/followpoint-8.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/followpoint-9.png b/Skins/altruism - Copy/followpoint-9.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/go.png b/Skins/altruism - Copy/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/hit0-0.png b/Skins/altruism - Copy/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/altruism - Copy/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/altruism - Copy/hit0.png b/Skins/altruism - Copy/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/hit100-0.png b/Skins/altruism - Copy/hit100-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100-1.png b/Skins/altruism - Copy/hit100-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100-2.png b/Skins/altruism - Copy/hit100-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100-3.png b/Skins/altruism - Copy/hit100-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100-4.png b/Skins/altruism - Copy/hit100-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100-5.png b/Skins/altruism - Copy/hit100-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/altruism - Copy/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/altruism - Copy/hit100-6.png b/Skins/altruism - Copy/hit100-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/altruism - Copy/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/altruism - Copy/hit100-7.png b/Skins/altruism - Copy/hit100-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/altruism - Copy/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/altruism - Copy/hit100-8.png b/Skins/altruism - Copy/hit100-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/altruism - Copy/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/altruism - Copy/hit100-9.png b/Skins/altruism - Copy/hit100-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/hit100.png b/Skins/altruism - Copy/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/hit100k-0.png b/Skins/altruism - Copy/hit100k-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100k-1.png b/Skins/altruism - Copy/hit100k-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100k-2.png b/Skins/altruism - Copy/hit100k-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100k-3.png b/Skins/altruism - Copy/hit100k-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100k-4.png b/Skins/altruism - Copy/hit100k-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism - Copy/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism - Copy/hit100k-5.png b/Skins/altruism - Copy/hit100k-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/altruism - Copy/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/altruism - Copy/hit100k-6.png b/Skins/altruism - Copy/hit100k-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/altruism - Copy/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/altruism - Copy/hit100k-7.png b/Skins/altruism - Copy/hit100k-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/altruism - Copy/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/altruism - Copy/hit100k-8.png b/Skins/altruism - Copy/hit100k-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/altruism - Copy/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/altruism - Copy/hit100k-9.png b/Skins/altruism - Copy/hit100k-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/hit100k.png b/Skins/altruism - Copy/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/hit300.png b/Skins/altruism - Copy/hit300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/hit300g.png b/Skins/altruism - Copy/hit300g.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/hit300k.png b/Skins/altruism - Copy/hit300k.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/hit50-0.png b/Skins/altruism - Copy/hit50-0.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism - Copy/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism - Copy/hit50-1.png b/Skins/altruism - Copy/hit50-1.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism - Copy/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism - Copy/hit50-2.png b/Skins/altruism - Copy/hit50-2.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism - Copy/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism - Copy/hit50-3.png b/Skins/altruism - Copy/hit50-3.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism - Copy/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism - Copy/hit50-4.png b/Skins/altruism - Copy/hit50-4.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism - Copy/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism - Copy/hit50-5.png b/Skins/altruism - Copy/hit50-5.png new file mode 100644 index 00000000..20a02ca4 --- /dev/null +++ b/Skins/altruism - Copy/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c4a4dd32579364796cb6a07d967a70a104a87f218d2698a7742283e196b05f +size 4355 diff --git a/Skins/altruism - Copy/hit50-6.png b/Skins/altruism - Copy/hit50-6.png new file mode 100644 index 00000000..a2d49156 --- /dev/null +++ b/Skins/altruism - Copy/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aedd7127330e73764c01eba26b22425ddb1d7ae0eadf308eefc088244d4d6f9e +size 4291 diff --git a/Skins/altruism - Copy/hit50-7.png b/Skins/altruism - Copy/hit50-7.png new file mode 100644 index 00000000..af67a916 --- /dev/null +++ b/Skins/altruism - Copy/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49acfe7551db09fb0ac188424367cfc1b4a3b7bfff0e37bb2ea18fcac07a990 +size 4218 diff --git a/Skins/altruism - Copy/hit50-8.png b/Skins/altruism - Copy/hit50-8.png new file mode 100644 index 00000000..96590513 --- /dev/null +++ b/Skins/altruism - Copy/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9965e2df444e56b320169e51621143f39be211971bf5e79ade8e82217bbfbc71 +size 4061 diff --git a/Skins/altruism - Copy/hit50-9.png b/Skins/altruism - Copy/hit50-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/hit50.png b/Skins/altruism - Copy/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/hitcircle.png b/Skins/altruism - Copy/hitcircle.png new file mode 100644 index 00000000..b03f1d9d --- /dev/null +++ b/Skins/altruism - Copy/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba379396bab97eed06d4cbf9050ef313f0c95110552f23e23ff737e024365ea2 +size 6849 diff --git a/Skins/altruism - Copy/hitcircle@2x.png b/Skins/altruism - Copy/hitcircle@2x.png new file mode 100644 index 00000000..44e4fd9c --- /dev/null +++ b/Skins/altruism - Copy/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c80d749addd5f80b60bd2daa274fac39df35f06ad7a899a196e390c7ab48e3b +size 12654 diff --git a/Skins/altruism - Copy/hitcircleoverlay.png b/Skins/altruism - Copy/hitcircleoverlay.png new file mode 100644 index 00000000..11577631 --- /dev/null +++ b/Skins/altruism - Copy/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721404e943516f899fcbde20c13ead74ccebc25441bcb1220768607240383c6e +size 5875 diff --git a/Skins/altruism - Copy/hitcircleoverlay@2x.png b/Skins/altruism - Copy/hitcircleoverlay@2x.png new file mode 100644 index 00000000..63991a72 --- /dev/null +++ b/Skins/altruism - Copy/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d452b995f8a5b3bb1b39a24205dcea934b9e9e45ac1bf051d592ffea4e7942f +size 28767 diff --git a/Skins/altruism - Copy/inputoverlay-background.png b/Skins/altruism - Copy/inputoverlay-background.png new file mode 100644 index 00000000..5ac40464 --- /dev/null +++ b/Skins/altruism - Copy/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d9bb0bf7dfbdd69b38d37089280bb48c3f4608f14b932fad6f6d1c158ad1c8 +size 553 diff --git a/Skins/altruism - Copy/inputoverlay-key.png b/Skins/altruism - Copy/inputoverlay-key.png new file mode 100644 index 00000000..644950c1 --- /dev/null +++ b/Skins/altruism - Copy/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afdab90202565a1fad349b51036ca1a2890cf42c1c473502a1c374ed0d80fa0 +size 228 diff --git a/Skins/altruism - Copy/key-confirm.ogg b/Skins/altruism - Copy/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/key-delete.ogg b/Skins/altruism - Copy/key-delete.ogg new file mode 100644 index 00000000..4a576e27 --- /dev/null +++ b/Skins/altruism - Copy/key-delete.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b033f092c6e0922cf1ae0b34a17ed0f49d5f4b80db4b37e56a6ae12a7648c8b +size 6082 diff --git a/Skins/altruism - Copy/key-movement.ogg b/Skins/altruism - Copy/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/key-press-1.ogg b/Skins/altruism - Copy/key-press-1.ogg new file mode 100644 index 00000000..1e5c9cee --- /dev/null +++ b/Skins/altruism - Copy/key-press-1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2669d68403dc5c3f213c411a43ab32f3a0edb879c704bd5c37ef2d1fd9e9731e +size 6287 diff --git a/Skins/altruism - Copy/key-press-2.ogg b/Skins/altruism - Copy/key-press-2.ogg new file mode 100644 index 00000000..5626edd3 --- /dev/null +++ b/Skins/altruism - Copy/key-press-2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0e6bbb4d868637175e4e6c41b7aabe8e2c4f153517894cf1f9e2097095d57a +size 5892 diff --git a/Skins/altruism - Copy/key-press-3.ogg b/Skins/altruism - Copy/key-press-3.ogg new file mode 100644 index 00000000..28a8b4f0 --- /dev/null +++ b/Skins/altruism - Copy/key-press-3.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c4c446ed91e3b4d98c3974b786396002a1fe9b7e53a29405c105cb69a2bc72 +size 5938 diff --git a/Skins/altruism - Copy/key-press-4.ogg b/Skins/altruism - Copy/key-press-4.ogg new file mode 100644 index 00000000..a6270962 --- /dev/null +++ b/Skins/altruism - Copy/key-press-4.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba03089d29d0b247700428c2549abf5b9dd41bba9ef7766cc3252dd30a219811 +size 5888 diff --git a/Skins/altruism - Copy/match-confirm.ogg b/Skins/altruism - Copy/match-confirm.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/match-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/match-start.ogg b/Skins/altruism - Copy/match-start.ogg new file mode 100644 index 00000000..b6e0a23e --- /dev/null +++ b/Skins/altruism - Copy/match-start.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd0627ccd3fe4583674e0e049c6c3bebefcf052eb23f70987f6dfa5815f23bbc +size 10851 diff --git a/Skins/altruism - Copy/menu-back-0.png b/Skins/altruism - Copy/menu-back-0.png new file mode 100644 index 00000000..73ef1cd5 --- /dev/null +++ b/Skins/altruism - Copy/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149cfc6bbcbe8695ce790851b25d861c34bd07b0ba3f4c373367bd222647e50b +size 3483 diff --git a/Skins/altruism - Copy/menu-back-0@2x.png b/Skins/altruism - Copy/menu-back-0@2x.png new file mode 100644 index 00000000..9b5bdf7e --- /dev/null +++ b/Skins/altruism - Copy/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c4df0eaa60b4a6203b0be429c796b91cd309a9c2c9b74a8ee9b8d8e3a8b421 +size 4538 diff --git a/Skins/altruism - Copy/menu-back.png b/Skins/altruism - Copy/menu-back.png new file mode 100644 index 00000000..f19a3dfb --- /dev/null +++ b/Skins/altruism - Copy/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edef430998b0d676f2e852673a584ba0b7ade73f4791fade9f4a622da3b15291 +size 2949 diff --git a/Skins/altruism - Copy/menu-background.jpg b/Skins/altruism - Copy/menu-background.jpg new file mode 100644 index 00000000..afba9672 --- /dev/null +++ b/Skins/altruism - Copy/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84542f6be92e8962f65aba9e78fdc55568c9ba83bb37ba0447d8b1a79aafe2e7 +size 315733 diff --git a/Skins/altruism - Copy/menu-button-background.png b/Skins/altruism - Copy/menu-button-background.png new file mode 100644 index 00000000..826e86ac --- /dev/null +++ b/Skins/altruism - Copy/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b56e99fe904ddbb66a8ac42634111b2a3c1c058eb494897ce39945794077e49 +size 557 diff --git a/Skins/altruism - Copy/menuback.ogg b/Skins/altruism - Copy/menuback.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/menuclick.ogg b/Skins/altruism - Copy/menuclick.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/menuhit.ogg b/Skins/altruism - Copy/menuhit.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/mode-osu-small.png b/Skins/altruism - Copy/mode-osu-small.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/mode-osu.png b/Skins/altruism - Copy/mode-osu.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/multi-skipped.png b/Skins/altruism - Copy/multi-skipped.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/multi-skipped.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/nightcore-clap.wav b/Skins/altruism - Copy/nightcore-clap.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism - Copy/nightcore-clap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism - Copy/nightcore-finish.wav b/Skins/altruism - Copy/nightcore-finish.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism - Copy/nightcore-finish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism - Copy/nightcore-hat.wav b/Skins/altruism - Copy/nightcore-hat.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism - Copy/nightcore-hat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism - Copy/nightcore-kick.wav b/Skins/altruism - Copy/nightcore-kick.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism - Copy/nightcore-kick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism - Copy/normal-hitclap.ogg b/Skins/altruism - Copy/normal-hitclap.ogg new file mode 100644 index 00000000..69fa3fd0 --- /dev/null +++ b/Skins/altruism - Copy/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933861cb92d0da79e6c64de23425e64da86bcb5ad5b98bee0b2a6436bbdbb86f +size 4614 diff --git a/Skins/altruism - Copy/normal-hitfinish.ogg b/Skins/altruism - Copy/normal-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/altruism - Copy/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/altruism - Copy/normal-hitnormal.ogg b/Skins/altruism - Copy/normal-hitnormal.ogg new file mode 100644 index 00000000..7221dc34 --- /dev/null +++ b/Skins/altruism - Copy/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0339f2aae06df054dc1b1bbda0168f46e34426c00da3f4d0adc986fede7b0227 +size 7506 diff --git a/Skins/altruism - Copy/normal-hitwhistle.ogg b/Skins/altruism - Copy/normal-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism - Copy/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism - Copy/normal-sliderslide.ogg b/Skins/altruism - Copy/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/normal-slidertick.ogg b/Skins/altruism - Copy/normal-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/normal-sliderwhistle.ogg b/Skins/altruism - Copy/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/particle300.png b/Skins/altruism - Copy/particle300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/particle300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/particle300@2x.png b/Skins/altruism - Copy/particle300@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/particle300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/pause-back-click.ogg b/Skins/altruism - Copy/pause-back-click.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/pause-back-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/pause-back-hover.ogg b/Skins/altruism - Copy/pause-back-hover.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/pause-back-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/pause-back.png b/Skins/altruism - Copy/pause-back.png new file mode 100644 index 00000000..44833851 --- /dev/null +++ b/Skins/altruism - Copy/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d34be900e0e7177d2290d47877a01353421aa7a384cb225e96bd6a448461ee +size 2389 diff --git a/Skins/altruism - Copy/pause-continue-click.ogg b/Skins/altruism - Copy/pause-continue-click.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/pause-continue-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/pause-continue-hover.ogg b/Skins/altruism - Copy/pause-continue-hover.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/pause-continue-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/pause-continue.png b/Skins/altruism - Copy/pause-continue.png new file mode 100644 index 00000000..d5e1e297 --- /dev/null +++ b/Skins/altruism - Copy/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa1f2f8b7a12fe58b6d705e95a6062c9872483cfb2cfe1f07bc818b371a9668 +size 3407 diff --git a/Skins/altruism - Copy/pause-loop.mp3 b/Skins/altruism - Copy/pause-loop.mp3 new file mode 100644 index 00000000..ae75952e --- /dev/null +++ b/Skins/altruism - Copy/pause-loop.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2cb9b3cfcee75120bea5a4c74c3bbdf9e428589b7879b4797fd3c06f3c85ab +size 741 diff --git a/Skins/altruism - Copy/pause-overlay.png b/Skins/altruism - Copy/pause-overlay.png new file mode 100644 index 00000000..34145a0f --- /dev/null +++ b/Skins/altruism - Copy/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74aa40bebb82ff86587cbf16cb28566aa806288e3cd29cef2193a1b49f3b6d03 +size 17117 diff --git a/Skins/altruism - Copy/pause-replay.png b/Skins/altruism - Copy/pause-replay.png new file mode 100644 index 00000000..77fd5fd2 --- /dev/null +++ b/Skins/altruism - Copy/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be60d3eb289db4e86f0bca82c8ddb52a6bac913bddfd0a953de8ac0e1e286d5b +size 2860 diff --git a/Skins/altruism - Copy/pause-retry-click.ogg b/Skins/altruism - Copy/pause-retry-click.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/pause-retry-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/pause-retry-hover.ogg b/Skins/altruism - Copy/pause-retry-hover.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism - Copy/pause-retry-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism - Copy/pause-retry.png b/Skins/altruism - Copy/pause-retry.png new file mode 100644 index 00000000..c0a022fc --- /dev/null +++ b/Skins/altruism - Copy/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf66c7455a52bcfdca0dcceafc00de7fc470091fa6f608e6c5df9e9dc9302a6 +size 2507 diff --git a/Skins/altruism - Copy/play-skip.png b/Skins/altruism - Copy/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/play-unranked.png b/Skins/altruism - Copy/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/play-unranked@2x.png b/Skins/altruism - Copy/play-unranked@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/rank-forum.png b/Skins/altruism - Copy/rank-forum.png new file mode 100644 index 00000000..732bf8c0 --- /dev/null +++ b/Skins/altruism - Copy/rank-forum.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcaed5e1801ce805590bd938b04f322b4942ed3d030f7216202e05721fbfbcb4 +size 639 diff --git a/Skins/altruism - Copy/rank-forum@2x.png b/Skins/altruism - Copy/rank-forum@2x.png new file mode 100644 index 00000000..f8064c20 --- /dev/null +++ b/Skins/altruism - Copy/rank-forum@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225f305fda2dcb6aa911fc06224da4a673c6d954a75779937dcc684dc0b854b3 +size 1023 diff --git a/Skins/altruism - Copy/ranking-a-small.png b/Skins/altruism - Copy/ranking-a-small.png new file mode 100644 index 00000000..b47b4f0e --- /dev/null +++ b/Skins/altruism - Copy/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1c52320c7a9104e769b683e9bab5749ae7b5f841d7f8d886e5e671882b43ba +size 839 diff --git a/Skins/altruism - Copy/ranking-a.png b/Skins/altruism - Copy/ranking-a.png new file mode 100644 index 00000000..91a1d228 --- /dev/null +++ b/Skins/altruism - Copy/ranking-a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6614b5453ff7be28a92a822bee2ffa6a93416d001bc95f5f3f5e24d25ca093 +size 117502 diff --git a/Skins/altruism - Copy/ranking-a@2x.png b/Skins/altruism - Copy/ranking-a@2x.png new file mode 100644 index 00000000..83cac922 --- /dev/null +++ b/Skins/altruism - Copy/ranking-a@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895944f7663c50dce237ee06b5fba3c5117de073c1bd6b90829c1c7bb82f5cc9 +size 370758 diff --git a/Skins/altruism - Copy/ranking-accuracy.png b/Skins/altruism - Copy/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/ranking-b-small.png b/Skins/altruism - Copy/ranking-b-small.png new file mode 100644 index 00000000..a623d18d --- /dev/null +++ b/Skins/altruism - Copy/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a4f47aead4f8fd82d6dca669655f646284ab68ff396f6d4dcde3aadf5117ab +size 881 diff --git a/Skins/altruism - Copy/ranking-b.png b/Skins/altruism - Copy/ranking-b.png new file mode 100644 index 00000000..9b7a3480 --- /dev/null +++ b/Skins/altruism - Copy/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39677194ed5a4d5e465ce3da3b6958f8393a64a4d03e825aa5bd5300c70aa054 +size 117335 diff --git a/Skins/altruism - Copy/ranking-b@2x.png b/Skins/altruism - Copy/ranking-b@2x.png new file mode 100644 index 00000000..938b0d56 --- /dev/null +++ b/Skins/altruism - Copy/ranking-b@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e242862e6c3a1df8dda84a152b13f199c3c9df0782773fd62fbcfe256376e2a3 +size 366535 diff --git a/Skins/altruism - Copy/ranking-c-small.png b/Skins/altruism - Copy/ranking-c-small.png new file mode 100644 index 00000000..cb0a1d69 --- /dev/null +++ b/Skins/altruism - Copy/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959b854654a42b32197ec251841aacb77ca1997a98900e002078cc3ae2934e2e +size 760 diff --git a/Skins/altruism - Copy/ranking-c.png b/Skins/altruism - Copy/ranking-c.png new file mode 100644 index 00000000..ace44d49 --- /dev/null +++ b/Skins/altruism - Copy/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e56ed108a44f8446d39335e374f4c928b1de1c4004fa2d165fd4c1c10ef0542b +size 117156 diff --git a/Skins/altruism - Copy/ranking-c@2x.png b/Skins/altruism - Copy/ranking-c@2x.png new file mode 100644 index 00000000..8012c133 --- /dev/null +++ b/Skins/altruism - Copy/ranking-c@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4adc5e13a512e46ed28788f8b96bde3b59b38347bbcdf994205e6a58a4181a1b +size 371138 diff --git a/Skins/altruism - Copy/ranking-d-small.png b/Skins/altruism - Copy/ranking-d-small.png new file mode 100644 index 00000000..88e6174d --- /dev/null +++ b/Skins/altruism - Copy/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7beb29c02c369f2b9bbc95574cbfee87899417f1336b49caac93c7fd9667e299 +size 854 diff --git a/Skins/altruism - Copy/ranking-d.png b/Skins/altruism - Copy/ranking-d.png new file mode 100644 index 00000000..e45e2b69 --- /dev/null +++ b/Skins/altruism - Copy/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85efce18b2bb999597b27e9be8e1119cbd37bd8a835c608d34be2ba8e7baf1d2 +size 116992 diff --git a/Skins/altruism - Copy/ranking-d@2x.png b/Skins/altruism - Copy/ranking-d@2x.png new file mode 100644 index 00000000..38836eb6 --- /dev/null +++ b/Skins/altruism - Copy/ranking-d@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468e62aa3cdd4cd0cd77932a3e3938f45b3a59f239ff917d7c2c6ce5f39b7554 +size 369010 diff --git a/Skins/altruism - Copy/ranking-graph.png b/Skins/altruism - Copy/ranking-graph.png new file mode 100644 index 00000000..7451eef8 --- /dev/null +++ b/Skins/altruism - Copy/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f71168c0b1ab5673af9872ad8860fbe7968eb444922b0952b773ce7a8e02bf7 +size 112 diff --git a/Skins/altruism - Copy/ranking-maxcombo.png b/Skins/altruism - Copy/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/ranking-panel.png b/Skins/altruism - Copy/ranking-panel.png new file mode 100644 index 00000000..e5361ac2 --- /dev/null +++ b/Skins/altruism - Copy/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145e954f242fad1d19bd0e84037417ad8dfd1e21970d1f63f71e6a37b7aac944 +size 130997 diff --git a/Skins/altruism - Copy/ranking-panel@2x.png b/Skins/altruism - Copy/ranking-panel@2x.png new file mode 100644 index 00000000..4ed073c9 --- /dev/null +++ b/Skins/altruism - Copy/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00621ef054546e4c0b19e57976d862eebdd1ab3d28aaf86e0e8e14ccb4b07393 +size 425241 diff --git a/Skins/altruism - Copy/ranking-perfect.png b/Skins/altruism - Copy/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/ranking-s-small.png b/Skins/altruism - Copy/ranking-s-small.png new file mode 100644 index 00000000..3553cae3 --- /dev/null +++ b/Skins/altruism - Copy/ranking-s-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121e0b38cd9c10a9d52153978c44e8e49422c955ff6cb7975d2a952a0941c01f +size 876 diff --git a/Skins/altruism - Copy/ranking-s.png b/Skins/altruism - Copy/ranking-s.png new file mode 100644 index 00000000..6595c312 --- /dev/null +++ b/Skins/altruism - Copy/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afac7cc367ddb180b19d5894243ec6af10805bfb8de42a594dabbef48d96a92 +size 117382 diff --git a/Skins/altruism - Copy/ranking-s@2x.png b/Skins/altruism - Copy/ranking-s@2x.png new file mode 100644 index 00000000..f905454a --- /dev/null +++ b/Skins/altruism - Copy/ranking-s@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720974aa82a1fbb77a12eab618ca4efd77db8885997ad32f212627b4ddd3edb2 +size 368998 diff --git a/Skins/altruism - Copy/ranking-sh-small.png b/Skins/altruism - Copy/ranking-sh-small.png new file mode 100644 index 00000000..3553cae3 --- /dev/null +++ b/Skins/altruism - Copy/ranking-sh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121e0b38cd9c10a9d52153978c44e8e49422c955ff6cb7975d2a952a0941c01f +size 876 diff --git a/Skins/altruism - Copy/ranking-sh.png b/Skins/altruism - Copy/ranking-sh.png new file mode 100644 index 00000000..6595c312 --- /dev/null +++ b/Skins/altruism - Copy/ranking-sh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afac7cc367ddb180b19d5894243ec6af10805bfb8de42a594dabbef48d96a92 +size 117382 diff --git a/Skins/altruism - Copy/ranking-sh@2x.png b/Skins/altruism - Copy/ranking-sh@2x.png new file mode 100644 index 00000000..f905454a --- /dev/null +++ b/Skins/altruism - Copy/ranking-sh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720974aa82a1fbb77a12eab618ca4efd77db8885997ad32f212627b4ddd3edb2 +size 368998 diff --git a/Skins/altruism - Copy/ranking-title.png b/Skins/altruism - Copy/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/ranking-winner.png b/Skins/altruism - Copy/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/ranking-x-small.png b/Skins/altruism - Copy/ranking-x-small.png new file mode 100644 index 00000000..140dd158 --- /dev/null +++ b/Skins/altruism - Copy/ranking-x-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42be7cb09212115cbd8e3e7cc3148881ad7d62df7b6e41c3b003575a0b4f87e2 +size 840 diff --git a/Skins/altruism - Copy/ranking-x.png b/Skins/altruism - Copy/ranking-x.png new file mode 100644 index 00000000..fc815467 --- /dev/null +++ b/Skins/altruism - Copy/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baad3bc36490086a23345ba5739950fe0ac3ccf14acc84406456b58185d9ef9 +size 117284 diff --git a/Skins/altruism - Copy/ranking-x@2x.png b/Skins/altruism - Copy/ranking-x@2x.png new file mode 100644 index 00000000..8e914aad --- /dev/null +++ b/Skins/altruism - Copy/ranking-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdef780644e1d7b287105c37339886dffe7b69496212c2e446602217869352be +size 373253 diff --git a/Skins/altruism - Copy/ranking-xh-small.png b/Skins/altruism - Copy/ranking-xh-small.png new file mode 100644 index 00000000..140dd158 --- /dev/null +++ b/Skins/altruism - Copy/ranking-xh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42be7cb09212115cbd8e3e7cc3148881ad7d62df7b6e41c3b003575a0b4f87e2 +size 840 diff --git a/Skins/altruism - Copy/ranking-xh.png b/Skins/altruism - Copy/ranking-xh.png new file mode 100644 index 00000000..fc815467 --- /dev/null +++ b/Skins/altruism - Copy/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baad3bc36490086a23345ba5739950fe0ac3ccf14acc84406456b58185d9ef9 +size 117284 diff --git a/Skins/altruism - Copy/ranking-xh@2x.png b/Skins/altruism - Copy/ranking-xh@2x.png new file mode 100644 index 00000000..8e914aad --- /dev/null +++ b/Skins/altruism - Copy/ranking-xh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdef780644e1d7b287105c37339886dffe7b69496212c2e446602217869352be +size 373253 diff --git a/Skins/altruism - Copy/ready.png b/Skins/altruism - Copy/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/readys.ogg b/Skins/altruism - Copy/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/reversearrow.png b/Skins/altruism - Copy/reversearrow.png new file mode 100644 index 00000000..57cb4fd7 --- /dev/null +++ b/Skins/altruism - Copy/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1cb5e12d195337c0e81fafe5a6470467114979ece243715621c964109e3b8f +size 10239 diff --git a/Skins/altruism - Copy/reversearrow@2x.png b/Skins/altruism - Copy/reversearrow@2x.png new file mode 100644 index 00000000..cb1944ba --- /dev/null +++ b/Skins/altruism - Copy/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741891903d3e124f2c40c25cf365adfb9f4ef61b287c16c9c053848abad5ca40 +size 18370 diff --git a/Skins/altruism - Copy/score-0.png b/Skins/altruism - Copy/score-0.png new file mode 100644 index 00000000..eea500b8 --- /dev/null +++ b/Skins/altruism - Copy/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd22f9f618525cffe9d37c845f9234b63d6e1e2be76c79138f36da3252c81920 +size 712 diff --git a/Skins/altruism - Copy/score-1.png b/Skins/altruism - Copy/score-1.png new file mode 100644 index 00000000..ede55977 --- /dev/null +++ b/Skins/altruism - Copy/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757791e028b305ed420efffd2296eb2ebd5221c7844b1443c398a194a4d7663d +size 400 diff --git a/Skins/altruism - Copy/score-2.png b/Skins/altruism - Copy/score-2.png new file mode 100644 index 00000000..2bfdffcc --- /dev/null +++ b/Skins/altruism - Copy/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f118fade0e802d823e0c0a8e3e7dd2692b8a720dcef4710c9dbd40e9724bd82 +size 631 diff --git a/Skins/altruism - Copy/score-3.png b/Skins/altruism - Copy/score-3.png new file mode 100644 index 00000000..7632976d --- /dev/null +++ b/Skins/altruism - Copy/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2a4b9911b97adc588e07edf720f05bfe019a95bff6a637c91f61afe1e14246 +size 690 diff --git a/Skins/altruism - Copy/score-4.png b/Skins/altruism - Copy/score-4.png new file mode 100644 index 00000000..71f446d8 --- /dev/null +++ b/Skins/altruism - Copy/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81513a061bac952645d1d30d5bcec9e5eba778c26aa23376b3cf4e3e5d23dd87 +size 616 diff --git a/Skins/altruism - Copy/score-5.png b/Skins/altruism - Copy/score-5.png new file mode 100644 index 00000000..f13b1875 --- /dev/null +++ b/Skins/altruism - Copy/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78ca02f4b372c686de1c91f2bd2a7d2e53bca15684e84710e5c93c459038530 +size 631 diff --git a/Skins/altruism - Copy/score-6.png b/Skins/altruism - Copy/score-6.png new file mode 100644 index 00000000..b6822bd6 --- /dev/null +++ b/Skins/altruism - Copy/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745b529db378a29d6f16de1fc476eb6d1e2e79b68adeb005e5ab4b94d85a72f8 +size 710 diff --git a/Skins/altruism - Copy/score-7.png b/Skins/altruism - Copy/score-7.png new file mode 100644 index 00000000..340614e6 --- /dev/null +++ b/Skins/altruism - Copy/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90aa2ae3dbe72eeedb7f017dc105ade051b8b08eb17db2f52a5542eb018aa165 +size 497 diff --git a/Skins/altruism - Copy/score-8.png b/Skins/altruism - Copy/score-8.png new file mode 100644 index 00000000..58dfe386 --- /dev/null +++ b/Skins/altruism - Copy/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5860010cf39c88a4688e737c0a5b46867dfe5dc0fda9e9591ba040efd3eeecc +size 740 diff --git a/Skins/altruism - Copy/score-9.png b/Skins/altruism - Copy/score-9.png new file mode 100644 index 00000000..eddd8b25 --- /dev/null +++ b/Skins/altruism - Copy/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f892389f4dac47d17a83f28daf23a8c4067d907cbd1427c851469fe8446d3e6 +size 734 diff --git a/Skins/altruism - Copy/score-comma.png b/Skins/altruism - Copy/score-comma.png new file mode 100644 index 00000000..7353580d --- /dev/null +++ b/Skins/altruism - Copy/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1974c753e3cc12467c37c329114dbef7b09c536fed4117eddb9e1bf8b1d7d1d9 +size 292 diff --git a/Skins/altruism - Copy/score-dot.png b/Skins/altruism - Copy/score-dot.png new file mode 100644 index 00000000..ad60f406 --- /dev/null +++ b/Skins/altruism - Copy/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26208ce695c759bb92b7fbb5d37b024aefbcab62ed4d524c92f891bcc5ab6b7a +size 221 diff --git a/Skins/altruism - Copy/score-percent.png b/Skins/altruism - Copy/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/score-x.png b/Skins/altruism - Copy/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/scorebar-bg .png b/Skins/altruism - Copy/scorebar-bg .png new file mode 100644 index 00000000..b83d53b5 --- /dev/null +++ b/Skins/altruism - Copy/scorebar-bg .png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8fdead3f0ee24a42dc266894cbbf468368f96ea9388e808001aa73ff139b7f +size 165 diff --git a/Skins/altruism - Copy/scorebar-bg.png b/Skins/altruism - Copy/scorebar-bg.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/scorebar-colour.png b/Skins/altruism - Copy/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/scoreentry-0.png b/Skins/altruism - Copy/scoreentry-0.png new file mode 100644 index 00000000..fe2e3de5 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f6e7a2754a538a6e340d1576e123aa6488c461107ae58f25c26388cc4b7161d +size 406 diff --git a/Skins/altruism - Copy/scoreentry-0@2x.png b/Skins/altruism - Copy/scoreentry-0@2x.png new file mode 100644 index 00000000..0fec94f6 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abd8e2825dc33798cd85d5bca08a89018d962044267a547d349678365a0ea87 +size 709 diff --git a/Skins/altruism - Copy/scoreentry-1.png b/Skins/altruism - Copy/scoreentry-1.png new file mode 100644 index 00000000..f422d37e --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39067afc45270d7fa06e879c9e936c966e96b756a59881c7df6f61f82af975c4 +size 315 diff --git a/Skins/altruism - Copy/scoreentry-1@2x.png b/Skins/altruism - Copy/scoreentry-1@2x.png new file mode 100644 index 00000000..728fafac --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a653392e3156b0fdefb3ea203f28b0c143db4b814578457dcce06a17e1c0b4f1 +size 417 diff --git a/Skins/altruism - Copy/scoreentry-2.png b/Skins/altruism - Copy/scoreentry-2.png new file mode 100644 index 00000000..5fb0c02a --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286fb97b27846c59f2ac8e20b6ed3f9ab95e3f3a87ad3c4a3eff386958eaa040 +size 437 diff --git a/Skins/altruism - Copy/scoreentry-2@2x.png b/Skins/altruism - Copy/scoreentry-2@2x.png new file mode 100644 index 00000000..14e945d2 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa4a8aa1adb0700d10e11f3d2d5d6b9a9d7ebb698d3dd69c65d71a3408266e4 +size 637 diff --git a/Skins/altruism - Copy/scoreentry-3.png b/Skins/altruism - Copy/scoreentry-3.png new file mode 100644 index 00000000..945c8ddf --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9fd5b7bfa95770be8c8680522bdcf114717fa00e26835e58a405e07094d615e +size 434 diff --git a/Skins/altruism - Copy/scoreentry-3@2x.png b/Skins/altruism - Copy/scoreentry-3@2x.png new file mode 100644 index 00000000..164f3394 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28cf26c8389612acf577446f101e42b719cc071bef0a36893e90f8eb31d42135 +size 645 diff --git a/Skins/altruism - Copy/scoreentry-4.png b/Skins/altruism - Copy/scoreentry-4.png new file mode 100644 index 00000000..efc3eaf8 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d9be0be62232a44d6bdededcc898edd9f4658236a17252c088b9456be13afd1 +size 419 diff --git a/Skins/altruism - Copy/scoreentry-4@2x.png b/Skins/altruism - Copy/scoreentry-4@2x.png new file mode 100644 index 00000000..821f7c9a --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be5ddebc9d120265b05ae7aa86e1437f3aa4819e9f7968e27b712346e33693f +size 631 diff --git a/Skins/altruism - Copy/scoreentry-5.png b/Skins/altruism - Copy/scoreentry-5.png new file mode 100644 index 00000000..81f48bf2 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40da0a0ecfdc3de96682fb46f76733b7585bc3080a6d286155a85e5db4d4e4ad +size 444 diff --git a/Skins/altruism - Copy/scoreentry-5@2x.png b/Skins/altruism - Copy/scoreentry-5@2x.png new file mode 100644 index 00000000..33842760 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce9ebec6bce060e8fbdceec97c27bff2914da653f3d198bf0f6254296b7cc28 +size 615 diff --git a/Skins/altruism - Copy/scoreentry-6.png b/Skins/altruism - Copy/scoreentry-6.png new file mode 100644 index 00000000..27cd3bda --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9633b265ade198f2a0026e20cd543de48862355bd406e08a919b4fc88fccf39 +size 430 diff --git a/Skins/altruism - Copy/scoreentry-6@2x.png b/Skins/altruism - Copy/scoreentry-6@2x.png new file mode 100644 index 00000000..feaa17de --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:900fa0eb849530853591ecb408a16f112ff60e71f698d3220b70750d02bd585c +size 694 diff --git a/Skins/altruism - Copy/scoreentry-7.png b/Skins/altruism - Copy/scoreentry-7.png new file mode 100644 index 00000000..567f8f31 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3a5e4301e5fc638604a4fe587788bae55cfe4fe86ad6b1f93cbe60c08378fe +size 358 diff --git a/Skins/altruism - Copy/scoreentry-7@2x.png b/Skins/altruism - Copy/scoreentry-7@2x.png new file mode 100644 index 00000000..c4411741 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30dada965d79ffdf5fe78281fbb81694b052583e30aa3439ab252a564171ef9d +size 484 diff --git a/Skins/altruism - Copy/scoreentry-8.png b/Skins/altruism - Copy/scoreentry-8.png new file mode 100644 index 00000000..ce8cfa2a --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e25b670d8ed2431e1edbd0c63b706b8a1daacd4688b1038f7686cd32bad02020 +size 456 diff --git a/Skins/altruism - Copy/scoreentry-8@2x.png b/Skins/altruism - Copy/scoreentry-8@2x.png new file mode 100644 index 00000000..718171f7 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fec789b9f4f149544f585d1d584a573a853a624a5da51bd5e72814923f80074 +size 726 diff --git a/Skins/altruism - Copy/scoreentry-9.png b/Skins/altruism - Copy/scoreentry-9.png new file mode 100644 index 00000000..8eccb80a --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82ccc7e3c0104124360ca880026c98f4deffe41ff591dd0822f47b449ea7e391 +size 455 diff --git a/Skins/altruism - Copy/scoreentry-9@2x.png b/Skins/altruism - Copy/scoreentry-9@2x.png new file mode 100644 index 00000000..da0462b5 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a74fa9584d6c0d83f4e6e1a91d5cff46415806dd17104539cd3ebaf9d634f4 +size 701 diff --git a/Skins/altruism - Copy/scoreentry-comma.png b/Skins/altruism - Copy/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/altruism - Copy/scoreentry-dot.png b/Skins/altruism - Copy/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/altruism - Copy/scoreentry-percent.png b/Skins/altruism - Copy/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/scoreentry-x.png b/Skins/altruism - Copy/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/section-fail.png b/Skins/altruism - Copy/section-fail.png new file mode 100644 index 00000000..ef793864 --- /dev/null +++ b/Skins/altruism - Copy/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc30c9ac081a1116af47a194680530fcd7c0daffcfe85bdfb9ac13dc686ebb1 +size 6962 diff --git a/Skins/altruism - Copy/section-fail@2x.png b/Skins/altruism - Copy/section-fail@2x.png new file mode 100644 index 00000000..4b5828c7 --- /dev/null +++ b/Skins/altruism - Copy/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d228cc6ab5739780ac5317537b9034cc57f7fa33e4b7b09fab42999059ab39 +size 15221 diff --git a/Skins/altruism - Copy/section-pass.png b/Skins/altruism - Copy/section-pass.png new file mode 100644 index 00000000..619638ce --- /dev/null +++ b/Skins/altruism - Copy/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a23525505dc13b5fbd3dbbd6824d9907951bda221b0e8230d88f49c5073d04 +size 7364 diff --git a/Skins/altruism - Copy/section-pass@2x.png b/Skins/altruism - Copy/section-pass@2x.png new file mode 100644 index 00000000..4d9af5dd --- /dev/null +++ b/Skins/altruism - Copy/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9969b7cca5d4e59907418954af3984ab6d2e5256293f2a10fa5fb79701e7a37 +size 15553 diff --git a/Skins/altruism - Copy/sectionfail.ogg b/Skins/altruism - Copy/sectionfail.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/altruism - Copy/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/altruism - Copy/sectionpass.ogg b/Skins/altruism - Copy/sectionpass.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/altruism - Copy/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/altruism - Copy/seeya.ogg b/Skins/altruism - Copy/seeya.ogg new file mode 100644 index 00000000..689c748d --- /dev/null +++ b/Skins/altruism - Copy/seeya.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe9635edaafbaf7734f090129d564f5cd8e08ac0ef787762e28cd31ffc060de2 +size 19878 diff --git a/Skins/altruism - Copy/selection-mod-autoplay.png b/Skins/altruism - Copy/selection-mod-autoplay.png new file mode 100644 index 00000000..66eb0970 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f55e7fbe6342fb3fe0c4975400c8bafaef0d5bc4ec4810757973504e3fbec7 +size 907 diff --git a/Skins/altruism - Copy/selection-mod-cinema.png b/Skins/altruism - Copy/selection-mod-cinema.png new file mode 100644 index 00000000..f0816a48 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91830c9ddddd907fb1bb8cc8b939fbff9740a640b7b4d665dedf5a9e2395d0ba +size 1026 diff --git a/Skins/altruism - Copy/selection-mod-doubletime.png b/Skins/altruism - Copy/selection-mod-doubletime.png new file mode 100644 index 00000000..75609a78 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48dd1c4a2fb3ea30775819d02504ff0c443302b528cc899568570f6caf0c8126 +size 932 diff --git a/Skins/altruism - Copy/selection-mod-easy.png b/Skins/altruism - Copy/selection-mod-easy.png new file mode 100644 index 00000000..2ba6a7fd --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626e5fac017af894694e055f1ac018a0c0609a368054f81e9ae76f3e2af7d0c4 +size 886 diff --git a/Skins/altruism - Copy/selection-mod-flashlight.png b/Skins/altruism - Copy/selection-mod-flashlight.png new file mode 100644 index 00000000..4e6e7136 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8c569164ed3dc1e111332efcc9a116c46a4ff323932b157dcacb1dd2818b05 +size 756 diff --git a/Skins/altruism - Copy/selection-mod-halftime.png b/Skins/altruism - Copy/selection-mod-halftime.png new file mode 100644 index 00000000..f8c68765 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dfe765a4540dfb1f6d097f37b0ddba9496fb7b800e7a355dd8b7a2f2b08a5a6 +size 945 diff --git a/Skins/altruism - Copy/selection-mod-hardrock.png b/Skins/altruism - Copy/selection-mod-hardrock.png new file mode 100644 index 00000000..d30f9980 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd551d224168ab901b1026a0437bdce49194f2b42908ae5be78cc0e60ffdc48d +size 867 diff --git a/Skins/altruism - Copy/selection-mod-hidden.png b/Skins/altruism - Copy/selection-mod-hidden.png new file mode 100644 index 00000000..77517e95 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d614bfe82550b4008daef82c8ecccacb06aa9dd1b15b7c9248dafb64bd3171bc +size 1054 diff --git a/Skins/altruism - Copy/selection-mod-nightcore.png b/Skins/altruism - Copy/selection-mod-nightcore.png new file mode 100644 index 00000000..64aa0b7e --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f18ce7052024dbe3bbbffd0b74aded53f8cbd1bf8f94acbd59ce78d6247076 +size 921 diff --git a/Skins/altruism - Copy/selection-mod-nofail.png b/Skins/altruism - Copy/selection-mod-nofail.png new file mode 100644 index 00000000..7b2aee22 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a04c708aff9d8c95a05a717189b0ff782a2815b337d476054225e4214100d98 +size 923 diff --git a/Skins/altruism - Copy/selection-mod-perfect.png b/Skins/altruism - Copy/selection-mod-perfect.png new file mode 100644 index 00000000..731019ec --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840ba6ea512b0230566bb06e071993783526e4975cd61f0f6a1175cb6642fb16 +size 927 diff --git a/Skins/altruism - Copy/selection-mod-relax.png b/Skins/altruism - Copy/selection-mod-relax.png new file mode 100644 index 00000000..6a192ca8 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d179309a41572fb15a4dd6682fd97c5bb661d1a7f36f04d3d4338b1907b3979c +size 647 diff --git a/Skins/altruism - Copy/selection-mod-relax2.png b/Skins/altruism - Copy/selection-mod-relax2.png new file mode 100644 index 00000000..f899c3c0 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e075ca7fff8e6f681923655c36fb85941f92432232e4a8598f08c445e1855521 +size 963 diff --git a/Skins/altruism - Copy/selection-mod-scorev2.png b/Skins/altruism - Copy/selection-mod-scorev2.png new file mode 100644 index 00000000..29062c4a --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197c3500ab925d4414a79954cd0d9db767694a74541b153abc98a23a247f817e +size 1000 diff --git a/Skins/altruism - Copy/selection-mod-spunout.png b/Skins/altruism - Copy/selection-mod-spunout.png new file mode 100644 index 00000000..e3a2a19f --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:727c9a7b93990d69f64c33d274453a92f4f2a0666d51ec0f1d7ac0b2d666d558 +size 929 diff --git a/Skins/altruism - Copy/selection-mod-suddendeath.png b/Skins/altruism - Copy/selection-mod-suddendeath.png new file mode 100644 index 00000000..10d6c48d --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db479f5e064564c6c09c08972d980bed0af112d5664bbfba7eb5652b967d6075 +size 979 diff --git a/Skins/altruism - Copy/selection-mod-target.png b/Skins/altruism - Copy/selection-mod-target.png new file mode 100644 index 00000000..613ba308 --- /dev/null +++ b/Skins/altruism - Copy/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf71ee04d5010cfd16c580803d875cac8c68859dfd929ac4686a3394088566c +size 906 diff --git a/Skins/altruism - Copy/selection-mode-over.png b/Skins/altruism - Copy/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/selection-mode.png b/Skins/altruism - Copy/selection-mode.png new file mode 100644 index 00000000..342c37ff --- /dev/null +++ b/Skins/altruism - Copy/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d12c96497ee242ec4a34337970bc52e406c9eb9fdb5a8ceeaa40ce92579784 +size 76341 diff --git a/Skins/altruism - Copy/selection-mode@2x.png b/Skins/altruism - Copy/selection-mode@2x.png new file mode 100644 index 00000000..f641a7f0 --- /dev/null +++ b/Skins/altruism - Copy/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eeebf0a7bdfa370e1f1121e180f2ffb16d9599773022114429d4671cd95668f +size 256981 diff --git a/Skins/altruism - Copy/selection-mods-over.png b/Skins/altruism - Copy/selection-mods-over.png new file mode 100644 index 00000000..d44f2980 --- /dev/null +++ b/Skins/altruism - Copy/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101cd54a76e172626d3551f4048b166b688e36b8a048b3051146841c09237c58 +size 1586 diff --git a/Skins/altruism - Copy/selection-mods.png b/Skins/altruism - Copy/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/selection-options-over.png b/Skins/altruism - Copy/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/selection-options.png b/Skins/altruism - Copy/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/selection-random-over.png b/Skins/altruism - Copy/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/selection-random.png b/Skins/altruism - Copy/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/selection-tab.png b/Skins/altruism - Copy/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/altruism - Copy/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/altruism - Copy/shutter.ogg b/Skins/altruism - Copy/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/skin.ini b/Skins/altruism - Copy/skin.ini new file mode 100644 index 00000000..531b4d36 --- /dev/null +++ b/Skins/altruism - Copy/skin.ini @@ -0,0 +1,22 @@ +// skin.ini generated by osu! skin mixer v2.9.0 + +[General] +Name: altruism red niko cursor +Author: altruism +Version: 2.7 +HitCircleOverlayAboveNumber: 1 +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 + +[Colours] +Combo1: 217,221,255 +Combo2: 171,185,255 +SliderBorder: 85,85,85 +SliderTrackOverride: 0,0,0 +SongSelectActiveText: 255,255,255 + +[Fonts] +HitCircleOverlap: 14 +ScoreOverlap: 7 +ComboPrefix: combo diff --git a/Skins/altruism - Copy/sliderb.png b/Skins/altruism - Copy/sliderb.png new file mode 100644 index 00000000..c4807191 --- /dev/null +++ b/Skins/altruism - Copy/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991fbd871dd5c2fc3749006f779cf35d3e71dd5bf1cf00482e1acffac55aace7 +size 2672 diff --git a/Skins/altruism - Copy/sliderb@2x.png b/Skins/altruism - Copy/sliderb@2x.png new file mode 100644 index 00000000..7d23c734 --- /dev/null +++ b/Skins/altruism - Copy/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d628b7a451a184ceea89e7c8854e410d3f84daad6e71ef3436c1c9cb494adf4d +size 4743 diff --git a/Skins/altruism - Copy/sliderendcircle.png b/Skins/altruism - Copy/sliderendcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/sliderendmiss.png b/Skins/altruism - Copy/sliderendmiss.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism - Copy/sliderendmiss.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism - Copy/sliderfollowcircle.png b/Skins/altruism - Copy/sliderfollowcircle.png new file mode 100644 index 00000000..780651a6 --- /dev/null +++ b/Skins/altruism - Copy/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b65a9f82f1b87ea9a3b8549120936cd70fb402fc04428fa7ab0171d414b38f +size 11401 diff --git a/Skins/altruism - Copy/sliderfollowcircle@2x.png b/Skins/altruism - Copy/sliderfollowcircle@2x.png new file mode 100644 index 00000000..678be6aa --- /dev/null +++ b/Skins/altruism - Copy/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfc14d30e58b2052367cd88e5e418997b760273ebc4806c6a4beeb9de13dc78 +size 24883 diff --git a/Skins/altruism - Copy/sliderscorepoint.png b/Skins/altruism - Copy/sliderscorepoint.png new file mode 100644 index 00000000..07c17d27 --- /dev/null +++ b/Skins/altruism - Copy/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c32e348b2eccd9880def0b29d6712ec5b32da318191cdf16e4e76e350e2af55 +size 2991 diff --git a/Skins/altruism - Copy/sliderscorepoint@2x.png b/Skins/altruism - Copy/sliderscorepoint@2x.png new file mode 100644 index 00000000..f01d68bd --- /dev/null +++ b/Skins/altruism - Copy/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9af2743892d82308d852f4f7b1ee92d4d03c79b4c1ebf8dbc7a6835327647e +size 3357 diff --git a/Skins/altruism - Copy/soft-hitclap.ogg b/Skins/altruism - Copy/soft-hitclap.ogg new file mode 100644 index 00000000..69fa3fd0 --- /dev/null +++ b/Skins/altruism - Copy/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933861cb92d0da79e6c64de23425e64da86bcb5ad5b98bee0b2a6436bbdbb86f +size 4614 diff --git a/Skins/altruism - Copy/soft-hitfinish.ogg b/Skins/altruism - Copy/soft-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/altruism - Copy/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/altruism - Copy/soft-hitnormal.ogg b/Skins/altruism - Copy/soft-hitnormal.ogg new file mode 100644 index 00000000..7221dc34 --- /dev/null +++ b/Skins/altruism - Copy/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0339f2aae06df054dc1b1bbda0168f46e34426c00da3f4d0adc986fede7b0227 +size 7506 diff --git a/Skins/altruism - Copy/soft-hitwhistle.ogg b/Skins/altruism - Copy/soft-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism - Copy/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism - Copy/soft-sliderslide.ogg b/Skins/altruism - Copy/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/soft-slidertick.ogg b/Skins/altruism - Copy/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/soft-sliderwhistle.ogg b/Skins/altruism - Copy/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/songselect-bottom.png b/Skins/altruism - Copy/songselect-bottom.png new file mode 100644 index 00000000..4fca2e87 --- /dev/null +++ b/Skins/altruism - Copy/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91dcef2f26836b84126d69f9e6efdf21b91d659e14889a4eb8a1bf89e1e17a15 +size 9027 diff --git a/Skins/altruism - Copy/songselect-bottom@2x.png b/Skins/altruism - Copy/songselect-bottom@2x.png new file mode 100644 index 00000000..b399ac31 --- /dev/null +++ b/Skins/altruism - Copy/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868ae96c60f618db4f4e9939dc5fc748706a4d507ec49930cc3eab2bfd85d84b +size 10189 diff --git a/Skins/altruism - Copy/songselect-top.png b/Skins/altruism - Copy/songselect-top.png new file mode 100644 index 00000000..1ec93bc6 --- /dev/null +++ b/Skins/altruism - Copy/songselect-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1bb83299f8d6fe64c87f91f0aeb55b0d62c896c3957e5b9ef4a6695c561e07 +size 8024 diff --git a/Skins/altruism - Copy/songselect-top@2x.png b/Skins/altruism - Copy/songselect-top@2x.png new file mode 100644 index 00000000..3de066d8 --- /dev/null +++ b/Skins/altruism - Copy/songselect-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3c973906f5fdd769e71bbe37f75272b39483c50bb43f1ccad4b8ddd9d4eefd +size 14076 diff --git a/Skins/altruism - Copy/spinner-approachcircle.png b/Skins/altruism - Copy/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/spinner-background.png b/Skins/altruism - Copy/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/spinner-circle.png b/Skins/altruism - Copy/spinner-circle.png new file mode 100644 index 00000000..b4bc17a1 --- /dev/null +++ b/Skins/altruism - Copy/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ef158f77aab871f451fddec9735372128a837c0dad01604a1037d875c87205 +size 21882 diff --git a/Skins/altruism - Copy/spinner-circle@2x.png b/Skins/altruism - Copy/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/altruism - Copy/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/altruism - Copy/spinner-clear.png b/Skins/altruism - Copy/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/spinner-rpm.png b/Skins/altruism - Copy/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/spinner-spin.png b/Skins/altruism - Copy/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/spinnerbonus.ogg b/Skins/altruism - Copy/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/spinnerspin.ogg b/Skins/altruism - Copy/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism - Copy/star.png b/Skins/altruism - Copy/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism - Copy/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism - Copy/star2.png b/Skins/altruism - Copy/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/star2@2x.png b/Skins/altruism - Copy/star2@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism - Copy/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism - Copy/welcome.ogg b/Skins/altruism - Copy/welcome.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/altruism - Copy/welcome.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/altruism alt/applause.ogg b/Skins/altruism alt/applause.ogg new file mode 100644 index 00000000..215b5dc7 --- /dev/null +++ b/Skins/altruism alt/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99676d45d74779ad732614f17da9b066c329186a4fd1d3b76691961a473b8e66 +size 261990 diff --git a/Skins/altruism alt/approachcircle.png b/Skins/altruism alt/approachcircle.png new file mode 100644 index 00000000..e2e8feb9 --- /dev/null +++ b/Skins/altruism alt/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cec20489c3b244fab672f841f1d1bfe2bf075b8aa9a1a4495df1d9f5b62a36 +size 16112 diff --git a/Skins/altruism alt/approachcircle@2x.png b/Skins/altruism alt/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/altruism alt/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/altruism alt/arrow-warning.png b/Skins/altruism alt/arrow-warning.png new file mode 100644 index 00000000..ee4f4590 --- /dev/null +++ b/Skins/altruism alt/arrow-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f913b3085921e777caaf99729862f8d3030be75f43f405dbfd7cbb6f7bf15cc +size 920 diff --git a/Skins/altruism alt/button-left.png b/Skins/altruism alt/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/button-middle.png b/Skins/altruism alt/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/button-right.png b/Skins/altruism alt/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/check-off.ogg b/Skins/altruism alt/check-off.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/check-off.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/check-on.ogg b/Skins/altruism alt/check-on.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/check-on.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/click-short-confirm.ogg b/Skins/altruism alt/click-short-confirm.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/click-short-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/click-short.ogg b/Skins/altruism alt/click-short.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/click-short.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/combo-0.png b/Skins/altruism alt/combo-0.png new file mode 100644 index 00000000..0479f6b3 --- /dev/null +++ b/Skins/altruism alt/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d10a590366f37afbc849e0bedcff84579ef43259c2b0c2c69ea184c3ce6ea07 +size 1027 diff --git a/Skins/altruism alt/combo-0@2x.png b/Skins/altruism alt/combo-0@2x.png new file mode 100644 index 00000000..3766ba1d --- /dev/null +++ b/Skins/altruism alt/combo-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a96e8f3658be0ee47af859290b6876b225a4d3ef5bbe7c4f575e08ab619dcb +size 1615 diff --git a/Skins/altruism alt/combo-1.png b/Skins/altruism alt/combo-1.png new file mode 100644 index 00000000..43558523 --- /dev/null +++ b/Skins/altruism alt/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6b598ac7b438e780c56bb38beead542c8b8754b3695c02481f08cf6f35b3c6 +size 624 diff --git a/Skins/altruism alt/combo-1@2x.png b/Skins/altruism alt/combo-1@2x.png new file mode 100644 index 00000000..9bcee634 --- /dev/null +++ b/Skins/altruism alt/combo-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553f9a89072578f7396637dc4cee4158ec08c2b0070834026bc9f63b1e1e5836 +size 1057 diff --git a/Skins/altruism alt/combo-2.png b/Skins/altruism alt/combo-2.png new file mode 100644 index 00000000..7fe9fc50 --- /dev/null +++ b/Skins/altruism alt/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6cd0660fb7020f1cd43938b5922601003d99166850c33c5c197aee039f0251 +size 952 diff --git a/Skins/altruism alt/combo-2@2x.png b/Skins/altruism alt/combo-2@2x.png new file mode 100644 index 00000000..ad414b95 --- /dev/null +++ b/Skins/altruism alt/combo-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72e6e897b6cad78235b432e221dfc7ab9f359ddd6702419162fb96afc9754cd +size 1412 diff --git a/Skins/altruism alt/combo-3.png b/Skins/altruism alt/combo-3.png new file mode 100644 index 00000000..f399e685 --- /dev/null +++ b/Skins/altruism alt/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360575ed0483abc255c308dc3c9eb31b0d15d9ef64a1a7fb011d29d16d09b28f +size 1006 diff --git a/Skins/altruism alt/combo-3@2x.png b/Skins/altruism alt/combo-3@2x.png new file mode 100644 index 00000000..dc931e63 --- /dev/null +++ b/Skins/altruism alt/combo-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e51317c911416d3774ca76c2ad53a34e556dbb38c53bbf0dca9c4eba4305f9 +size 1420 diff --git a/Skins/altruism alt/combo-4.png b/Skins/altruism alt/combo-4.png new file mode 100644 index 00000000..cb4dc7b4 --- /dev/null +++ b/Skins/altruism alt/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fcb910d395dc8908a472973efe76885765d729f042c2e064e7003702742b56 +size 959 diff --git a/Skins/altruism alt/combo-4@2x.png b/Skins/altruism alt/combo-4@2x.png new file mode 100644 index 00000000..b43d5350 --- /dev/null +++ b/Skins/altruism alt/combo-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40b0a9d7f86040f6d3e8ab763ed4d41426aea521e1f21fefbe2f6f47200d650 +size 1509 diff --git a/Skins/altruism alt/combo-5.png b/Skins/altruism alt/combo-5.png new file mode 100644 index 00000000..63f0f546 --- /dev/null +++ b/Skins/altruism alt/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa4ac25aaa868b871d912a3bbf913879c739a11609611802d9b1b08cca7a4d3 +size 1020 diff --git a/Skins/altruism alt/combo-5@2x.png b/Skins/altruism alt/combo-5@2x.png new file mode 100644 index 00000000..175e2df4 --- /dev/null +++ b/Skins/altruism alt/combo-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eddcbea08a24729e7db798db654dd4e48cf15aca0c73e7ffe5878f4189f6e802 +size 1427 diff --git a/Skins/altruism alt/combo-6.png b/Skins/altruism alt/combo-6.png new file mode 100644 index 00000000..9f669b00 --- /dev/null +++ b/Skins/altruism alt/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64853fe5ca93196b16171fefad75cd318d895b80b3c173c69defb2060075c7ac +size 1046 diff --git a/Skins/altruism alt/combo-6@2x.png b/Skins/altruism alt/combo-6@2x.png new file mode 100644 index 00000000..6b7dd0ed --- /dev/null +++ b/Skins/altruism alt/combo-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e840447f20d3cf161402214a3211d749408ac2746170faf8832a7b2ff27e96fc +size 1538 diff --git a/Skins/altruism alt/combo-7.png b/Skins/altruism alt/combo-7.png new file mode 100644 index 00000000..7e6c361e --- /dev/null +++ b/Skins/altruism alt/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62b6ea0bfb0a6ef950ac71d40deb01023fa596c91b3144022cd513d7fa39be6 +size 758 diff --git a/Skins/altruism alt/combo-7@2x.png b/Skins/altruism alt/combo-7@2x.png new file mode 100644 index 00000000..aaa31bd4 --- /dev/null +++ b/Skins/altruism alt/combo-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b66e960891215435f98dd81471f920db0ca267745c1b75dec2415babceab6c +size 1248 diff --git a/Skins/altruism alt/combo-8.png b/Skins/altruism alt/combo-8.png new file mode 100644 index 00000000..07885c64 --- /dev/null +++ b/Skins/altruism alt/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f53a69bed20172d2941fac24281c11678039a1906041254ed72c2593158ef42 +size 1073 diff --git a/Skins/altruism alt/combo-8@2x.png b/Skins/altruism alt/combo-8@2x.png new file mode 100644 index 00000000..238122a3 --- /dev/null +++ b/Skins/altruism alt/combo-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4a2799f9acddffb1530d041a06c9f1f264fe4f5c3a8b40054411829aac3a66 +size 1573 diff --git a/Skins/altruism alt/combo-9.png b/Skins/altruism alt/combo-9.png new file mode 100644 index 00000000..031f1a15 --- /dev/null +++ b/Skins/altruism alt/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57256cc494c919f8c975c5a0a2e0d4681652af237ab2a907b7d97c3e30a766e4 +size 1035 diff --git a/Skins/altruism alt/combo-9@2x.png b/Skins/altruism alt/combo-9@2x.png new file mode 100644 index 00000000..2e0ac3ea --- /dev/null +++ b/Skins/altruism alt/combo-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0694e781554f6f15c788823b003518c7197fe9a6d4596173a17ea2111cca5887 +size 1563 diff --git a/Skins/altruism alt/count.ogg b/Skins/altruism alt/count.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/count1.png b/Skins/altruism alt/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/count2.png b/Skins/altruism alt/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/count3.png b/Skins/altruism alt/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/cursor-smoke.png b/Skins/altruism alt/cursor-smoke.png new file mode 100644 index 00000000..ba477ce4 --- /dev/null +++ b/Skins/altruism alt/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86376579c39bd1112cc571a58cfa2f2f5073b415e01ecfc480ce84f77c2db75c +size 340 diff --git a/Skins/altruism alt/cursor.png b/Skins/altruism alt/cursor.png new file mode 100644 index 00000000..90c79793 --- /dev/null +++ b/Skins/altruism alt/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca25c939ff8074fa9704441c6c90b64feaa315dd93237f1825e4b3657ec4491 +size 2531 diff --git a/Skins/altruism alt/cursortrail.png b/Skins/altruism alt/cursortrail.png new file mode 100644 index 00000000..3b9fc025 --- /dev/null +++ b/Skins/altruism alt/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee305616e1e465b767579fdbb68a6ae8dddec2093def376eca90c5e5fd3fc59 +size 1159 diff --git a/Skins/altruism alt/default-0.png b/Skins/altruism alt/default-0.png new file mode 100644 index 00000000..0b52d8e4 --- /dev/null +++ b/Skins/altruism alt/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1a6ad4b6fb347f91995734805f2f73755946a60eceabca83e24019ed0101cd +size 1696 diff --git a/Skins/altruism alt/default-1.png b/Skins/altruism alt/default-1.png new file mode 100644 index 00000000..0c34c5eb --- /dev/null +++ b/Skins/altruism alt/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97787cc5999dd8422ae9c8258b3229afd842a9645bc58c70943b7421064cfea +size 750 diff --git a/Skins/altruism alt/default-2.png b/Skins/altruism alt/default-2.png new file mode 100644 index 00000000..bfc7396c --- /dev/null +++ b/Skins/altruism alt/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c0dc1a0774bf500ba0913035899bb776ad4bd02c2597b6d17095f95bc63b35 +size 1619 diff --git a/Skins/altruism alt/default-3.png b/Skins/altruism alt/default-3.png new file mode 100644 index 00000000..80b26e7d --- /dev/null +++ b/Skins/altruism alt/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e11a260579a75824361117aa5a2087c6ed3b183bef99a868e1d5feb7c243cff +size 1646 diff --git a/Skins/altruism alt/default-4.png b/Skins/altruism alt/default-4.png new file mode 100644 index 00000000..a93775bf --- /dev/null +++ b/Skins/altruism alt/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2d01068ce7180d3fd41b1a9784ed3a821d85e5d5f0736a141b8dd6f0dfc905 +size 1400 diff --git a/Skins/altruism alt/default-5.png b/Skins/altruism alt/default-5.png new file mode 100644 index 00000000..dba00c67 --- /dev/null +++ b/Skins/altruism alt/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc498965bcb8a60a704ece25974abfd07eef23e56893dbc607ba157b306c68ce +size 1491 diff --git a/Skins/altruism alt/default-6.png b/Skins/altruism alt/default-6.png new file mode 100644 index 00000000..ea8ecb26 --- /dev/null +++ b/Skins/altruism alt/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827c576015d645c28895cb965a13f788e8911d1481a1d54600ce9c91f0e5dd55 +size 1558 diff --git a/Skins/altruism alt/default-7.png b/Skins/altruism alt/default-7.png new file mode 100644 index 00000000..49d0fdb0 --- /dev/null +++ b/Skins/altruism alt/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43eeba1d5e7c3a9907a25ba0227867aee97d68cf2c2bc485c28204c5f51cf57e +size 1267 diff --git a/Skins/altruism alt/default-8.png b/Skins/altruism alt/default-8.png new file mode 100644 index 00000000..759af0fd --- /dev/null +++ b/Skins/altruism alt/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa073f389e145ff2459d55a147a2c06685431d3d36b2c2ae0d462190ebb981a +size 1522 diff --git a/Skins/altruism alt/default-9.png b/Skins/altruism alt/default-9.png new file mode 100644 index 00000000..d61bfb84 --- /dev/null +++ b/Skins/altruism alt/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c278c6989101f2a8ca9754747ddb98a9469410d1482514602f854d56a8de9b +size 1544 diff --git a/Skins/altruism alt/drum-hitclap.ogg b/Skins/altruism alt/drum-hitclap.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism alt/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism alt/drum-hitfinish.ogg b/Skins/altruism alt/drum-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/altruism alt/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/altruism alt/drum-hitnormal.ogg b/Skins/altruism alt/drum-hitnormal.ogg new file mode 100644 index 00000000..7bd224c6 --- /dev/null +++ b/Skins/altruism alt/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5a1507b01aeab01738bbfa79c61ab3459d7334ff56b4bf2ef1fccdcb3e5f62 +size 7362 diff --git a/Skins/altruism alt/drum-hitwhistle.ogg b/Skins/altruism alt/drum-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism alt/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism alt/drum-sliderslide.ogg b/Skins/altruism alt/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/drum-slidertick.ogg b/Skins/altruism alt/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/drum-sliderwhistle.ogg b/Skins/altruism alt/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/fail-background.png b/Skins/altruism alt/fail-background.png new file mode 100644 index 00000000..eda61e98 --- /dev/null +++ b/Skins/altruism alt/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6808a73400c459580f390c5fd9ecb2ed502d4e80c485cec85a0c69644ffe482 +size 46386 diff --git a/Skins/altruism alt/failsound.ogg b/Skins/altruism alt/failsound.ogg new file mode 100644 index 00000000..4286abbd --- /dev/null +++ b/Skins/altruism alt/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017a305fefc72335befe08bd94cd189761c2b4be9a516d9fa1e5154df9255398 +size 174250 diff --git a/Skins/altruism alt/followpoint-0.png b/Skins/altruism alt/followpoint-0.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-1.png b/Skins/altruism alt/followpoint-1.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-10.png b/Skins/altruism alt/followpoint-10.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-11.png b/Skins/altruism alt/followpoint-11.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-12.png b/Skins/altruism alt/followpoint-12.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-13.png b/Skins/altruism alt/followpoint-13.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-14.png b/Skins/altruism alt/followpoint-14.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-15.png b/Skins/altruism alt/followpoint-15.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-16.png b/Skins/altruism alt/followpoint-16.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-17.png b/Skins/altruism alt/followpoint-17.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-18.png b/Skins/altruism alt/followpoint-18.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-19.png b/Skins/altruism alt/followpoint-19.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-2.png b/Skins/altruism alt/followpoint-2.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-20.png b/Skins/altruism alt/followpoint-20.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-21.png b/Skins/altruism alt/followpoint-21.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-22.png b/Skins/altruism alt/followpoint-22.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-23.png b/Skins/altruism alt/followpoint-23.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-24.png b/Skins/altruism alt/followpoint-24.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-25.png b/Skins/altruism alt/followpoint-25.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-26.png b/Skins/altruism alt/followpoint-26.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-27.png b/Skins/altruism alt/followpoint-27.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-28.png b/Skins/altruism alt/followpoint-28.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-29.png b/Skins/altruism alt/followpoint-29.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-3.png b/Skins/altruism alt/followpoint-3.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-30.png b/Skins/altruism alt/followpoint-30.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-31.png b/Skins/altruism alt/followpoint-31.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-32.png b/Skins/altruism alt/followpoint-32.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-33.png b/Skins/altruism alt/followpoint-33.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-34.png b/Skins/altruism alt/followpoint-34.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-35.png b/Skins/altruism alt/followpoint-35.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-36.png b/Skins/altruism alt/followpoint-36.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-37.png b/Skins/altruism alt/followpoint-37.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-38.png b/Skins/altruism alt/followpoint-38.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-39.png b/Skins/altruism alt/followpoint-39.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-4.png b/Skins/altruism alt/followpoint-4.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-40.png b/Skins/altruism alt/followpoint-40.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-41.png b/Skins/altruism alt/followpoint-41.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-42.png b/Skins/altruism alt/followpoint-42.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-43.png b/Skins/altruism alt/followpoint-43.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-44.png b/Skins/altruism alt/followpoint-44.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-45.png b/Skins/altruism alt/followpoint-45.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-46.png b/Skins/altruism alt/followpoint-46.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-47.png b/Skins/altruism alt/followpoint-47.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-48.png b/Skins/altruism alt/followpoint-48.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism alt/followpoint-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism alt/followpoint-49.png b/Skins/altruism alt/followpoint-49.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-5.png b/Skins/altruism alt/followpoint-5.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-50.png b/Skins/altruism alt/followpoint-50.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-51.png b/Skins/altruism alt/followpoint-51.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-52.png b/Skins/altruism alt/followpoint-52.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-53.png b/Skins/altruism alt/followpoint-53.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-54.png b/Skins/altruism alt/followpoint-54.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-55.png b/Skins/altruism alt/followpoint-55.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-56.png b/Skins/altruism alt/followpoint-56.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-57.png b/Skins/altruism alt/followpoint-57.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-58.png b/Skins/altruism alt/followpoint-58.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-59.png b/Skins/altruism alt/followpoint-59.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-6.png b/Skins/altruism alt/followpoint-6.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-60.png b/Skins/altruism alt/followpoint-60.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-7.png b/Skins/altruism alt/followpoint-7.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-8.png b/Skins/altruism alt/followpoint-8.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/followpoint-9.png b/Skins/altruism alt/followpoint-9.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/go.png b/Skins/altruism alt/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/hit0-0.png b/Skins/altruism alt/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/altruism alt/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/altruism alt/hit0.png b/Skins/altruism alt/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/hit100-0.png b/Skins/altruism alt/hit100-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100-1.png b/Skins/altruism alt/hit100-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100-2.png b/Skins/altruism alt/hit100-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100-3.png b/Skins/altruism alt/hit100-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100-4.png b/Skins/altruism alt/hit100-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100-5.png b/Skins/altruism alt/hit100-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/altruism alt/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/altruism alt/hit100-6.png b/Skins/altruism alt/hit100-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/altruism alt/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/altruism alt/hit100-7.png b/Skins/altruism alt/hit100-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/altruism alt/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/altruism alt/hit100-8.png b/Skins/altruism alt/hit100-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/altruism alt/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/altruism alt/hit100-9.png b/Skins/altruism alt/hit100-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/hit100.png b/Skins/altruism alt/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/hit100k-0.png b/Skins/altruism alt/hit100k-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100k-1.png b/Skins/altruism alt/hit100k-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100k-2.png b/Skins/altruism alt/hit100k-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100k-3.png b/Skins/altruism alt/hit100k-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100k-4.png b/Skins/altruism alt/hit100k-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism alt/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism alt/hit100k-5.png b/Skins/altruism alt/hit100k-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/altruism alt/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/altruism alt/hit100k-6.png b/Skins/altruism alt/hit100k-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/altruism alt/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/altruism alt/hit100k-7.png b/Skins/altruism alt/hit100k-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/altruism alt/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/altruism alt/hit100k-8.png b/Skins/altruism alt/hit100k-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/altruism alt/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/altruism alt/hit100k-9.png b/Skins/altruism alt/hit100k-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/hit100k.png b/Skins/altruism alt/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/hit300.png b/Skins/altruism alt/hit300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/hit300g.png b/Skins/altruism alt/hit300g.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/hit300k.png b/Skins/altruism alt/hit300k.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/hit50-0.png b/Skins/altruism alt/hit50-0.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism alt/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism alt/hit50-1.png b/Skins/altruism alt/hit50-1.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism alt/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism alt/hit50-2.png b/Skins/altruism alt/hit50-2.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism alt/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism alt/hit50-3.png b/Skins/altruism alt/hit50-3.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism alt/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism alt/hit50-4.png b/Skins/altruism alt/hit50-4.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism alt/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism alt/hit50-5.png b/Skins/altruism alt/hit50-5.png new file mode 100644 index 00000000..20a02ca4 --- /dev/null +++ b/Skins/altruism alt/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c4a4dd32579364796cb6a07d967a70a104a87f218d2698a7742283e196b05f +size 4355 diff --git a/Skins/altruism alt/hit50-6.png b/Skins/altruism alt/hit50-6.png new file mode 100644 index 00000000..a2d49156 --- /dev/null +++ b/Skins/altruism alt/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aedd7127330e73764c01eba26b22425ddb1d7ae0eadf308eefc088244d4d6f9e +size 4291 diff --git a/Skins/altruism alt/hit50-7.png b/Skins/altruism alt/hit50-7.png new file mode 100644 index 00000000..af67a916 --- /dev/null +++ b/Skins/altruism alt/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49acfe7551db09fb0ac188424367cfc1b4a3b7bfff0e37bb2ea18fcac07a990 +size 4218 diff --git a/Skins/altruism alt/hit50-8.png b/Skins/altruism alt/hit50-8.png new file mode 100644 index 00000000..96590513 --- /dev/null +++ b/Skins/altruism alt/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9965e2df444e56b320169e51621143f39be211971bf5e79ade8e82217bbfbc71 +size 4061 diff --git a/Skins/altruism alt/hit50-9.png b/Skins/altruism alt/hit50-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/hit50.png b/Skins/altruism alt/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/hitcircle.png b/Skins/altruism alt/hitcircle.png new file mode 100644 index 00000000..301f435d --- /dev/null +++ b/Skins/altruism alt/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2304ad1870b1ce5dd2c9e74510e1c8a4df15a857774872528887043a797a29c +size 14763 diff --git a/Skins/altruism alt/hitcircle@2x.png b/Skins/altruism alt/hitcircle@2x.png new file mode 100644 index 00000000..f2fb658f --- /dev/null +++ b/Skins/altruism alt/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a95518527ca5599521f400cb195c04648e627a3e5f17664dfa98b4a412ec15b3 +size 34347 diff --git a/Skins/altruism alt/hitcircleoverlay.png b/Skins/altruism alt/hitcircleoverlay.png new file mode 100644 index 00000000..649eccf0 --- /dev/null +++ b/Skins/altruism alt/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c6181f376d3a417597625ce335cff92e7411c0cc18a3767e7a8d33beb59e22 +size 7692 diff --git a/Skins/altruism alt/inputoverlay-background.png b/Skins/altruism alt/inputoverlay-background.png new file mode 100644 index 00000000..5ac40464 --- /dev/null +++ b/Skins/altruism alt/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d9bb0bf7dfbdd69b38d37089280bb48c3f4608f14b932fad6f6d1c158ad1c8 +size 553 diff --git a/Skins/altruism alt/inputoverlay-key.png b/Skins/altruism alt/inputoverlay-key.png new file mode 100644 index 00000000..644950c1 --- /dev/null +++ b/Skins/altruism alt/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afdab90202565a1fad349b51036ca1a2890cf42c1c473502a1c374ed0d80fa0 +size 228 diff --git a/Skins/altruism alt/key-confirm.ogg b/Skins/altruism alt/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/key-delete.ogg b/Skins/altruism alt/key-delete.ogg new file mode 100644 index 00000000..4a576e27 --- /dev/null +++ b/Skins/altruism alt/key-delete.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b033f092c6e0922cf1ae0b34a17ed0f49d5f4b80db4b37e56a6ae12a7648c8b +size 6082 diff --git a/Skins/altruism alt/key-movement.ogg b/Skins/altruism alt/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/key-press-1.ogg b/Skins/altruism alt/key-press-1.ogg new file mode 100644 index 00000000..1e5c9cee --- /dev/null +++ b/Skins/altruism alt/key-press-1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2669d68403dc5c3f213c411a43ab32f3a0edb879c704bd5c37ef2d1fd9e9731e +size 6287 diff --git a/Skins/altruism alt/key-press-2.ogg b/Skins/altruism alt/key-press-2.ogg new file mode 100644 index 00000000..5626edd3 --- /dev/null +++ b/Skins/altruism alt/key-press-2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0e6bbb4d868637175e4e6c41b7aabe8e2c4f153517894cf1f9e2097095d57a +size 5892 diff --git a/Skins/altruism alt/key-press-3.ogg b/Skins/altruism alt/key-press-3.ogg new file mode 100644 index 00000000..28a8b4f0 --- /dev/null +++ b/Skins/altruism alt/key-press-3.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c4c446ed91e3b4d98c3974b786396002a1fe9b7e53a29405c105cb69a2bc72 +size 5938 diff --git a/Skins/altruism alt/key-press-4.ogg b/Skins/altruism alt/key-press-4.ogg new file mode 100644 index 00000000..a6270962 --- /dev/null +++ b/Skins/altruism alt/key-press-4.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba03089d29d0b247700428c2549abf5b9dd41bba9ef7766cc3252dd30a219811 +size 5888 diff --git a/Skins/altruism alt/match-confirm.ogg b/Skins/altruism alt/match-confirm.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/match-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/match-start.ogg b/Skins/altruism alt/match-start.ogg new file mode 100644 index 00000000..b6e0a23e --- /dev/null +++ b/Skins/altruism alt/match-start.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd0627ccd3fe4583674e0e049c6c3bebefcf052eb23f70987f6dfa5815f23bbc +size 10851 diff --git a/Skins/altruism alt/menu-back-0.png b/Skins/altruism alt/menu-back-0.png new file mode 100644 index 00000000..73ef1cd5 --- /dev/null +++ b/Skins/altruism alt/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149cfc6bbcbe8695ce790851b25d861c34bd07b0ba3f4c373367bd222647e50b +size 3483 diff --git a/Skins/altruism alt/menu-back-0@2x.png b/Skins/altruism alt/menu-back-0@2x.png new file mode 100644 index 00000000..9b5bdf7e --- /dev/null +++ b/Skins/altruism alt/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c4df0eaa60b4a6203b0be429c796b91cd309a9c2c9b74a8ee9b8d8e3a8b421 +size 4538 diff --git a/Skins/altruism alt/menu-back.png b/Skins/altruism alt/menu-back.png new file mode 100644 index 00000000..f19a3dfb --- /dev/null +++ b/Skins/altruism alt/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edef430998b0d676f2e852673a584ba0b7ade73f4791fade9f4a622da3b15291 +size 2949 diff --git a/Skins/altruism alt/menu-background.jpg b/Skins/altruism alt/menu-background.jpg new file mode 100644 index 00000000..afba9672 --- /dev/null +++ b/Skins/altruism alt/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84542f6be92e8962f65aba9e78fdc55568c9ba83bb37ba0447d8b1a79aafe2e7 +size 315733 diff --git a/Skins/altruism alt/menu-button-background.png b/Skins/altruism alt/menu-button-background.png new file mode 100644 index 00000000..826e86ac --- /dev/null +++ b/Skins/altruism alt/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b56e99fe904ddbb66a8ac42634111b2a3c1c058eb494897ce39945794077e49 +size 557 diff --git a/Skins/altruism alt/menuback.ogg b/Skins/altruism alt/menuback.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/menuclick.ogg b/Skins/altruism alt/menuclick.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/menuhit.ogg b/Skins/altruism alt/menuhit.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/mode-osu-small.png b/Skins/altruism alt/mode-osu-small.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/mode-osu.png b/Skins/altruism alt/mode-osu.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/multi-skipped.png b/Skins/altruism alt/multi-skipped.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/multi-skipped.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/nightcore-clap.wav b/Skins/altruism alt/nightcore-clap.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism alt/nightcore-clap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism alt/nightcore-finish.wav b/Skins/altruism alt/nightcore-finish.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism alt/nightcore-finish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism alt/nightcore-hat.wav b/Skins/altruism alt/nightcore-hat.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism alt/nightcore-hat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism alt/nightcore-kick.wav b/Skins/altruism alt/nightcore-kick.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism alt/nightcore-kick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism alt/normal-hitclap.ogg b/Skins/altruism alt/normal-hitclap.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism alt/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism alt/normal-hitfinish.ogg b/Skins/altruism alt/normal-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/altruism alt/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/altruism alt/normal-hitnormal.ogg b/Skins/altruism alt/normal-hitnormal.ogg new file mode 100644 index 00000000..3fa5a32c --- /dev/null +++ b/Skins/altruism alt/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee33f046980be641ededde57da23fe40cae5502725b3c3857a85880292edc231 +size 7350 diff --git a/Skins/altruism alt/normal-hitwhistle.ogg b/Skins/altruism alt/normal-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism alt/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism alt/normal-sliderslide.ogg b/Skins/altruism alt/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/normal-slidertick.ogg b/Skins/altruism alt/normal-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/normal-sliderwhistle.ogg b/Skins/altruism alt/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/particle300.png b/Skins/altruism alt/particle300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/particle300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/particle300@2x.png b/Skins/altruism alt/particle300@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/particle300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/pause-back-click.ogg b/Skins/altruism alt/pause-back-click.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/pause-back-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/pause-back-hover.ogg b/Skins/altruism alt/pause-back-hover.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/pause-back-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/pause-back.png b/Skins/altruism alt/pause-back.png new file mode 100644 index 00000000..44833851 --- /dev/null +++ b/Skins/altruism alt/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d34be900e0e7177d2290d47877a01353421aa7a384cb225e96bd6a448461ee +size 2389 diff --git a/Skins/altruism alt/pause-continue-click.ogg b/Skins/altruism alt/pause-continue-click.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/pause-continue-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/pause-continue-hover.ogg b/Skins/altruism alt/pause-continue-hover.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/pause-continue-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/pause-continue.png b/Skins/altruism alt/pause-continue.png new file mode 100644 index 00000000..d5e1e297 --- /dev/null +++ b/Skins/altruism alt/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa1f2f8b7a12fe58b6d705e95a6062c9872483cfb2cfe1f07bc818b371a9668 +size 3407 diff --git a/Skins/altruism alt/pause-loop.mp3 b/Skins/altruism alt/pause-loop.mp3 new file mode 100644 index 00000000..ae75952e --- /dev/null +++ b/Skins/altruism alt/pause-loop.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2cb9b3cfcee75120bea5a4c74c3bbdf9e428589b7879b4797fd3c06f3c85ab +size 741 diff --git a/Skins/altruism alt/pause-overlay.png b/Skins/altruism alt/pause-overlay.png new file mode 100644 index 00000000..34145a0f --- /dev/null +++ b/Skins/altruism alt/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74aa40bebb82ff86587cbf16cb28566aa806288e3cd29cef2193a1b49f3b6d03 +size 17117 diff --git a/Skins/altruism alt/pause-replay.png b/Skins/altruism alt/pause-replay.png new file mode 100644 index 00000000..77fd5fd2 --- /dev/null +++ b/Skins/altruism alt/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be60d3eb289db4e86f0bca82c8ddb52a6bac913bddfd0a953de8ac0e1e286d5b +size 2860 diff --git a/Skins/altruism alt/pause-retry-click.ogg b/Skins/altruism alt/pause-retry-click.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/pause-retry-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/pause-retry-hover.ogg b/Skins/altruism alt/pause-retry-hover.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism alt/pause-retry-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism alt/pause-retry.png b/Skins/altruism alt/pause-retry.png new file mode 100644 index 00000000..c0a022fc --- /dev/null +++ b/Skins/altruism alt/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf66c7455a52bcfdca0dcceafc00de7fc470091fa6f608e6c5df9e9dc9302a6 +size 2507 diff --git a/Skins/altruism alt/play-skip.png b/Skins/altruism alt/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/play-unranked.png b/Skins/altruism alt/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/play-unranked@2x.png b/Skins/altruism alt/play-unranked@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/rank-forum.png b/Skins/altruism alt/rank-forum.png new file mode 100644 index 00000000..732bf8c0 --- /dev/null +++ b/Skins/altruism alt/rank-forum.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcaed5e1801ce805590bd938b04f322b4942ed3d030f7216202e05721fbfbcb4 +size 639 diff --git a/Skins/altruism alt/rank-forum@2x.png b/Skins/altruism alt/rank-forum@2x.png new file mode 100644 index 00000000..f8064c20 --- /dev/null +++ b/Skins/altruism alt/rank-forum@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225f305fda2dcb6aa911fc06224da4a673c6d954a75779937dcc684dc0b854b3 +size 1023 diff --git a/Skins/altruism alt/ranking-a-small.png b/Skins/altruism alt/ranking-a-small.png new file mode 100644 index 00000000..b47b4f0e --- /dev/null +++ b/Skins/altruism alt/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1c52320c7a9104e769b683e9bab5749ae7b5f841d7f8d886e5e671882b43ba +size 839 diff --git a/Skins/altruism alt/ranking-a.png b/Skins/altruism alt/ranking-a.png new file mode 100644 index 00000000..91a1d228 --- /dev/null +++ b/Skins/altruism alt/ranking-a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6614b5453ff7be28a92a822bee2ffa6a93416d001bc95f5f3f5e24d25ca093 +size 117502 diff --git a/Skins/altruism alt/ranking-a@2x.png b/Skins/altruism alt/ranking-a@2x.png new file mode 100644 index 00000000..83cac922 --- /dev/null +++ b/Skins/altruism alt/ranking-a@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895944f7663c50dce237ee06b5fba3c5117de073c1bd6b90829c1c7bb82f5cc9 +size 370758 diff --git a/Skins/altruism alt/ranking-accuracy.png b/Skins/altruism alt/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/ranking-b-small.png b/Skins/altruism alt/ranking-b-small.png new file mode 100644 index 00000000..a623d18d --- /dev/null +++ b/Skins/altruism alt/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a4f47aead4f8fd82d6dca669655f646284ab68ff396f6d4dcde3aadf5117ab +size 881 diff --git a/Skins/altruism alt/ranking-b.png b/Skins/altruism alt/ranking-b.png new file mode 100644 index 00000000..9b7a3480 --- /dev/null +++ b/Skins/altruism alt/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39677194ed5a4d5e465ce3da3b6958f8393a64a4d03e825aa5bd5300c70aa054 +size 117335 diff --git a/Skins/altruism alt/ranking-b@2x.png b/Skins/altruism alt/ranking-b@2x.png new file mode 100644 index 00000000..938b0d56 --- /dev/null +++ b/Skins/altruism alt/ranking-b@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e242862e6c3a1df8dda84a152b13f199c3c9df0782773fd62fbcfe256376e2a3 +size 366535 diff --git a/Skins/altruism alt/ranking-c-small.png b/Skins/altruism alt/ranking-c-small.png new file mode 100644 index 00000000..cb0a1d69 --- /dev/null +++ b/Skins/altruism alt/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959b854654a42b32197ec251841aacb77ca1997a98900e002078cc3ae2934e2e +size 760 diff --git a/Skins/altruism alt/ranking-c.png b/Skins/altruism alt/ranking-c.png new file mode 100644 index 00000000..ace44d49 --- /dev/null +++ b/Skins/altruism alt/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e56ed108a44f8446d39335e374f4c928b1de1c4004fa2d165fd4c1c10ef0542b +size 117156 diff --git a/Skins/altruism alt/ranking-c@2x.png b/Skins/altruism alt/ranking-c@2x.png new file mode 100644 index 00000000..8012c133 --- /dev/null +++ b/Skins/altruism alt/ranking-c@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4adc5e13a512e46ed28788f8b96bde3b59b38347bbcdf994205e6a58a4181a1b +size 371138 diff --git a/Skins/altruism alt/ranking-d-small.png b/Skins/altruism alt/ranking-d-small.png new file mode 100644 index 00000000..88e6174d --- /dev/null +++ b/Skins/altruism alt/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7beb29c02c369f2b9bbc95574cbfee87899417f1336b49caac93c7fd9667e299 +size 854 diff --git a/Skins/altruism alt/ranking-d.png b/Skins/altruism alt/ranking-d.png new file mode 100644 index 00000000..e45e2b69 --- /dev/null +++ b/Skins/altruism alt/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85efce18b2bb999597b27e9be8e1119cbd37bd8a835c608d34be2ba8e7baf1d2 +size 116992 diff --git a/Skins/altruism alt/ranking-d@2x.png b/Skins/altruism alt/ranking-d@2x.png new file mode 100644 index 00000000..38836eb6 --- /dev/null +++ b/Skins/altruism alt/ranking-d@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468e62aa3cdd4cd0cd77932a3e3938f45b3a59f239ff917d7c2c6ce5f39b7554 +size 369010 diff --git a/Skins/altruism alt/ranking-graph.png b/Skins/altruism alt/ranking-graph.png new file mode 100644 index 00000000..7451eef8 --- /dev/null +++ b/Skins/altruism alt/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f71168c0b1ab5673af9872ad8860fbe7968eb444922b0952b773ce7a8e02bf7 +size 112 diff --git a/Skins/altruism alt/ranking-maxcombo.png b/Skins/altruism alt/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/ranking-panel.png b/Skins/altruism alt/ranking-panel.png new file mode 100644 index 00000000..e5361ac2 --- /dev/null +++ b/Skins/altruism alt/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145e954f242fad1d19bd0e84037417ad8dfd1e21970d1f63f71e6a37b7aac944 +size 130997 diff --git a/Skins/altruism alt/ranking-panel@2x.png b/Skins/altruism alt/ranking-panel@2x.png new file mode 100644 index 00000000..4ed073c9 --- /dev/null +++ b/Skins/altruism alt/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00621ef054546e4c0b19e57976d862eebdd1ab3d28aaf86e0e8e14ccb4b07393 +size 425241 diff --git a/Skins/altruism alt/ranking-perfect.png b/Skins/altruism alt/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/ranking-s-small.png b/Skins/altruism alt/ranking-s-small.png new file mode 100644 index 00000000..3553cae3 --- /dev/null +++ b/Skins/altruism alt/ranking-s-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121e0b38cd9c10a9d52153978c44e8e49422c955ff6cb7975d2a952a0941c01f +size 876 diff --git a/Skins/altruism alt/ranking-s.png b/Skins/altruism alt/ranking-s.png new file mode 100644 index 00000000..6595c312 --- /dev/null +++ b/Skins/altruism alt/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afac7cc367ddb180b19d5894243ec6af10805bfb8de42a594dabbef48d96a92 +size 117382 diff --git a/Skins/altruism alt/ranking-s@2x.png b/Skins/altruism alt/ranking-s@2x.png new file mode 100644 index 00000000..f905454a --- /dev/null +++ b/Skins/altruism alt/ranking-s@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720974aa82a1fbb77a12eab618ca4efd77db8885997ad32f212627b4ddd3edb2 +size 368998 diff --git a/Skins/altruism alt/ranking-sh-small.png b/Skins/altruism alt/ranking-sh-small.png new file mode 100644 index 00000000..3553cae3 --- /dev/null +++ b/Skins/altruism alt/ranking-sh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121e0b38cd9c10a9d52153978c44e8e49422c955ff6cb7975d2a952a0941c01f +size 876 diff --git a/Skins/altruism alt/ranking-sh.png b/Skins/altruism alt/ranking-sh.png new file mode 100644 index 00000000..6595c312 --- /dev/null +++ b/Skins/altruism alt/ranking-sh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afac7cc367ddb180b19d5894243ec6af10805bfb8de42a594dabbef48d96a92 +size 117382 diff --git a/Skins/altruism alt/ranking-sh@2x.png b/Skins/altruism alt/ranking-sh@2x.png new file mode 100644 index 00000000..f905454a --- /dev/null +++ b/Skins/altruism alt/ranking-sh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720974aa82a1fbb77a12eab618ca4efd77db8885997ad32f212627b4ddd3edb2 +size 368998 diff --git a/Skins/altruism alt/ranking-title.png b/Skins/altruism alt/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/ranking-winner.png b/Skins/altruism alt/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/ranking-x-small.png b/Skins/altruism alt/ranking-x-small.png new file mode 100644 index 00000000..140dd158 --- /dev/null +++ b/Skins/altruism alt/ranking-x-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42be7cb09212115cbd8e3e7cc3148881ad7d62df7b6e41c3b003575a0b4f87e2 +size 840 diff --git a/Skins/altruism alt/ranking-x.png b/Skins/altruism alt/ranking-x.png new file mode 100644 index 00000000..fc815467 --- /dev/null +++ b/Skins/altruism alt/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baad3bc36490086a23345ba5739950fe0ac3ccf14acc84406456b58185d9ef9 +size 117284 diff --git a/Skins/altruism alt/ranking-x@2x.png b/Skins/altruism alt/ranking-x@2x.png new file mode 100644 index 00000000..8e914aad --- /dev/null +++ b/Skins/altruism alt/ranking-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdef780644e1d7b287105c37339886dffe7b69496212c2e446602217869352be +size 373253 diff --git a/Skins/altruism alt/ranking-xh-small.png b/Skins/altruism alt/ranking-xh-small.png new file mode 100644 index 00000000..140dd158 --- /dev/null +++ b/Skins/altruism alt/ranking-xh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42be7cb09212115cbd8e3e7cc3148881ad7d62df7b6e41c3b003575a0b4f87e2 +size 840 diff --git a/Skins/altruism alt/ranking-xh.png b/Skins/altruism alt/ranking-xh.png new file mode 100644 index 00000000..fc815467 --- /dev/null +++ b/Skins/altruism alt/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baad3bc36490086a23345ba5739950fe0ac3ccf14acc84406456b58185d9ef9 +size 117284 diff --git a/Skins/altruism alt/ranking-xh@2x.png b/Skins/altruism alt/ranking-xh@2x.png new file mode 100644 index 00000000..8e914aad --- /dev/null +++ b/Skins/altruism alt/ranking-xh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdef780644e1d7b287105c37339886dffe7b69496212c2e446602217869352be +size 373253 diff --git a/Skins/altruism alt/ready.png b/Skins/altruism alt/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/readys.ogg b/Skins/altruism alt/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/reversearrow.png b/Skins/altruism alt/reversearrow.png new file mode 100644 index 00000000..57cb4fd7 --- /dev/null +++ b/Skins/altruism alt/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1cb5e12d195337c0e81fafe5a6470467114979ece243715621c964109e3b8f +size 10239 diff --git a/Skins/altruism alt/reversearrow@2x.png b/Skins/altruism alt/reversearrow@2x.png new file mode 100644 index 00000000..cb1944ba --- /dev/null +++ b/Skins/altruism alt/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741891903d3e124f2c40c25cf365adfb9f4ef61b287c16c9c053848abad5ca40 +size 18370 diff --git a/Skins/altruism alt/score-0.png b/Skins/altruism alt/score-0.png new file mode 100644 index 00000000..eea500b8 --- /dev/null +++ b/Skins/altruism alt/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd22f9f618525cffe9d37c845f9234b63d6e1e2be76c79138f36da3252c81920 +size 712 diff --git a/Skins/altruism alt/score-1.png b/Skins/altruism alt/score-1.png new file mode 100644 index 00000000..ede55977 --- /dev/null +++ b/Skins/altruism alt/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757791e028b305ed420efffd2296eb2ebd5221c7844b1443c398a194a4d7663d +size 400 diff --git a/Skins/altruism alt/score-2.png b/Skins/altruism alt/score-2.png new file mode 100644 index 00000000..2bfdffcc --- /dev/null +++ b/Skins/altruism alt/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f118fade0e802d823e0c0a8e3e7dd2692b8a720dcef4710c9dbd40e9724bd82 +size 631 diff --git a/Skins/altruism alt/score-3.png b/Skins/altruism alt/score-3.png new file mode 100644 index 00000000..7632976d --- /dev/null +++ b/Skins/altruism alt/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2a4b9911b97adc588e07edf720f05bfe019a95bff6a637c91f61afe1e14246 +size 690 diff --git a/Skins/altruism alt/score-4.png b/Skins/altruism alt/score-4.png new file mode 100644 index 00000000..71f446d8 --- /dev/null +++ b/Skins/altruism alt/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81513a061bac952645d1d30d5bcec9e5eba778c26aa23376b3cf4e3e5d23dd87 +size 616 diff --git a/Skins/altruism alt/score-5.png b/Skins/altruism alt/score-5.png new file mode 100644 index 00000000..f13b1875 --- /dev/null +++ b/Skins/altruism alt/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78ca02f4b372c686de1c91f2bd2a7d2e53bca15684e84710e5c93c459038530 +size 631 diff --git a/Skins/altruism alt/score-6.png b/Skins/altruism alt/score-6.png new file mode 100644 index 00000000..b6822bd6 --- /dev/null +++ b/Skins/altruism alt/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745b529db378a29d6f16de1fc476eb6d1e2e79b68adeb005e5ab4b94d85a72f8 +size 710 diff --git a/Skins/altruism alt/score-7.png b/Skins/altruism alt/score-7.png new file mode 100644 index 00000000..340614e6 --- /dev/null +++ b/Skins/altruism alt/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90aa2ae3dbe72eeedb7f017dc105ade051b8b08eb17db2f52a5542eb018aa165 +size 497 diff --git a/Skins/altruism alt/score-8.png b/Skins/altruism alt/score-8.png new file mode 100644 index 00000000..58dfe386 --- /dev/null +++ b/Skins/altruism alt/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5860010cf39c88a4688e737c0a5b46867dfe5dc0fda9e9591ba040efd3eeecc +size 740 diff --git a/Skins/altruism alt/score-9.png b/Skins/altruism alt/score-9.png new file mode 100644 index 00000000..eddd8b25 --- /dev/null +++ b/Skins/altruism alt/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f892389f4dac47d17a83f28daf23a8c4067d907cbd1427c851469fe8446d3e6 +size 734 diff --git a/Skins/altruism alt/score-comma.png b/Skins/altruism alt/score-comma.png new file mode 100644 index 00000000..7353580d --- /dev/null +++ b/Skins/altruism alt/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1974c753e3cc12467c37c329114dbef7b09c536fed4117eddb9e1bf8b1d7d1d9 +size 292 diff --git a/Skins/altruism alt/score-dot.png b/Skins/altruism alt/score-dot.png new file mode 100644 index 00000000..ad60f406 --- /dev/null +++ b/Skins/altruism alt/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26208ce695c759bb92b7fbb5d37b024aefbcab62ed4d524c92f891bcc5ab6b7a +size 221 diff --git a/Skins/altruism alt/score-percent.png b/Skins/altruism alt/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/score-x.png b/Skins/altruism alt/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/scorebar-bg .png b/Skins/altruism alt/scorebar-bg .png new file mode 100644 index 00000000..b83d53b5 --- /dev/null +++ b/Skins/altruism alt/scorebar-bg .png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8fdead3f0ee24a42dc266894cbbf468368f96ea9388e808001aa73ff139b7f +size 165 diff --git a/Skins/altruism alt/scorebar-bg.png b/Skins/altruism alt/scorebar-bg.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/scorebar-colour.png b/Skins/altruism alt/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/scoreentry-0.png b/Skins/altruism alt/scoreentry-0.png new file mode 100644 index 00000000..fe2e3de5 --- /dev/null +++ b/Skins/altruism alt/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f6e7a2754a538a6e340d1576e123aa6488c461107ae58f25c26388cc4b7161d +size 406 diff --git a/Skins/altruism alt/scoreentry-0@2x.png b/Skins/altruism alt/scoreentry-0@2x.png new file mode 100644 index 00000000..0fec94f6 --- /dev/null +++ b/Skins/altruism alt/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abd8e2825dc33798cd85d5bca08a89018d962044267a547d349678365a0ea87 +size 709 diff --git a/Skins/altruism alt/scoreentry-1.png b/Skins/altruism alt/scoreentry-1.png new file mode 100644 index 00000000..f422d37e --- /dev/null +++ b/Skins/altruism alt/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39067afc45270d7fa06e879c9e936c966e96b756a59881c7df6f61f82af975c4 +size 315 diff --git a/Skins/altruism alt/scoreentry-1@2x.png b/Skins/altruism alt/scoreentry-1@2x.png new file mode 100644 index 00000000..728fafac --- /dev/null +++ b/Skins/altruism alt/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a653392e3156b0fdefb3ea203f28b0c143db4b814578457dcce06a17e1c0b4f1 +size 417 diff --git a/Skins/altruism alt/scoreentry-2.png b/Skins/altruism alt/scoreentry-2.png new file mode 100644 index 00000000..5fb0c02a --- /dev/null +++ b/Skins/altruism alt/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286fb97b27846c59f2ac8e20b6ed3f9ab95e3f3a87ad3c4a3eff386958eaa040 +size 437 diff --git a/Skins/altruism alt/scoreentry-2@2x.png b/Skins/altruism alt/scoreentry-2@2x.png new file mode 100644 index 00000000..14e945d2 --- /dev/null +++ b/Skins/altruism alt/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa4a8aa1adb0700d10e11f3d2d5d6b9a9d7ebb698d3dd69c65d71a3408266e4 +size 637 diff --git a/Skins/altruism alt/scoreentry-3.png b/Skins/altruism alt/scoreentry-3.png new file mode 100644 index 00000000..945c8ddf --- /dev/null +++ b/Skins/altruism alt/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9fd5b7bfa95770be8c8680522bdcf114717fa00e26835e58a405e07094d615e +size 434 diff --git a/Skins/altruism alt/scoreentry-3@2x.png b/Skins/altruism alt/scoreentry-3@2x.png new file mode 100644 index 00000000..164f3394 --- /dev/null +++ b/Skins/altruism alt/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28cf26c8389612acf577446f101e42b719cc071bef0a36893e90f8eb31d42135 +size 645 diff --git a/Skins/altruism alt/scoreentry-4.png b/Skins/altruism alt/scoreentry-4.png new file mode 100644 index 00000000..efc3eaf8 --- /dev/null +++ b/Skins/altruism alt/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d9be0be62232a44d6bdededcc898edd9f4658236a17252c088b9456be13afd1 +size 419 diff --git a/Skins/altruism alt/scoreentry-4@2x.png b/Skins/altruism alt/scoreentry-4@2x.png new file mode 100644 index 00000000..821f7c9a --- /dev/null +++ b/Skins/altruism alt/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be5ddebc9d120265b05ae7aa86e1437f3aa4819e9f7968e27b712346e33693f +size 631 diff --git a/Skins/altruism alt/scoreentry-5.png b/Skins/altruism alt/scoreentry-5.png new file mode 100644 index 00000000..81f48bf2 --- /dev/null +++ b/Skins/altruism alt/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40da0a0ecfdc3de96682fb46f76733b7585bc3080a6d286155a85e5db4d4e4ad +size 444 diff --git a/Skins/altruism alt/scoreentry-5@2x.png b/Skins/altruism alt/scoreentry-5@2x.png new file mode 100644 index 00000000..33842760 --- /dev/null +++ b/Skins/altruism alt/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce9ebec6bce060e8fbdceec97c27bff2914da653f3d198bf0f6254296b7cc28 +size 615 diff --git a/Skins/altruism alt/scoreentry-6.png b/Skins/altruism alt/scoreentry-6.png new file mode 100644 index 00000000..27cd3bda --- /dev/null +++ b/Skins/altruism alt/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9633b265ade198f2a0026e20cd543de48862355bd406e08a919b4fc88fccf39 +size 430 diff --git a/Skins/altruism alt/scoreentry-6@2x.png b/Skins/altruism alt/scoreentry-6@2x.png new file mode 100644 index 00000000..feaa17de --- /dev/null +++ b/Skins/altruism alt/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:900fa0eb849530853591ecb408a16f112ff60e71f698d3220b70750d02bd585c +size 694 diff --git a/Skins/altruism alt/scoreentry-7.png b/Skins/altruism alt/scoreentry-7.png new file mode 100644 index 00000000..567f8f31 --- /dev/null +++ b/Skins/altruism alt/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3a5e4301e5fc638604a4fe587788bae55cfe4fe86ad6b1f93cbe60c08378fe +size 358 diff --git a/Skins/altruism alt/scoreentry-7@2x.png b/Skins/altruism alt/scoreentry-7@2x.png new file mode 100644 index 00000000..c4411741 --- /dev/null +++ b/Skins/altruism alt/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30dada965d79ffdf5fe78281fbb81694b052583e30aa3439ab252a564171ef9d +size 484 diff --git a/Skins/altruism alt/scoreentry-8.png b/Skins/altruism alt/scoreentry-8.png new file mode 100644 index 00000000..ce8cfa2a --- /dev/null +++ b/Skins/altruism alt/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e25b670d8ed2431e1edbd0c63b706b8a1daacd4688b1038f7686cd32bad02020 +size 456 diff --git a/Skins/altruism alt/scoreentry-8@2x.png b/Skins/altruism alt/scoreentry-8@2x.png new file mode 100644 index 00000000..718171f7 --- /dev/null +++ b/Skins/altruism alt/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fec789b9f4f149544f585d1d584a573a853a624a5da51bd5e72814923f80074 +size 726 diff --git a/Skins/altruism alt/scoreentry-9.png b/Skins/altruism alt/scoreentry-9.png new file mode 100644 index 00000000..8eccb80a --- /dev/null +++ b/Skins/altruism alt/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82ccc7e3c0104124360ca880026c98f4deffe41ff591dd0822f47b449ea7e391 +size 455 diff --git a/Skins/altruism alt/scoreentry-9@2x.png b/Skins/altruism alt/scoreentry-9@2x.png new file mode 100644 index 00000000..da0462b5 --- /dev/null +++ b/Skins/altruism alt/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a74fa9584d6c0d83f4e6e1a91d5cff46415806dd17104539cd3ebaf9d634f4 +size 701 diff --git a/Skins/altruism alt/scoreentry-comma.png b/Skins/altruism alt/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/altruism alt/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/altruism alt/scoreentry-dot.png b/Skins/altruism alt/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/altruism alt/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/altruism alt/scoreentry-percent.png b/Skins/altruism alt/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/scoreentry-x.png b/Skins/altruism alt/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/section-fail.png b/Skins/altruism alt/section-fail.png new file mode 100644 index 00000000..ef793864 --- /dev/null +++ b/Skins/altruism alt/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc30c9ac081a1116af47a194680530fcd7c0daffcfe85bdfb9ac13dc686ebb1 +size 6962 diff --git a/Skins/altruism alt/section-fail@2x.png b/Skins/altruism alt/section-fail@2x.png new file mode 100644 index 00000000..4b5828c7 --- /dev/null +++ b/Skins/altruism alt/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d228cc6ab5739780ac5317537b9034cc57f7fa33e4b7b09fab42999059ab39 +size 15221 diff --git a/Skins/altruism alt/section-pass.png b/Skins/altruism alt/section-pass.png new file mode 100644 index 00000000..619638ce --- /dev/null +++ b/Skins/altruism alt/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a23525505dc13b5fbd3dbbd6824d9907951bda221b0e8230d88f49c5073d04 +size 7364 diff --git a/Skins/altruism alt/section-pass@2x.png b/Skins/altruism alt/section-pass@2x.png new file mode 100644 index 00000000..4d9af5dd --- /dev/null +++ b/Skins/altruism alt/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9969b7cca5d4e59907418954af3984ab6d2e5256293f2a10fa5fb79701e7a37 +size 15553 diff --git a/Skins/altruism alt/sectionfail.ogg b/Skins/altruism alt/sectionfail.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/altruism alt/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/altruism alt/sectionpass.ogg b/Skins/altruism alt/sectionpass.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/altruism alt/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/altruism alt/seeya.ogg b/Skins/altruism alt/seeya.ogg new file mode 100644 index 00000000..689c748d --- /dev/null +++ b/Skins/altruism alt/seeya.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe9635edaafbaf7734f090129d564f5cd8e08ac0ef787762e28cd31ffc060de2 +size 19878 diff --git a/Skins/altruism alt/selection-mod-autoplay.png b/Skins/altruism alt/selection-mod-autoplay.png new file mode 100644 index 00000000..66eb0970 --- /dev/null +++ b/Skins/altruism alt/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f55e7fbe6342fb3fe0c4975400c8bafaef0d5bc4ec4810757973504e3fbec7 +size 907 diff --git a/Skins/altruism alt/selection-mod-cinema.png b/Skins/altruism alt/selection-mod-cinema.png new file mode 100644 index 00000000..f0816a48 --- /dev/null +++ b/Skins/altruism alt/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91830c9ddddd907fb1bb8cc8b939fbff9740a640b7b4d665dedf5a9e2395d0ba +size 1026 diff --git a/Skins/altruism alt/selection-mod-doubletime.png b/Skins/altruism alt/selection-mod-doubletime.png new file mode 100644 index 00000000..75609a78 --- /dev/null +++ b/Skins/altruism alt/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48dd1c4a2fb3ea30775819d02504ff0c443302b528cc899568570f6caf0c8126 +size 932 diff --git a/Skins/altruism alt/selection-mod-easy.png b/Skins/altruism alt/selection-mod-easy.png new file mode 100644 index 00000000..2ba6a7fd --- /dev/null +++ b/Skins/altruism alt/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626e5fac017af894694e055f1ac018a0c0609a368054f81e9ae76f3e2af7d0c4 +size 886 diff --git a/Skins/altruism alt/selection-mod-flashlight.png b/Skins/altruism alt/selection-mod-flashlight.png new file mode 100644 index 00000000..4e6e7136 --- /dev/null +++ b/Skins/altruism alt/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8c569164ed3dc1e111332efcc9a116c46a4ff323932b157dcacb1dd2818b05 +size 756 diff --git a/Skins/altruism alt/selection-mod-halftime.png b/Skins/altruism alt/selection-mod-halftime.png new file mode 100644 index 00000000..f8c68765 --- /dev/null +++ b/Skins/altruism alt/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dfe765a4540dfb1f6d097f37b0ddba9496fb7b800e7a355dd8b7a2f2b08a5a6 +size 945 diff --git a/Skins/altruism alt/selection-mod-hardrock.png b/Skins/altruism alt/selection-mod-hardrock.png new file mode 100644 index 00000000..d30f9980 --- /dev/null +++ b/Skins/altruism alt/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd551d224168ab901b1026a0437bdce49194f2b42908ae5be78cc0e60ffdc48d +size 867 diff --git a/Skins/altruism alt/selection-mod-hidden.png b/Skins/altruism alt/selection-mod-hidden.png new file mode 100644 index 00000000..77517e95 --- /dev/null +++ b/Skins/altruism alt/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d614bfe82550b4008daef82c8ecccacb06aa9dd1b15b7c9248dafb64bd3171bc +size 1054 diff --git a/Skins/altruism alt/selection-mod-nightcore.png b/Skins/altruism alt/selection-mod-nightcore.png new file mode 100644 index 00000000..64aa0b7e --- /dev/null +++ b/Skins/altruism alt/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f18ce7052024dbe3bbbffd0b74aded53f8cbd1bf8f94acbd59ce78d6247076 +size 921 diff --git a/Skins/altruism alt/selection-mod-nofail.png b/Skins/altruism alt/selection-mod-nofail.png new file mode 100644 index 00000000..7b2aee22 --- /dev/null +++ b/Skins/altruism alt/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a04c708aff9d8c95a05a717189b0ff782a2815b337d476054225e4214100d98 +size 923 diff --git a/Skins/altruism alt/selection-mod-perfect.png b/Skins/altruism alt/selection-mod-perfect.png new file mode 100644 index 00000000..731019ec --- /dev/null +++ b/Skins/altruism alt/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840ba6ea512b0230566bb06e071993783526e4975cd61f0f6a1175cb6642fb16 +size 927 diff --git a/Skins/altruism alt/selection-mod-relax.png b/Skins/altruism alt/selection-mod-relax.png new file mode 100644 index 00000000..6a192ca8 --- /dev/null +++ b/Skins/altruism alt/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d179309a41572fb15a4dd6682fd97c5bb661d1a7f36f04d3d4338b1907b3979c +size 647 diff --git a/Skins/altruism alt/selection-mod-relax2.png b/Skins/altruism alt/selection-mod-relax2.png new file mode 100644 index 00000000..f899c3c0 --- /dev/null +++ b/Skins/altruism alt/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e075ca7fff8e6f681923655c36fb85941f92432232e4a8598f08c445e1855521 +size 963 diff --git a/Skins/altruism alt/selection-mod-scorev2.png b/Skins/altruism alt/selection-mod-scorev2.png new file mode 100644 index 00000000..29062c4a --- /dev/null +++ b/Skins/altruism alt/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197c3500ab925d4414a79954cd0d9db767694a74541b153abc98a23a247f817e +size 1000 diff --git a/Skins/altruism alt/selection-mod-spunout.png b/Skins/altruism alt/selection-mod-spunout.png new file mode 100644 index 00000000..e3a2a19f --- /dev/null +++ b/Skins/altruism alt/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:727c9a7b93990d69f64c33d274453a92f4f2a0666d51ec0f1d7ac0b2d666d558 +size 929 diff --git a/Skins/altruism alt/selection-mod-suddendeath.png b/Skins/altruism alt/selection-mod-suddendeath.png new file mode 100644 index 00000000..10d6c48d --- /dev/null +++ b/Skins/altruism alt/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db479f5e064564c6c09c08972d980bed0af112d5664bbfba7eb5652b967d6075 +size 979 diff --git a/Skins/altruism alt/selection-mod-target.png b/Skins/altruism alt/selection-mod-target.png new file mode 100644 index 00000000..613ba308 --- /dev/null +++ b/Skins/altruism alt/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf71ee04d5010cfd16c580803d875cac8c68859dfd929ac4686a3394088566c +size 906 diff --git a/Skins/altruism alt/selection-mode-over.png b/Skins/altruism alt/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/selection-mode.png b/Skins/altruism alt/selection-mode.png new file mode 100644 index 00000000..342c37ff --- /dev/null +++ b/Skins/altruism alt/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d12c96497ee242ec4a34337970bc52e406c9eb9fdb5a8ceeaa40ce92579784 +size 76341 diff --git a/Skins/altruism alt/selection-mode@2x.png b/Skins/altruism alt/selection-mode@2x.png new file mode 100644 index 00000000..f641a7f0 --- /dev/null +++ b/Skins/altruism alt/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eeebf0a7bdfa370e1f1121e180f2ffb16d9599773022114429d4671cd95668f +size 256981 diff --git a/Skins/altruism alt/selection-mods-over.png b/Skins/altruism alt/selection-mods-over.png new file mode 100644 index 00000000..d44f2980 --- /dev/null +++ b/Skins/altruism alt/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101cd54a76e172626d3551f4048b166b688e36b8a048b3051146841c09237c58 +size 1586 diff --git a/Skins/altruism alt/selection-mods.png b/Skins/altruism alt/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/selection-options-over.png b/Skins/altruism alt/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/selection-options.png b/Skins/altruism alt/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/selection-random-over.png b/Skins/altruism alt/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/selection-random.png b/Skins/altruism alt/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/selection-tab.png b/Skins/altruism alt/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/altruism alt/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/altruism alt/shutter.ogg b/Skins/altruism alt/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/skin.ini b/Skins/altruism alt/skin.ini new file mode 100644 index 00000000..30d66279 --- /dev/null +++ b/Skins/altruism alt/skin.ini @@ -0,0 +1,31 @@ +// Ini parser v2025.5.11 // https://osuck.link/skin.ini + + +[General] + Name: altruism alt + Author: altruism + Version: 2.7 + + HitCircleOverlayAboveNumber: 1 + + CursorExpand: 0 + CursorRotate: 0 + CursorTrailRotate: 0 + + +[Colours] + Combo1: 217, 221, 255 + Combo2: 171, 185, 255 + + SliderBorder: 85,85,85 + SliderTrackOverride: 0,0,0 + + SongSelectActiveText: 255,255,255 + + +[Fonts] + HitCircleOverlap: 14 + + ScoreOverlap: 7 + + ComboPrefix: combo diff --git a/Skins/altruism alt/sliderb.png b/Skins/altruism alt/sliderb.png new file mode 100644 index 00000000..c4807191 --- /dev/null +++ b/Skins/altruism alt/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991fbd871dd5c2fc3749006f779cf35d3e71dd5bf1cf00482e1acffac55aace7 +size 2672 diff --git a/Skins/altruism alt/sliderb@2x.png b/Skins/altruism alt/sliderb@2x.png new file mode 100644 index 00000000..7d23c734 --- /dev/null +++ b/Skins/altruism alt/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d628b7a451a184ceea89e7c8854e410d3f84daad6e71ef3436c1c9cb494adf4d +size 4743 diff --git a/Skins/altruism alt/sliderendcircle.png b/Skins/altruism alt/sliderendcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/sliderendmiss.png b/Skins/altruism alt/sliderendmiss.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism alt/sliderendmiss.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism alt/sliderfollowcircle.png b/Skins/altruism alt/sliderfollowcircle.png new file mode 100644 index 00000000..780651a6 --- /dev/null +++ b/Skins/altruism alt/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b65a9f82f1b87ea9a3b8549120936cd70fb402fc04428fa7ab0171d414b38f +size 11401 diff --git a/Skins/altruism alt/sliderfollowcircle@2x.png b/Skins/altruism alt/sliderfollowcircle@2x.png new file mode 100644 index 00000000..678be6aa --- /dev/null +++ b/Skins/altruism alt/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfc14d30e58b2052367cd88e5e418997b760273ebc4806c6a4beeb9de13dc78 +size 24883 diff --git a/Skins/altruism alt/sliderscorepoint.png b/Skins/altruism alt/sliderscorepoint.png new file mode 100644 index 00000000..07c17d27 --- /dev/null +++ b/Skins/altruism alt/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c32e348b2eccd9880def0b29d6712ec5b32da318191cdf16e4e76e350e2af55 +size 2991 diff --git a/Skins/altruism alt/sliderscorepoint@2x.png b/Skins/altruism alt/sliderscorepoint@2x.png new file mode 100644 index 00000000..f01d68bd --- /dev/null +++ b/Skins/altruism alt/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9af2743892d82308d852f4f7b1ee92d4d03c79b4c1ebf8dbc7a6835327647e +size 3357 diff --git a/Skins/altruism alt/soft-hitclap.ogg b/Skins/altruism alt/soft-hitclap.ogg new file mode 100644 index 00000000..4cd5d36d --- /dev/null +++ b/Skins/altruism alt/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b360cdd81df75dc2461a7533b816bf20fb105859d1da420f2108d2df5af7bce +size 4742 diff --git a/Skins/altruism alt/soft-hitfinish.ogg b/Skins/altruism alt/soft-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/altruism alt/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/altruism alt/soft-hitnormal.ogg b/Skins/altruism alt/soft-hitnormal.ogg new file mode 100644 index 00000000..cc50046f --- /dev/null +++ b/Skins/altruism alt/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05d8bb09489396dafe1141f696f90708394be786ec72cfabaa32566cec0ac725 +size 7377 diff --git a/Skins/altruism alt/soft-hitwhistle.ogg b/Skins/altruism alt/soft-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism alt/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism alt/soft-sliderslide.ogg b/Skins/altruism alt/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/soft-slidertick.ogg b/Skins/altruism alt/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/soft-sliderwhistle.ogg b/Skins/altruism alt/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/songselect-bottom.png b/Skins/altruism alt/songselect-bottom.png new file mode 100644 index 00000000..4fca2e87 --- /dev/null +++ b/Skins/altruism alt/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91dcef2f26836b84126d69f9e6efdf21b91d659e14889a4eb8a1bf89e1e17a15 +size 9027 diff --git a/Skins/altruism alt/songselect-bottom@2x.png b/Skins/altruism alt/songselect-bottom@2x.png new file mode 100644 index 00000000..b399ac31 --- /dev/null +++ b/Skins/altruism alt/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868ae96c60f618db4f4e9939dc5fc748706a4d507ec49930cc3eab2bfd85d84b +size 10189 diff --git a/Skins/altruism alt/songselect-top.png b/Skins/altruism alt/songselect-top.png new file mode 100644 index 00000000..1ec93bc6 --- /dev/null +++ b/Skins/altruism alt/songselect-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1bb83299f8d6fe64c87f91f0aeb55b0d62c896c3957e5b9ef4a6695c561e07 +size 8024 diff --git a/Skins/altruism alt/songselect-top@2x.png b/Skins/altruism alt/songselect-top@2x.png new file mode 100644 index 00000000..3de066d8 --- /dev/null +++ b/Skins/altruism alt/songselect-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3c973906f5fdd769e71bbe37f75272b39483c50bb43f1ccad4b8ddd9d4eefd +size 14076 diff --git a/Skins/altruism alt/spinner-approachcircle.png b/Skins/altruism alt/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/spinner-background.png b/Skins/altruism alt/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/spinner-circle.png b/Skins/altruism alt/spinner-circle.png new file mode 100644 index 00000000..b4bc17a1 --- /dev/null +++ b/Skins/altruism alt/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ef158f77aab871f451fddec9735372128a837c0dad01604a1037d875c87205 +size 21882 diff --git a/Skins/altruism alt/spinner-circle@2x.png b/Skins/altruism alt/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/altruism alt/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/altruism alt/spinner-clear.png b/Skins/altruism alt/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/spinner-rpm.png b/Skins/altruism alt/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/spinner-spin.png b/Skins/altruism alt/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/spinnerbonus.ogg b/Skins/altruism alt/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/spinnerspin.ogg b/Skins/altruism alt/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism alt/star.png b/Skins/altruism alt/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism alt/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism alt/star2.png b/Skins/altruism alt/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism alt/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism alt/welcome.ogg b/Skins/altruism alt/welcome.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/altruism alt/welcome.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/altruism/applause.ogg b/Skins/altruism/applause.ogg new file mode 100644 index 00000000..215b5dc7 --- /dev/null +++ b/Skins/altruism/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99676d45d74779ad732614f17da9b066c329186a4fd1d3b76691961a473b8e66 +size 261990 diff --git a/Skins/altruism/approachcircle.png b/Skins/altruism/approachcircle.png new file mode 100644 index 00000000..e2e8feb9 --- /dev/null +++ b/Skins/altruism/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cec20489c3b244fab672f841f1d1bfe2bf075b8aa9a1a4495df1d9f5b62a36 +size 16112 diff --git a/Skins/altruism/approachcircle@2x.png b/Skins/altruism/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/altruism/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/altruism/arrow-warning.png b/Skins/altruism/arrow-warning.png new file mode 100644 index 00000000..ee4f4590 --- /dev/null +++ b/Skins/altruism/arrow-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f913b3085921e777caaf99729862f8d3030be75f43f405dbfd7cbb6f7bf15cc +size 920 diff --git a/Skins/altruism/button-left.png b/Skins/altruism/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/button-middle.png b/Skins/altruism/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/button-right.png b/Skins/altruism/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/check-off.ogg b/Skins/altruism/check-off.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/check-off.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/check-on.ogg b/Skins/altruism/check-on.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/check-on.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/click-short-confirm.ogg b/Skins/altruism/click-short-confirm.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/click-short-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/click-short.ogg b/Skins/altruism/click-short.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/click-short.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/combo-0.png b/Skins/altruism/combo-0.png new file mode 100644 index 00000000..0479f6b3 --- /dev/null +++ b/Skins/altruism/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d10a590366f37afbc849e0bedcff84579ef43259c2b0c2c69ea184c3ce6ea07 +size 1027 diff --git a/Skins/altruism/combo-0@2x.png b/Skins/altruism/combo-0@2x.png new file mode 100644 index 00000000..3766ba1d --- /dev/null +++ b/Skins/altruism/combo-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a96e8f3658be0ee47af859290b6876b225a4d3ef5bbe7c4f575e08ab619dcb +size 1615 diff --git a/Skins/altruism/combo-1.png b/Skins/altruism/combo-1.png new file mode 100644 index 00000000..43558523 --- /dev/null +++ b/Skins/altruism/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6b598ac7b438e780c56bb38beead542c8b8754b3695c02481f08cf6f35b3c6 +size 624 diff --git a/Skins/altruism/combo-1@2x.png b/Skins/altruism/combo-1@2x.png new file mode 100644 index 00000000..9bcee634 --- /dev/null +++ b/Skins/altruism/combo-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553f9a89072578f7396637dc4cee4158ec08c2b0070834026bc9f63b1e1e5836 +size 1057 diff --git a/Skins/altruism/combo-2.png b/Skins/altruism/combo-2.png new file mode 100644 index 00000000..7fe9fc50 --- /dev/null +++ b/Skins/altruism/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6cd0660fb7020f1cd43938b5922601003d99166850c33c5c197aee039f0251 +size 952 diff --git a/Skins/altruism/combo-2@2x.png b/Skins/altruism/combo-2@2x.png new file mode 100644 index 00000000..ad414b95 --- /dev/null +++ b/Skins/altruism/combo-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72e6e897b6cad78235b432e221dfc7ab9f359ddd6702419162fb96afc9754cd +size 1412 diff --git a/Skins/altruism/combo-3.png b/Skins/altruism/combo-3.png new file mode 100644 index 00000000..f399e685 --- /dev/null +++ b/Skins/altruism/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360575ed0483abc255c308dc3c9eb31b0d15d9ef64a1a7fb011d29d16d09b28f +size 1006 diff --git a/Skins/altruism/combo-3@2x.png b/Skins/altruism/combo-3@2x.png new file mode 100644 index 00000000..dc931e63 --- /dev/null +++ b/Skins/altruism/combo-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e51317c911416d3774ca76c2ad53a34e556dbb38c53bbf0dca9c4eba4305f9 +size 1420 diff --git a/Skins/altruism/combo-4.png b/Skins/altruism/combo-4.png new file mode 100644 index 00000000..cb4dc7b4 --- /dev/null +++ b/Skins/altruism/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fcb910d395dc8908a472973efe76885765d729f042c2e064e7003702742b56 +size 959 diff --git a/Skins/altruism/combo-4@2x.png b/Skins/altruism/combo-4@2x.png new file mode 100644 index 00000000..b43d5350 --- /dev/null +++ b/Skins/altruism/combo-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40b0a9d7f86040f6d3e8ab763ed4d41426aea521e1f21fefbe2f6f47200d650 +size 1509 diff --git a/Skins/altruism/combo-5.png b/Skins/altruism/combo-5.png new file mode 100644 index 00000000..63f0f546 --- /dev/null +++ b/Skins/altruism/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa4ac25aaa868b871d912a3bbf913879c739a11609611802d9b1b08cca7a4d3 +size 1020 diff --git a/Skins/altruism/combo-5@2x.png b/Skins/altruism/combo-5@2x.png new file mode 100644 index 00000000..175e2df4 --- /dev/null +++ b/Skins/altruism/combo-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eddcbea08a24729e7db798db654dd4e48cf15aca0c73e7ffe5878f4189f6e802 +size 1427 diff --git a/Skins/altruism/combo-6.png b/Skins/altruism/combo-6.png new file mode 100644 index 00000000..9f669b00 --- /dev/null +++ b/Skins/altruism/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64853fe5ca93196b16171fefad75cd318d895b80b3c173c69defb2060075c7ac +size 1046 diff --git a/Skins/altruism/combo-6@2x.png b/Skins/altruism/combo-6@2x.png new file mode 100644 index 00000000..6b7dd0ed --- /dev/null +++ b/Skins/altruism/combo-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e840447f20d3cf161402214a3211d749408ac2746170faf8832a7b2ff27e96fc +size 1538 diff --git a/Skins/altruism/combo-7.png b/Skins/altruism/combo-7.png new file mode 100644 index 00000000..7e6c361e --- /dev/null +++ b/Skins/altruism/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62b6ea0bfb0a6ef950ac71d40deb01023fa596c91b3144022cd513d7fa39be6 +size 758 diff --git a/Skins/altruism/combo-7@2x.png b/Skins/altruism/combo-7@2x.png new file mode 100644 index 00000000..aaa31bd4 --- /dev/null +++ b/Skins/altruism/combo-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b66e960891215435f98dd81471f920db0ca267745c1b75dec2415babceab6c +size 1248 diff --git a/Skins/altruism/combo-8.png b/Skins/altruism/combo-8.png new file mode 100644 index 00000000..07885c64 --- /dev/null +++ b/Skins/altruism/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f53a69bed20172d2941fac24281c11678039a1906041254ed72c2593158ef42 +size 1073 diff --git a/Skins/altruism/combo-8@2x.png b/Skins/altruism/combo-8@2x.png new file mode 100644 index 00000000..238122a3 --- /dev/null +++ b/Skins/altruism/combo-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4a2799f9acddffb1530d041a06c9f1f264fe4f5c3a8b40054411829aac3a66 +size 1573 diff --git a/Skins/altruism/combo-9.png b/Skins/altruism/combo-9.png new file mode 100644 index 00000000..031f1a15 --- /dev/null +++ b/Skins/altruism/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57256cc494c919f8c975c5a0a2e0d4681652af237ab2a907b7d97c3e30a766e4 +size 1035 diff --git a/Skins/altruism/combo-9@2x.png b/Skins/altruism/combo-9@2x.png new file mode 100644 index 00000000..2e0ac3ea --- /dev/null +++ b/Skins/altruism/combo-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0694e781554f6f15c788823b003518c7197fe9a6d4596173a17ea2111cca5887 +size 1563 diff --git a/Skins/altruism/count.ogg b/Skins/altruism/count.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/count1.png b/Skins/altruism/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/count2.png b/Skins/altruism/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/count3.png b/Skins/altruism/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/cursor-smoke.png b/Skins/altruism/cursor-smoke.png new file mode 100644 index 00000000..ba477ce4 --- /dev/null +++ b/Skins/altruism/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86376579c39bd1112cc571a58cfa2f2f5073b415e01ecfc480ce84f77c2db75c +size 340 diff --git a/Skins/altruism/cursor.png b/Skins/altruism/cursor.png new file mode 100644 index 00000000..2f2b5c8b --- /dev/null +++ b/Skins/altruism/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86890264601ca4fb743aeb0764b1582a1056a86ce24bbea1c72acda7457c3a0 +size 8883 diff --git a/Skins/altruism/cursortrail.png b/Skins/altruism/cursortrail.png new file mode 100644 index 00000000..0b75725e --- /dev/null +++ b/Skins/altruism/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53627af6edc5dc9a4b5005ef87202a252891c891aaf009c77b8562dda4cb01de +size 2229 diff --git a/Skins/altruism/default-0.png b/Skins/altruism/default-0.png new file mode 100644 index 00000000..0b52d8e4 --- /dev/null +++ b/Skins/altruism/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1a6ad4b6fb347f91995734805f2f73755946a60eceabca83e24019ed0101cd +size 1696 diff --git a/Skins/altruism/default-1.png b/Skins/altruism/default-1.png new file mode 100644 index 00000000..0c34c5eb --- /dev/null +++ b/Skins/altruism/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97787cc5999dd8422ae9c8258b3229afd842a9645bc58c70943b7421064cfea +size 750 diff --git a/Skins/altruism/default-2.png b/Skins/altruism/default-2.png new file mode 100644 index 00000000..bfc7396c --- /dev/null +++ b/Skins/altruism/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c0dc1a0774bf500ba0913035899bb776ad4bd02c2597b6d17095f95bc63b35 +size 1619 diff --git a/Skins/altruism/default-3.png b/Skins/altruism/default-3.png new file mode 100644 index 00000000..80b26e7d --- /dev/null +++ b/Skins/altruism/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e11a260579a75824361117aa5a2087c6ed3b183bef99a868e1d5feb7c243cff +size 1646 diff --git a/Skins/altruism/default-4.png b/Skins/altruism/default-4.png new file mode 100644 index 00000000..a93775bf --- /dev/null +++ b/Skins/altruism/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2d01068ce7180d3fd41b1a9784ed3a821d85e5d5f0736a141b8dd6f0dfc905 +size 1400 diff --git a/Skins/altruism/default-5.png b/Skins/altruism/default-5.png new file mode 100644 index 00000000..dba00c67 --- /dev/null +++ b/Skins/altruism/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc498965bcb8a60a704ece25974abfd07eef23e56893dbc607ba157b306c68ce +size 1491 diff --git a/Skins/altruism/default-6.png b/Skins/altruism/default-6.png new file mode 100644 index 00000000..ea8ecb26 --- /dev/null +++ b/Skins/altruism/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827c576015d645c28895cb965a13f788e8911d1481a1d54600ce9c91f0e5dd55 +size 1558 diff --git a/Skins/altruism/default-7.png b/Skins/altruism/default-7.png new file mode 100644 index 00000000..49d0fdb0 --- /dev/null +++ b/Skins/altruism/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43eeba1d5e7c3a9907a25ba0227867aee97d68cf2c2bc485c28204c5f51cf57e +size 1267 diff --git a/Skins/altruism/default-8.png b/Skins/altruism/default-8.png new file mode 100644 index 00000000..759af0fd --- /dev/null +++ b/Skins/altruism/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa073f389e145ff2459d55a147a2c06685431d3d36b2c2ae0d462190ebb981a +size 1522 diff --git a/Skins/altruism/default-9.png b/Skins/altruism/default-9.png new file mode 100644 index 00000000..d61bfb84 --- /dev/null +++ b/Skins/altruism/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c278c6989101f2a8ca9754747ddb98a9469410d1482514602f854d56a8de9b +size 1544 diff --git a/Skins/altruism/drum-hitclap.ogg b/Skins/altruism/drum-hitclap.ogg new file mode 100644 index 00000000..69fa3fd0 --- /dev/null +++ b/Skins/altruism/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933861cb92d0da79e6c64de23425e64da86bcb5ad5b98bee0b2a6436bbdbb86f +size 4614 diff --git a/Skins/altruism/drum-hitfinish.ogg b/Skins/altruism/drum-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/altruism/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/altruism/drum-hitnormal.ogg b/Skins/altruism/drum-hitnormal.ogg new file mode 100644 index 00000000..7221dc34 --- /dev/null +++ b/Skins/altruism/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0339f2aae06df054dc1b1bbda0168f46e34426c00da3f4d0adc986fede7b0227 +size 7506 diff --git a/Skins/altruism/drum-hitwhistle.ogg b/Skins/altruism/drum-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism/drum-sliderslide.ogg b/Skins/altruism/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/drum-slidertick.ogg b/Skins/altruism/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/drum-sliderwhistle.ogg b/Skins/altruism/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/fail-background.png b/Skins/altruism/fail-background.png new file mode 100644 index 00000000..eda61e98 --- /dev/null +++ b/Skins/altruism/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6808a73400c459580f390c5fd9ecb2ed502d4e80c485cec85a0c69644ffe482 +size 46386 diff --git a/Skins/altruism/failsound.ogg b/Skins/altruism/failsound.ogg new file mode 100644 index 00000000..4286abbd --- /dev/null +++ b/Skins/altruism/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017a305fefc72335befe08bd94cd189761c2b4be9a516d9fa1e5154df9255398 +size 174250 diff --git a/Skins/altruism/followpoint-0.png b/Skins/altruism/followpoint-0.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-1.png b/Skins/altruism/followpoint-1.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-10.png b/Skins/altruism/followpoint-10.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-11.png b/Skins/altruism/followpoint-11.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-12.png b/Skins/altruism/followpoint-12.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-13.png b/Skins/altruism/followpoint-13.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-14.png b/Skins/altruism/followpoint-14.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-15.png b/Skins/altruism/followpoint-15.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-16.png b/Skins/altruism/followpoint-16.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-17.png b/Skins/altruism/followpoint-17.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-18.png b/Skins/altruism/followpoint-18.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-19.png b/Skins/altruism/followpoint-19.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-2.png b/Skins/altruism/followpoint-2.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-20.png b/Skins/altruism/followpoint-20.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-21.png b/Skins/altruism/followpoint-21.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-22.png b/Skins/altruism/followpoint-22.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-23.png b/Skins/altruism/followpoint-23.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-24.png b/Skins/altruism/followpoint-24.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-25.png b/Skins/altruism/followpoint-25.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-26.png b/Skins/altruism/followpoint-26.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-27.png b/Skins/altruism/followpoint-27.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-28.png b/Skins/altruism/followpoint-28.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-29.png b/Skins/altruism/followpoint-29.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-3.png b/Skins/altruism/followpoint-3.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-30.png b/Skins/altruism/followpoint-30.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-31.png b/Skins/altruism/followpoint-31.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-32.png b/Skins/altruism/followpoint-32.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-33.png b/Skins/altruism/followpoint-33.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-34.png b/Skins/altruism/followpoint-34.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-35.png b/Skins/altruism/followpoint-35.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-36.png b/Skins/altruism/followpoint-36.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-37.png b/Skins/altruism/followpoint-37.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-38.png b/Skins/altruism/followpoint-38.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-39.png b/Skins/altruism/followpoint-39.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-4.png b/Skins/altruism/followpoint-4.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-40.png b/Skins/altruism/followpoint-40.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-41.png b/Skins/altruism/followpoint-41.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-42.png b/Skins/altruism/followpoint-42.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-43.png b/Skins/altruism/followpoint-43.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-44.png b/Skins/altruism/followpoint-44.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-45.png b/Skins/altruism/followpoint-45.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-46.png b/Skins/altruism/followpoint-46.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-47.png b/Skins/altruism/followpoint-47.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-48.png b/Skins/altruism/followpoint-48.png new file mode 100644 index 00000000..c8fca11a --- /dev/null +++ b/Skins/altruism/followpoint-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21762c07f2aaa40e824dbc910ae47de2718cf8dcc8045f439035ed43a02f6e73 +size 422 diff --git a/Skins/altruism/followpoint-49.png b/Skins/altruism/followpoint-49.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-5.png b/Skins/altruism/followpoint-5.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-50.png b/Skins/altruism/followpoint-50.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-51.png b/Skins/altruism/followpoint-51.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-52.png b/Skins/altruism/followpoint-52.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-53.png b/Skins/altruism/followpoint-53.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-54.png b/Skins/altruism/followpoint-54.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-55.png b/Skins/altruism/followpoint-55.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-56.png b/Skins/altruism/followpoint-56.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-57.png b/Skins/altruism/followpoint-57.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-58.png b/Skins/altruism/followpoint-58.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-59.png b/Skins/altruism/followpoint-59.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-6.png b/Skins/altruism/followpoint-6.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-60.png b/Skins/altruism/followpoint-60.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-7.png b/Skins/altruism/followpoint-7.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-8.png b/Skins/altruism/followpoint-8.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/followpoint-9.png b/Skins/altruism/followpoint-9.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/go.png b/Skins/altruism/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/hit0-0.png b/Skins/altruism/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/altruism/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/altruism/hit0.png b/Skins/altruism/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/hit100-0.png b/Skins/altruism/hit100-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100-1.png b/Skins/altruism/hit100-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100-2.png b/Skins/altruism/hit100-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100-3.png b/Skins/altruism/hit100-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100-4.png b/Skins/altruism/hit100-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100-5.png b/Skins/altruism/hit100-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/altruism/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/altruism/hit100-6.png b/Skins/altruism/hit100-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/altruism/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/altruism/hit100-7.png b/Skins/altruism/hit100-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/altruism/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/altruism/hit100-8.png b/Skins/altruism/hit100-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/altruism/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/altruism/hit100-9.png b/Skins/altruism/hit100-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/hit100.png b/Skins/altruism/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/hit100k-0.png b/Skins/altruism/hit100k-0.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100k-1.png b/Skins/altruism/hit100k-1.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100k-2.png b/Skins/altruism/hit100k-2.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100k-3.png b/Skins/altruism/hit100k-3.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100k-4.png b/Skins/altruism/hit100k-4.png new file mode 100644 index 00000000..6180948e --- /dev/null +++ b/Skins/altruism/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be8d289beb0a54627efe03876980c88d2050226600bdeba1cbeae072ae31d8f +size 4428 diff --git a/Skins/altruism/hit100k-5.png b/Skins/altruism/hit100k-5.png new file mode 100644 index 00000000..7a48c624 --- /dev/null +++ b/Skins/altruism/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0148e8056a07f9ac4a5693f0f6fdcab9cb4f03ab2c188e0177391442261b028f +size 4462 diff --git a/Skins/altruism/hit100k-6.png b/Skins/altruism/hit100k-6.png new file mode 100644 index 00000000..50f054a7 --- /dev/null +++ b/Skins/altruism/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960a4988c44b7e7566553fcc6321870a4114730092d606e09e6bd595b581f6b +size 4388 diff --git a/Skins/altruism/hit100k-7.png b/Skins/altruism/hit100k-7.png new file mode 100644 index 00000000..d44c1139 --- /dev/null +++ b/Skins/altruism/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0309f6a652e9680acd8772d28422381bd81e4e5f929ad6bdc07c4145e5829521 +size 4294 diff --git a/Skins/altruism/hit100k-8.png b/Skins/altruism/hit100k-8.png new file mode 100644 index 00000000..063c3711 --- /dev/null +++ b/Skins/altruism/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac85fafff8403f87afabf7c8247f05f845190dc87499dc88123febde1956ee45 +size 4148 diff --git a/Skins/altruism/hit100k-9.png b/Skins/altruism/hit100k-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/hit100k.png b/Skins/altruism/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/hit300.png b/Skins/altruism/hit300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/hit300g.png b/Skins/altruism/hit300g.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/hit300k.png b/Skins/altruism/hit300k.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/hit50-0.png b/Skins/altruism/hit50-0.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism/hit50-1.png b/Skins/altruism/hit50-1.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism/hit50-2.png b/Skins/altruism/hit50-2.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism/hit50-3.png b/Skins/altruism/hit50-3.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism/hit50-4.png b/Skins/altruism/hit50-4.png new file mode 100644 index 00000000..380ebc3e --- /dev/null +++ b/Skins/altruism/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ae655e39c254264425fbd281db29337980d5a5dfcd85e4b933f783d517c68 +size 4379 diff --git a/Skins/altruism/hit50-5.png b/Skins/altruism/hit50-5.png new file mode 100644 index 00000000..20a02ca4 --- /dev/null +++ b/Skins/altruism/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c4a4dd32579364796cb6a07d967a70a104a87f218d2698a7742283e196b05f +size 4355 diff --git a/Skins/altruism/hit50-6.png b/Skins/altruism/hit50-6.png new file mode 100644 index 00000000..a2d49156 --- /dev/null +++ b/Skins/altruism/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aedd7127330e73764c01eba26b22425ddb1d7ae0eadf308eefc088244d4d6f9e +size 4291 diff --git a/Skins/altruism/hit50-7.png b/Skins/altruism/hit50-7.png new file mode 100644 index 00000000..af67a916 --- /dev/null +++ b/Skins/altruism/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49acfe7551db09fb0ac188424367cfc1b4a3b7bfff0e37bb2ea18fcac07a990 +size 4218 diff --git a/Skins/altruism/hit50-8.png b/Skins/altruism/hit50-8.png new file mode 100644 index 00000000..96590513 --- /dev/null +++ b/Skins/altruism/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9965e2df444e56b320169e51621143f39be211971bf5e79ade8e82217bbfbc71 +size 4061 diff --git a/Skins/altruism/hit50-9.png b/Skins/altruism/hit50-9.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/hit50.png b/Skins/altruism/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/hitcircle.png b/Skins/altruism/hitcircle.png new file mode 100644 index 00000000..b03f1d9d --- /dev/null +++ b/Skins/altruism/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba379396bab97eed06d4cbf9050ef313f0c95110552f23e23ff737e024365ea2 +size 6849 diff --git a/Skins/altruism/hitcircle@2x.png b/Skins/altruism/hitcircle@2x.png new file mode 100644 index 00000000..44e4fd9c --- /dev/null +++ b/Skins/altruism/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c80d749addd5f80b60bd2daa274fac39df35f06ad7a899a196e390c7ab48e3b +size 12654 diff --git a/Skins/altruism/hitcircleoverlay.png b/Skins/altruism/hitcircleoverlay.png new file mode 100644 index 00000000..11577631 --- /dev/null +++ b/Skins/altruism/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721404e943516f899fcbde20c13ead74ccebc25441bcb1220768607240383c6e +size 5875 diff --git a/Skins/altruism/hitcircleoverlay@2x.png b/Skins/altruism/hitcircleoverlay@2x.png new file mode 100644 index 00000000..63991a72 --- /dev/null +++ b/Skins/altruism/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d452b995f8a5b3bb1b39a24205dcea934b9e9e45ac1bf051d592ffea4e7942f +size 28767 diff --git a/Skins/altruism/inputoverlay-background.png b/Skins/altruism/inputoverlay-background.png new file mode 100644 index 00000000..5ac40464 --- /dev/null +++ b/Skins/altruism/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d9bb0bf7dfbdd69b38d37089280bb48c3f4608f14b932fad6f6d1c158ad1c8 +size 553 diff --git a/Skins/altruism/inputoverlay-key.png b/Skins/altruism/inputoverlay-key.png new file mode 100644 index 00000000..644950c1 --- /dev/null +++ b/Skins/altruism/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afdab90202565a1fad349b51036ca1a2890cf42c1c473502a1c374ed0d80fa0 +size 228 diff --git a/Skins/altruism/key-confirm.ogg b/Skins/altruism/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/key-delete.ogg b/Skins/altruism/key-delete.ogg new file mode 100644 index 00000000..4a576e27 --- /dev/null +++ b/Skins/altruism/key-delete.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b033f092c6e0922cf1ae0b34a17ed0f49d5f4b80db4b37e56a6ae12a7648c8b +size 6082 diff --git a/Skins/altruism/key-movement.ogg b/Skins/altruism/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/key-press-1.ogg b/Skins/altruism/key-press-1.ogg new file mode 100644 index 00000000..1e5c9cee --- /dev/null +++ b/Skins/altruism/key-press-1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2669d68403dc5c3f213c411a43ab32f3a0edb879c704bd5c37ef2d1fd9e9731e +size 6287 diff --git a/Skins/altruism/key-press-2.ogg b/Skins/altruism/key-press-2.ogg new file mode 100644 index 00000000..5626edd3 --- /dev/null +++ b/Skins/altruism/key-press-2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0e6bbb4d868637175e4e6c41b7aabe8e2c4f153517894cf1f9e2097095d57a +size 5892 diff --git a/Skins/altruism/key-press-3.ogg b/Skins/altruism/key-press-3.ogg new file mode 100644 index 00000000..28a8b4f0 --- /dev/null +++ b/Skins/altruism/key-press-3.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c4c446ed91e3b4d98c3974b786396002a1fe9b7e53a29405c105cb69a2bc72 +size 5938 diff --git a/Skins/altruism/key-press-4.ogg b/Skins/altruism/key-press-4.ogg new file mode 100644 index 00000000..a6270962 --- /dev/null +++ b/Skins/altruism/key-press-4.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba03089d29d0b247700428c2549abf5b9dd41bba9ef7766cc3252dd30a219811 +size 5888 diff --git a/Skins/altruism/match-confirm.ogg b/Skins/altruism/match-confirm.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/match-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/match-start.ogg b/Skins/altruism/match-start.ogg new file mode 100644 index 00000000..b6e0a23e --- /dev/null +++ b/Skins/altruism/match-start.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd0627ccd3fe4583674e0e049c6c3bebefcf052eb23f70987f6dfa5815f23bbc +size 10851 diff --git a/Skins/altruism/menu-back-0.png b/Skins/altruism/menu-back-0.png new file mode 100644 index 00000000..73ef1cd5 --- /dev/null +++ b/Skins/altruism/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149cfc6bbcbe8695ce790851b25d861c34bd07b0ba3f4c373367bd222647e50b +size 3483 diff --git a/Skins/altruism/menu-back-0@2x.png b/Skins/altruism/menu-back-0@2x.png new file mode 100644 index 00000000..9b5bdf7e --- /dev/null +++ b/Skins/altruism/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c4df0eaa60b4a6203b0be429c796b91cd309a9c2c9b74a8ee9b8d8e3a8b421 +size 4538 diff --git a/Skins/altruism/menu-back.png b/Skins/altruism/menu-back.png new file mode 100644 index 00000000..f19a3dfb --- /dev/null +++ b/Skins/altruism/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edef430998b0d676f2e852673a584ba0b7ade73f4791fade9f4a622da3b15291 +size 2949 diff --git a/Skins/altruism/menu-background.jpg b/Skins/altruism/menu-background.jpg new file mode 100644 index 00000000..afba9672 --- /dev/null +++ b/Skins/altruism/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84542f6be92e8962f65aba9e78fdc55568c9ba83bb37ba0447d8b1a79aafe2e7 +size 315733 diff --git a/Skins/altruism/menu-button-background.png b/Skins/altruism/menu-button-background.png new file mode 100644 index 00000000..826e86ac --- /dev/null +++ b/Skins/altruism/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b56e99fe904ddbb66a8ac42634111b2a3c1c058eb494897ce39945794077e49 +size 557 diff --git a/Skins/altruism/menuback.ogg b/Skins/altruism/menuback.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/menuclick.ogg b/Skins/altruism/menuclick.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/menuhit.ogg b/Skins/altruism/menuhit.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/mode-osu-small.png b/Skins/altruism/mode-osu-small.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/mode-osu.png b/Skins/altruism/mode-osu.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/multi-skipped.png b/Skins/altruism/multi-skipped.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/multi-skipped.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/nightcore-clap.wav b/Skins/altruism/nightcore-clap.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism/nightcore-clap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism/nightcore-finish.wav b/Skins/altruism/nightcore-finish.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism/nightcore-finish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism/nightcore-hat.wav b/Skins/altruism/nightcore-hat.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism/nightcore-hat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism/nightcore-kick.wav b/Skins/altruism/nightcore-kick.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/altruism/nightcore-kick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/altruism/normal-hitclap.ogg b/Skins/altruism/normal-hitclap.ogg new file mode 100644 index 00000000..69fa3fd0 --- /dev/null +++ b/Skins/altruism/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933861cb92d0da79e6c64de23425e64da86bcb5ad5b98bee0b2a6436bbdbb86f +size 4614 diff --git a/Skins/altruism/normal-hitfinish.ogg b/Skins/altruism/normal-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/altruism/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/altruism/normal-hitnormal.ogg b/Skins/altruism/normal-hitnormal.ogg new file mode 100644 index 00000000..7221dc34 --- /dev/null +++ b/Skins/altruism/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0339f2aae06df054dc1b1bbda0168f46e34426c00da3f4d0adc986fede7b0227 +size 7506 diff --git a/Skins/altruism/normal-hitwhistle.ogg b/Skins/altruism/normal-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism/normal-sliderslide.ogg b/Skins/altruism/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/normal-slidertick.ogg b/Skins/altruism/normal-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/normal-sliderwhistle.ogg b/Skins/altruism/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/particle300.png b/Skins/altruism/particle300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/particle300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/particle300@2x.png b/Skins/altruism/particle300@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/particle300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/pause-back-click.ogg b/Skins/altruism/pause-back-click.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/pause-back-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/pause-back-hover.ogg b/Skins/altruism/pause-back-hover.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/pause-back-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/pause-back.png b/Skins/altruism/pause-back.png new file mode 100644 index 00000000..44833851 --- /dev/null +++ b/Skins/altruism/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d34be900e0e7177d2290d47877a01353421aa7a384cb225e96bd6a448461ee +size 2389 diff --git a/Skins/altruism/pause-continue-click.ogg b/Skins/altruism/pause-continue-click.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/pause-continue-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/pause-continue-hover.ogg b/Skins/altruism/pause-continue-hover.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/pause-continue-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/pause-continue.png b/Skins/altruism/pause-continue.png new file mode 100644 index 00000000..d5e1e297 --- /dev/null +++ b/Skins/altruism/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa1f2f8b7a12fe58b6d705e95a6062c9872483cfb2cfe1f07bc818b371a9668 +size 3407 diff --git a/Skins/altruism/pause-loop.mp3 b/Skins/altruism/pause-loop.mp3 new file mode 100644 index 00000000..ae75952e --- /dev/null +++ b/Skins/altruism/pause-loop.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2cb9b3cfcee75120bea5a4c74c3bbdf9e428589b7879b4797fd3c06f3c85ab +size 741 diff --git a/Skins/altruism/pause-overlay.png b/Skins/altruism/pause-overlay.png new file mode 100644 index 00000000..34145a0f --- /dev/null +++ b/Skins/altruism/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74aa40bebb82ff86587cbf16cb28566aa806288e3cd29cef2193a1b49f3b6d03 +size 17117 diff --git a/Skins/altruism/pause-replay.png b/Skins/altruism/pause-replay.png new file mode 100644 index 00000000..77fd5fd2 --- /dev/null +++ b/Skins/altruism/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be60d3eb289db4e86f0bca82c8ddb52a6bac913bddfd0a953de8ac0e1e286d5b +size 2860 diff --git a/Skins/altruism/pause-retry-click.ogg b/Skins/altruism/pause-retry-click.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/pause-retry-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/pause-retry-hover.ogg b/Skins/altruism/pause-retry-hover.ogg new file mode 100644 index 00000000..6aecd350 --- /dev/null +++ b/Skins/altruism/pause-retry-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213214c4c39a1612c6a089f94cce9436335a0aa461d95e697f508df117794cab +size 6208 diff --git a/Skins/altruism/pause-retry.png b/Skins/altruism/pause-retry.png new file mode 100644 index 00000000..c0a022fc --- /dev/null +++ b/Skins/altruism/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf66c7455a52bcfdca0dcceafc00de7fc470091fa6f608e6c5df9e9dc9302a6 +size 2507 diff --git a/Skins/altruism/play-skip.png b/Skins/altruism/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/play-unranked.png b/Skins/altruism/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/play-unranked@2x.png b/Skins/altruism/play-unranked@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/rank-forum.png b/Skins/altruism/rank-forum.png new file mode 100644 index 00000000..732bf8c0 --- /dev/null +++ b/Skins/altruism/rank-forum.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcaed5e1801ce805590bd938b04f322b4942ed3d030f7216202e05721fbfbcb4 +size 639 diff --git a/Skins/altruism/rank-forum@2x.png b/Skins/altruism/rank-forum@2x.png new file mode 100644 index 00000000..f8064c20 --- /dev/null +++ b/Skins/altruism/rank-forum@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225f305fda2dcb6aa911fc06224da4a673c6d954a75779937dcc684dc0b854b3 +size 1023 diff --git a/Skins/altruism/ranking-a-small.png b/Skins/altruism/ranking-a-small.png new file mode 100644 index 00000000..b47b4f0e --- /dev/null +++ b/Skins/altruism/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1c52320c7a9104e769b683e9bab5749ae7b5f841d7f8d886e5e671882b43ba +size 839 diff --git a/Skins/altruism/ranking-a.png b/Skins/altruism/ranking-a.png new file mode 100644 index 00000000..91a1d228 --- /dev/null +++ b/Skins/altruism/ranking-a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6614b5453ff7be28a92a822bee2ffa6a93416d001bc95f5f3f5e24d25ca093 +size 117502 diff --git a/Skins/altruism/ranking-a@2x.png b/Skins/altruism/ranking-a@2x.png new file mode 100644 index 00000000..83cac922 --- /dev/null +++ b/Skins/altruism/ranking-a@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895944f7663c50dce237ee06b5fba3c5117de073c1bd6b90829c1c7bb82f5cc9 +size 370758 diff --git a/Skins/altruism/ranking-accuracy.png b/Skins/altruism/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/ranking-b-small.png b/Skins/altruism/ranking-b-small.png new file mode 100644 index 00000000..a623d18d --- /dev/null +++ b/Skins/altruism/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a4f47aead4f8fd82d6dca669655f646284ab68ff396f6d4dcde3aadf5117ab +size 881 diff --git a/Skins/altruism/ranking-b.png b/Skins/altruism/ranking-b.png new file mode 100644 index 00000000..9b7a3480 --- /dev/null +++ b/Skins/altruism/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39677194ed5a4d5e465ce3da3b6958f8393a64a4d03e825aa5bd5300c70aa054 +size 117335 diff --git a/Skins/altruism/ranking-b@2x.png b/Skins/altruism/ranking-b@2x.png new file mode 100644 index 00000000..938b0d56 --- /dev/null +++ b/Skins/altruism/ranking-b@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e242862e6c3a1df8dda84a152b13f199c3c9df0782773fd62fbcfe256376e2a3 +size 366535 diff --git a/Skins/altruism/ranking-c-small.png b/Skins/altruism/ranking-c-small.png new file mode 100644 index 00000000..cb0a1d69 --- /dev/null +++ b/Skins/altruism/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959b854654a42b32197ec251841aacb77ca1997a98900e002078cc3ae2934e2e +size 760 diff --git a/Skins/altruism/ranking-c.png b/Skins/altruism/ranking-c.png new file mode 100644 index 00000000..ace44d49 --- /dev/null +++ b/Skins/altruism/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e56ed108a44f8446d39335e374f4c928b1de1c4004fa2d165fd4c1c10ef0542b +size 117156 diff --git a/Skins/altruism/ranking-c@2x.png b/Skins/altruism/ranking-c@2x.png new file mode 100644 index 00000000..8012c133 --- /dev/null +++ b/Skins/altruism/ranking-c@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4adc5e13a512e46ed28788f8b96bde3b59b38347bbcdf994205e6a58a4181a1b +size 371138 diff --git a/Skins/altruism/ranking-d-small.png b/Skins/altruism/ranking-d-small.png new file mode 100644 index 00000000..88e6174d --- /dev/null +++ b/Skins/altruism/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7beb29c02c369f2b9bbc95574cbfee87899417f1336b49caac93c7fd9667e299 +size 854 diff --git a/Skins/altruism/ranking-d.png b/Skins/altruism/ranking-d.png new file mode 100644 index 00000000..e45e2b69 --- /dev/null +++ b/Skins/altruism/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85efce18b2bb999597b27e9be8e1119cbd37bd8a835c608d34be2ba8e7baf1d2 +size 116992 diff --git a/Skins/altruism/ranking-d@2x.png b/Skins/altruism/ranking-d@2x.png new file mode 100644 index 00000000..38836eb6 --- /dev/null +++ b/Skins/altruism/ranking-d@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468e62aa3cdd4cd0cd77932a3e3938f45b3a59f239ff917d7c2c6ce5f39b7554 +size 369010 diff --git a/Skins/altruism/ranking-graph.png b/Skins/altruism/ranking-graph.png new file mode 100644 index 00000000..7451eef8 --- /dev/null +++ b/Skins/altruism/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f71168c0b1ab5673af9872ad8860fbe7968eb444922b0952b773ce7a8e02bf7 +size 112 diff --git a/Skins/altruism/ranking-maxcombo.png b/Skins/altruism/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/ranking-panel.png b/Skins/altruism/ranking-panel.png new file mode 100644 index 00000000..e5361ac2 --- /dev/null +++ b/Skins/altruism/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145e954f242fad1d19bd0e84037417ad8dfd1e21970d1f63f71e6a37b7aac944 +size 130997 diff --git a/Skins/altruism/ranking-panel@2x.png b/Skins/altruism/ranking-panel@2x.png new file mode 100644 index 00000000..4ed073c9 --- /dev/null +++ b/Skins/altruism/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00621ef054546e4c0b19e57976d862eebdd1ab3d28aaf86e0e8e14ccb4b07393 +size 425241 diff --git a/Skins/altruism/ranking-perfect.png b/Skins/altruism/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/ranking-s-small.png b/Skins/altruism/ranking-s-small.png new file mode 100644 index 00000000..3553cae3 --- /dev/null +++ b/Skins/altruism/ranking-s-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121e0b38cd9c10a9d52153978c44e8e49422c955ff6cb7975d2a952a0941c01f +size 876 diff --git a/Skins/altruism/ranking-s.png b/Skins/altruism/ranking-s.png new file mode 100644 index 00000000..6595c312 --- /dev/null +++ b/Skins/altruism/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afac7cc367ddb180b19d5894243ec6af10805bfb8de42a594dabbef48d96a92 +size 117382 diff --git a/Skins/altruism/ranking-s@2x.png b/Skins/altruism/ranking-s@2x.png new file mode 100644 index 00000000..f905454a --- /dev/null +++ b/Skins/altruism/ranking-s@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720974aa82a1fbb77a12eab618ca4efd77db8885997ad32f212627b4ddd3edb2 +size 368998 diff --git a/Skins/altruism/ranking-sh-small.png b/Skins/altruism/ranking-sh-small.png new file mode 100644 index 00000000..3553cae3 --- /dev/null +++ b/Skins/altruism/ranking-sh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121e0b38cd9c10a9d52153978c44e8e49422c955ff6cb7975d2a952a0941c01f +size 876 diff --git a/Skins/altruism/ranking-sh.png b/Skins/altruism/ranking-sh.png new file mode 100644 index 00000000..6595c312 --- /dev/null +++ b/Skins/altruism/ranking-sh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afac7cc367ddb180b19d5894243ec6af10805bfb8de42a594dabbef48d96a92 +size 117382 diff --git a/Skins/altruism/ranking-sh@2x.png b/Skins/altruism/ranking-sh@2x.png new file mode 100644 index 00000000..f905454a --- /dev/null +++ b/Skins/altruism/ranking-sh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720974aa82a1fbb77a12eab618ca4efd77db8885997ad32f212627b4ddd3edb2 +size 368998 diff --git a/Skins/altruism/ranking-title.png b/Skins/altruism/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/ranking-winner.png b/Skins/altruism/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/ranking-x-small.png b/Skins/altruism/ranking-x-small.png new file mode 100644 index 00000000..140dd158 --- /dev/null +++ b/Skins/altruism/ranking-x-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42be7cb09212115cbd8e3e7cc3148881ad7d62df7b6e41c3b003575a0b4f87e2 +size 840 diff --git a/Skins/altruism/ranking-x.png b/Skins/altruism/ranking-x.png new file mode 100644 index 00000000..fc815467 --- /dev/null +++ b/Skins/altruism/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baad3bc36490086a23345ba5739950fe0ac3ccf14acc84406456b58185d9ef9 +size 117284 diff --git a/Skins/altruism/ranking-x@2x.png b/Skins/altruism/ranking-x@2x.png new file mode 100644 index 00000000..8e914aad --- /dev/null +++ b/Skins/altruism/ranking-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdef780644e1d7b287105c37339886dffe7b69496212c2e446602217869352be +size 373253 diff --git a/Skins/altruism/ranking-xh-small.png b/Skins/altruism/ranking-xh-small.png new file mode 100644 index 00000000..140dd158 --- /dev/null +++ b/Skins/altruism/ranking-xh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42be7cb09212115cbd8e3e7cc3148881ad7d62df7b6e41c3b003575a0b4f87e2 +size 840 diff --git a/Skins/altruism/ranking-xh.png b/Skins/altruism/ranking-xh.png new file mode 100644 index 00000000..fc815467 --- /dev/null +++ b/Skins/altruism/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baad3bc36490086a23345ba5739950fe0ac3ccf14acc84406456b58185d9ef9 +size 117284 diff --git a/Skins/altruism/ranking-xh@2x.png b/Skins/altruism/ranking-xh@2x.png new file mode 100644 index 00000000..8e914aad --- /dev/null +++ b/Skins/altruism/ranking-xh@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdef780644e1d7b287105c37339886dffe7b69496212c2e446602217869352be +size 373253 diff --git a/Skins/altruism/ready.png b/Skins/altruism/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/readys.ogg b/Skins/altruism/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/reversearrow.png b/Skins/altruism/reversearrow.png new file mode 100644 index 00000000..57cb4fd7 --- /dev/null +++ b/Skins/altruism/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1cb5e12d195337c0e81fafe5a6470467114979ece243715621c964109e3b8f +size 10239 diff --git a/Skins/altruism/reversearrow@2x.png b/Skins/altruism/reversearrow@2x.png new file mode 100644 index 00000000..cb1944ba --- /dev/null +++ b/Skins/altruism/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741891903d3e124f2c40c25cf365adfb9f4ef61b287c16c9c053848abad5ca40 +size 18370 diff --git a/Skins/altruism/score-0.png b/Skins/altruism/score-0.png new file mode 100644 index 00000000..eea500b8 --- /dev/null +++ b/Skins/altruism/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd22f9f618525cffe9d37c845f9234b63d6e1e2be76c79138f36da3252c81920 +size 712 diff --git a/Skins/altruism/score-1.png b/Skins/altruism/score-1.png new file mode 100644 index 00000000..ede55977 --- /dev/null +++ b/Skins/altruism/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757791e028b305ed420efffd2296eb2ebd5221c7844b1443c398a194a4d7663d +size 400 diff --git a/Skins/altruism/score-2.png b/Skins/altruism/score-2.png new file mode 100644 index 00000000..2bfdffcc --- /dev/null +++ b/Skins/altruism/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f118fade0e802d823e0c0a8e3e7dd2692b8a720dcef4710c9dbd40e9724bd82 +size 631 diff --git a/Skins/altruism/score-3.png b/Skins/altruism/score-3.png new file mode 100644 index 00000000..7632976d --- /dev/null +++ b/Skins/altruism/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2a4b9911b97adc588e07edf720f05bfe019a95bff6a637c91f61afe1e14246 +size 690 diff --git a/Skins/altruism/score-4.png b/Skins/altruism/score-4.png new file mode 100644 index 00000000..71f446d8 --- /dev/null +++ b/Skins/altruism/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81513a061bac952645d1d30d5bcec9e5eba778c26aa23376b3cf4e3e5d23dd87 +size 616 diff --git a/Skins/altruism/score-5.png b/Skins/altruism/score-5.png new file mode 100644 index 00000000..f13b1875 --- /dev/null +++ b/Skins/altruism/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78ca02f4b372c686de1c91f2bd2a7d2e53bca15684e84710e5c93c459038530 +size 631 diff --git a/Skins/altruism/score-6.png b/Skins/altruism/score-6.png new file mode 100644 index 00000000..b6822bd6 --- /dev/null +++ b/Skins/altruism/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745b529db378a29d6f16de1fc476eb6d1e2e79b68adeb005e5ab4b94d85a72f8 +size 710 diff --git a/Skins/altruism/score-7.png b/Skins/altruism/score-7.png new file mode 100644 index 00000000..340614e6 --- /dev/null +++ b/Skins/altruism/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90aa2ae3dbe72eeedb7f017dc105ade051b8b08eb17db2f52a5542eb018aa165 +size 497 diff --git a/Skins/altruism/score-8.png b/Skins/altruism/score-8.png new file mode 100644 index 00000000..58dfe386 --- /dev/null +++ b/Skins/altruism/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5860010cf39c88a4688e737c0a5b46867dfe5dc0fda9e9591ba040efd3eeecc +size 740 diff --git a/Skins/altruism/score-9.png b/Skins/altruism/score-9.png new file mode 100644 index 00000000..eddd8b25 --- /dev/null +++ b/Skins/altruism/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f892389f4dac47d17a83f28daf23a8c4067d907cbd1427c851469fe8446d3e6 +size 734 diff --git a/Skins/altruism/score-comma.png b/Skins/altruism/score-comma.png new file mode 100644 index 00000000..7353580d --- /dev/null +++ b/Skins/altruism/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1974c753e3cc12467c37c329114dbef7b09c536fed4117eddb9e1bf8b1d7d1d9 +size 292 diff --git a/Skins/altruism/score-dot.png b/Skins/altruism/score-dot.png new file mode 100644 index 00000000..ad60f406 --- /dev/null +++ b/Skins/altruism/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26208ce695c759bb92b7fbb5d37b024aefbcab62ed4d524c92f891bcc5ab6b7a +size 221 diff --git a/Skins/altruism/score-percent.png b/Skins/altruism/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/score-x.png b/Skins/altruism/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/scorebar-bg .png b/Skins/altruism/scorebar-bg .png new file mode 100644 index 00000000..b83d53b5 --- /dev/null +++ b/Skins/altruism/scorebar-bg .png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8fdead3f0ee24a42dc266894cbbf468368f96ea9388e808001aa73ff139b7f +size 165 diff --git a/Skins/altruism/scorebar-bg.png b/Skins/altruism/scorebar-bg.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/scorebar-colour.png b/Skins/altruism/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/scoreentry-0.png b/Skins/altruism/scoreentry-0.png new file mode 100644 index 00000000..fe2e3de5 --- /dev/null +++ b/Skins/altruism/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f6e7a2754a538a6e340d1576e123aa6488c461107ae58f25c26388cc4b7161d +size 406 diff --git a/Skins/altruism/scoreentry-0@2x.png b/Skins/altruism/scoreentry-0@2x.png new file mode 100644 index 00000000..0fec94f6 --- /dev/null +++ b/Skins/altruism/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abd8e2825dc33798cd85d5bca08a89018d962044267a547d349678365a0ea87 +size 709 diff --git a/Skins/altruism/scoreentry-1.png b/Skins/altruism/scoreentry-1.png new file mode 100644 index 00000000..f422d37e --- /dev/null +++ b/Skins/altruism/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39067afc45270d7fa06e879c9e936c966e96b756a59881c7df6f61f82af975c4 +size 315 diff --git a/Skins/altruism/scoreentry-1@2x.png b/Skins/altruism/scoreentry-1@2x.png new file mode 100644 index 00000000..728fafac --- /dev/null +++ b/Skins/altruism/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a653392e3156b0fdefb3ea203f28b0c143db4b814578457dcce06a17e1c0b4f1 +size 417 diff --git a/Skins/altruism/scoreentry-2.png b/Skins/altruism/scoreentry-2.png new file mode 100644 index 00000000..5fb0c02a --- /dev/null +++ b/Skins/altruism/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286fb97b27846c59f2ac8e20b6ed3f9ab95e3f3a87ad3c4a3eff386958eaa040 +size 437 diff --git a/Skins/altruism/scoreentry-2@2x.png b/Skins/altruism/scoreentry-2@2x.png new file mode 100644 index 00000000..14e945d2 --- /dev/null +++ b/Skins/altruism/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa4a8aa1adb0700d10e11f3d2d5d6b9a9d7ebb698d3dd69c65d71a3408266e4 +size 637 diff --git a/Skins/altruism/scoreentry-3.png b/Skins/altruism/scoreentry-3.png new file mode 100644 index 00000000..945c8ddf --- /dev/null +++ b/Skins/altruism/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9fd5b7bfa95770be8c8680522bdcf114717fa00e26835e58a405e07094d615e +size 434 diff --git a/Skins/altruism/scoreentry-3@2x.png b/Skins/altruism/scoreentry-3@2x.png new file mode 100644 index 00000000..164f3394 --- /dev/null +++ b/Skins/altruism/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28cf26c8389612acf577446f101e42b719cc071bef0a36893e90f8eb31d42135 +size 645 diff --git a/Skins/altruism/scoreentry-4.png b/Skins/altruism/scoreentry-4.png new file mode 100644 index 00000000..efc3eaf8 --- /dev/null +++ b/Skins/altruism/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d9be0be62232a44d6bdededcc898edd9f4658236a17252c088b9456be13afd1 +size 419 diff --git a/Skins/altruism/scoreentry-4@2x.png b/Skins/altruism/scoreentry-4@2x.png new file mode 100644 index 00000000..821f7c9a --- /dev/null +++ b/Skins/altruism/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be5ddebc9d120265b05ae7aa86e1437f3aa4819e9f7968e27b712346e33693f +size 631 diff --git a/Skins/altruism/scoreentry-5.png b/Skins/altruism/scoreentry-5.png new file mode 100644 index 00000000..81f48bf2 --- /dev/null +++ b/Skins/altruism/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40da0a0ecfdc3de96682fb46f76733b7585bc3080a6d286155a85e5db4d4e4ad +size 444 diff --git a/Skins/altruism/scoreentry-5@2x.png b/Skins/altruism/scoreentry-5@2x.png new file mode 100644 index 00000000..33842760 --- /dev/null +++ b/Skins/altruism/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce9ebec6bce060e8fbdceec97c27bff2914da653f3d198bf0f6254296b7cc28 +size 615 diff --git a/Skins/altruism/scoreentry-6.png b/Skins/altruism/scoreentry-6.png new file mode 100644 index 00000000..27cd3bda --- /dev/null +++ b/Skins/altruism/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9633b265ade198f2a0026e20cd543de48862355bd406e08a919b4fc88fccf39 +size 430 diff --git a/Skins/altruism/scoreentry-6@2x.png b/Skins/altruism/scoreentry-6@2x.png new file mode 100644 index 00000000..feaa17de --- /dev/null +++ b/Skins/altruism/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:900fa0eb849530853591ecb408a16f112ff60e71f698d3220b70750d02bd585c +size 694 diff --git a/Skins/altruism/scoreentry-7.png b/Skins/altruism/scoreentry-7.png new file mode 100644 index 00000000..567f8f31 --- /dev/null +++ b/Skins/altruism/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3a5e4301e5fc638604a4fe587788bae55cfe4fe86ad6b1f93cbe60c08378fe +size 358 diff --git a/Skins/altruism/scoreentry-7@2x.png b/Skins/altruism/scoreentry-7@2x.png new file mode 100644 index 00000000..c4411741 --- /dev/null +++ b/Skins/altruism/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30dada965d79ffdf5fe78281fbb81694b052583e30aa3439ab252a564171ef9d +size 484 diff --git a/Skins/altruism/scoreentry-8.png b/Skins/altruism/scoreentry-8.png new file mode 100644 index 00000000..ce8cfa2a --- /dev/null +++ b/Skins/altruism/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e25b670d8ed2431e1edbd0c63b706b8a1daacd4688b1038f7686cd32bad02020 +size 456 diff --git a/Skins/altruism/scoreentry-8@2x.png b/Skins/altruism/scoreentry-8@2x.png new file mode 100644 index 00000000..718171f7 --- /dev/null +++ b/Skins/altruism/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fec789b9f4f149544f585d1d584a573a853a624a5da51bd5e72814923f80074 +size 726 diff --git a/Skins/altruism/scoreentry-9.png b/Skins/altruism/scoreentry-9.png new file mode 100644 index 00000000..8eccb80a --- /dev/null +++ b/Skins/altruism/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82ccc7e3c0104124360ca880026c98f4deffe41ff591dd0822f47b449ea7e391 +size 455 diff --git a/Skins/altruism/scoreentry-9@2x.png b/Skins/altruism/scoreentry-9@2x.png new file mode 100644 index 00000000..da0462b5 --- /dev/null +++ b/Skins/altruism/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a74fa9584d6c0d83f4e6e1a91d5cff46415806dd17104539cd3ebaf9d634f4 +size 701 diff --git a/Skins/altruism/scoreentry-comma.png b/Skins/altruism/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/altruism/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/altruism/scoreentry-dot.png b/Skins/altruism/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/altruism/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/altruism/scoreentry-percent.png b/Skins/altruism/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/scoreentry-x.png b/Skins/altruism/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/section-fail.png b/Skins/altruism/section-fail.png new file mode 100644 index 00000000..ef793864 --- /dev/null +++ b/Skins/altruism/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc30c9ac081a1116af47a194680530fcd7c0daffcfe85bdfb9ac13dc686ebb1 +size 6962 diff --git a/Skins/altruism/section-fail@2x.png b/Skins/altruism/section-fail@2x.png new file mode 100644 index 00000000..4b5828c7 --- /dev/null +++ b/Skins/altruism/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d228cc6ab5739780ac5317537b9034cc57f7fa33e4b7b09fab42999059ab39 +size 15221 diff --git a/Skins/altruism/section-pass.png b/Skins/altruism/section-pass.png new file mode 100644 index 00000000..619638ce --- /dev/null +++ b/Skins/altruism/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a23525505dc13b5fbd3dbbd6824d9907951bda221b0e8230d88f49c5073d04 +size 7364 diff --git a/Skins/altruism/section-pass@2x.png b/Skins/altruism/section-pass@2x.png new file mode 100644 index 00000000..4d9af5dd --- /dev/null +++ b/Skins/altruism/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9969b7cca5d4e59907418954af3984ab6d2e5256293f2a10fa5fb79701e7a37 +size 15553 diff --git a/Skins/altruism/sectionfail.ogg b/Skins/altruism/sectionfail.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/altruism/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/altruism/sectionpass.ogg b/Skins/altruism/sectionpass.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/altruism/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/altruism/seeya.ogg b/Skins/altruism/seeya.ogg new file mode 100644 index 00000000..689c748d --- /dev/null +++ b/Skins/altruism/seeya.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe9635edaafbaf7734f090129d564f5cd8e08ac0ef787762e28cd31ffc060de2 +size 19878 diff --git a/Skins/altruism/selection-mod-autoplay.png b/Skins/altruism/selection-mod-autoplay.png new file mode 100644 index 00000000..66eb0970 --- /dev/null +++ b/Skins/altruism/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f55e7fbe6342fb3fe0c4975400c8bafaef0d5bc4ec4810757973504e3fbec7 +size 907 diff --git a/Skins/altruism/selection-mod-cinema.png b/Skins/altruism/selection-mod-cinema.png new file mode 100644 index 00000000..f0816a48 --- /dev/null +++ b/Skins/altruism/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91830c9ddddd907fb1bb8cc8b939fbff9740a640b7b4d665dedf5a9e2395d0ba +size 1026 diff --git a/Skins/altruism/selection-mod-doubletime.png b/Skins/altruism/selection-mod-doubletime.png new file mode 100644 index 00000000..75609a78 --- /dev/null +++ b/Skins/altruism/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48dd1c4a2fb3ea30775819d02504ff0c443302b528cc899568570f6caf0c8126 +size 932 diff --git a/Skins/altruism/selection-mod-easy.png b/Skins/altruism/selection-mod-easy.png new file mode 100644 index 00000000..2ba6a7fd --- /dev/null +++ b/Skins/altruism/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626e5fac017af894694e055f1ac018a0c0609a368054f81e9ae76f3e2af7d0c4 +size 886 diff --git a/Skins/altruism/selection-mod-flashlight.png b/Skins/altruism/selection-mod-flashlight.png new file mode 100644 index 00000000..4e6e7136 --- /dev/null +++ b/Skins/altruism/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8c569164ed3dc1e111332efcc9a116c46a4ff323932b157dcacb1dd2818b05 +size 756 diff --git a/Skins/altruism/selection-mod-halftime.png b/Skins/altruism/selection-mod-halftime.png new file mode 100644 index 00000000..f8c68765 --- /dev/null +++ b/Skins/altruism/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dfe765a4540dfb1f6d097f37b0ddba9496fb7b800e7a355dd8b7a2f2b08a5a6 +size 945 diff --git a/Skins/altruism/selection-mod-hardrock.png b/Skins/altruism/selection-mod-hardrock.png new file mode 100644 index 00000000..d30f9980 --- /dev/null +++ b/Skins/altruism/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd551d224168ab901b1026a0437bdce49194f2b42908ae5be78cc0e60ffdc48d +size 867 diff --git a/Skins/altruism/selection-mod-hidden.png b/Skins/altruism/selection-mod-hidden.png new file mode 100644 index 00000000..77517e95 --- /dev/null +++ b/Skins/altruism/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d614bfe82550b4008daef82c8ecccacb06aa9dd1b15b7c9248dafb64bd3171bc +size 1054 diff --git a/Skins/altruism/selection-mod-nightcore.png b/Skins/altruism/selection-mod-nightcore.png new file mode 100644 index 00000000..64aa0b7e --- /dev/null +++ b/Skins/altruism/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f18ce7052024dbe3bbbffd0b74aded53f8cbd1bf8f94acbd59ce78d6247076 +size 921 diff --git a/Skins/altruism/selection-mod-nofail.png b/Skins/altruism/selection-mod-nofail.png new file mode 100644 index 00000000..7b2aee22 --- /dev/null +++ b/Skins/altruism/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a04c708aff9d8c95a05a717189b0ff782a2815b337d476054225e4214100d98 +size 923 diff --git a/Skins/altruism/selection-mod-perfect.png b/Skins/altruism/selection-mod-perfect.png new file mode 100644 index 00000000..731019ec --- /dev/null +++ b/Skins/altruism/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840ba6ea512b0230566bb06e071993783526e4975cd61f0f6a1175cb6642fb16 +size 927 diff --git a/Skins/altruism/selection-mod-relax.png b/Skins/altruism/selection-mod-relax.png new file mode 100644 index 00000000..6a192ca8 --- /dev/null +++ b/Skins/altruism/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d179309a41572fb15a4dd6682fd97c5bb661d1a7f36f04d3d4338b1907b3979c +size 647 diff --git a/Skins/altruism/selection-mod-relax2.png b/Skins/altruism/selection-mod-relax2.png new file mode 100644 index 00000000..f899c3c0 --- /dev/null +++ b/Skins/altruism/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e075ca7fff8e6f681923655c36fb85941f92432232e4a8598f08c445e1855521 +size 963 diff --git a/Skins/altruism/selection-mod-scorev2.png b/Skins/altruism/selection-mod-scorev2.png new file mode 100644 index 00000000..29062c4a --- /dev/null +++ b/Skins/altruism/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197c3500ab925d4414a79954cd0d9db767694a74541b153abc98a23a247f817e +size 1000 diff --git a/Skins/altruism/selection-mod-spunout.png b/Skins/altruism/selection-mod-spunout.png new file mode 100644 index 00000000..e3a2a19f --- /dev/null +++ b/Skins/altruism/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:727c9a7b93990d69f64c33d274453a92f4f2a0666d51ec0f1d7ac0b2d666d558 +size 929 diff --git a/Skins/altruism/selection-mod-suddendeath.png b/Skins/altruism/selection-mod-suddendeath.png new file mode 100644 index 00000000..10d6c48d --- /dev/null +++ b/Skins/altruism/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db479f5e064564c6c09c08972d980bed0af112d5664bbfba7eb5652b967d6075 +size 979 diff --git a/Skins/altruism/selection-mod-target.png b/Skins/altruism/selection-mod-target.png new file mode 100644 index 00000000..613ba308 --- /dev/null +++ b/Skins/altruism/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf71ee04d5010cfd16c580803d875cac8c68859dfd929ac4686a3394088566c +size 906 diff --git a/Skins/altruism/selection-mode-over.png b/Skins/altruism/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/selection-mode.png b/Skins/altruism/selection-mode.png new file mode 100644 index 00000000..342c37ff --- /dev/null +++ b/Skins/altruism/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d12c96497ee242ec4a34337970bc52e406c9eb9fdb5a8ceeaa40ce92579784 +size 76341 diff --git a/Skins/altruism/selection-mode@2x.png b/Skins/altruism/selection-mode@2x.png new file mode 100644 index 00000000..f641a7f0 --- /dev/null +++ b/Skins/altruism/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eeebf0a7bdfa370e1f1121e180f2ffb16d9599773022114429d4671cd95668f +size 256981 diff --git a/Skins/altruism/selection-mods-over.png b/Skins/altruism/selection-mods-over.png new file mode 100644 index 00000000..d44f2980 --- /dev/null +++ b/Skins/altruism/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101cd54a76e172626d3551f4048b166b688e36b8a048b3051146841c09237c58 +size 1586 diff --git a/Skins/altruism/selection-mods.png b/Skins/altruism/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/selection-options-over.png b/Skins/altruism/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/selection-options.png b/Skins/altruism/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/selection-random-over.png b/Skins/altruism/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/selection-random.png b/Skins/altruism/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/selection-tab.png b/Skins/altruism/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/altruism/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/altruism/shutter.ogg b/Skins/altruism/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/skin.ini b/Skins/altruism/skin.ini new file mode 100644 index 00000000..b5c4fd1c --- /dev/null +++ b/Skins/altruism/skin.ini @@ -0,0 +1,31 @@ +// Ini parser v0.2.27 // https://osuck.link/skin.ini + + +[General] + Name: altruism + Author: altruism + Version: 2.7 + + HitCircleOverlayAboveNumber: 1 + + CursorExpand: 0 + CursorRotate: 0 + CursorTrailRotate: 0 + + +[Colours] + Combo1: 217,221,255 + Combo2: 171,185,255 + + SliderBorder: 85,85,85 + SliderTrackOverride: 0,0,0 + + SongSelectActiveText: 255,255,255 + + +[Fonts] + HitCircleOverlap: 14 + + ScoreOverlap: 7 + + ComboPrefix: combo diff --git a/Skins/altruism/sliderb.png b/Skins/altruism/sliderb.png new file mode 100644 index 00000000..c4807191 --- /dev/null +++ b/Skins/altruism/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991fbd871dd5c2fc3749006f779cf35d3e71dd5bf1cf00482e1acffac55aace7 +size 2672 diff --git a/Skins/altruism/sliderb@2x.png b/Skins/altruism/sliderb@2x.png new file mode 100644 index 00000000..7d23c734 --- /dev/null +++ b/Skins/altruism/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d628b7a451a184ceea89e7c8854e410d3f84daad6e71ef3436c1c9cb494adf4d +size 4743 diff --git a/Skins/altruism/sliderendcircle.png b/Skins/altruism/sliderendcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/sliderendmiss.png b/Skins/altruism/sliderendmiss.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/altruism/sliderendmiss.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/altruism/sliderfollowcircle.png b/Skins/altruism/sliderfollowcircle.png new file mode 100644 index 00000000..780651a6 --- /dev/null +++ b/Skins/altruism/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b65a9f82f1b87ea9a3b8549120936cd70fb402fc04428fa7ab0171d414b38f +size 11401 diff --git a/Skins/altruism/sliderfollowcircle@2x.png b/Skins/altruism/sliderfollowcircle@2x.png new file mode 100644 index 00000000..678be6aa --- /dev/null +++ b/Skins/altruism/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfc14d30e58b2052367cd88e5e418997b760273ebc4806c6a4beeb9de13dc78 +size 24883 diff --git a/Skins/altruism/sliderscorepoint.png b/Skins/altruism/sliderscorepoint.png new file mode 100644 index 00000000..07c17d27 --- /dev/null +++ b/Skins/altruism/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c32e348b2eccd9880def0b29d6712ec5b32da318191cdf16e4e76e350e2af55 +size 2991 diff --git a/Skins/altruism/sliderscorepoint@2x.png b/Skins/altruism/sliderscorepoint@2x.png new file mode 100644 index 00000000..f01d68bd --- /dev/null +++ b/Skins/altruism/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9af2743892d82308d852f4f7b1ee92d4d03c79b4c1ebf8dbc7a6835327647e +size 3357 diff --git a/Skins/altruism/soft-hitclap.ogg b/Skins/altruism/soft-hitclap.ogg new file mode 100644 index 00000000..69fa3fd0 --- /dev/null +++ b/Skins/altruism/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933861cb92d0da79e6c64de23425e64da86bcb5ad5b98bee0b2a6436bbdbb86f +size 4614 diff --git a/Skins/altruism/soft-hitfinish.ogg b/Skins/altruism/soft-hitfinish.ogg new file mode 100644 index 00000000..afd81f75 --- /dev/null +++ b/Skins/altruism/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb5b9f000159d3b1f7c267ced8b8c8366dbb82657848fbfb1744afe7dba568 +size 6823 diff --git a/Skins/altruism/soft-hitnormal.ogg b/Skins/altruism/soft-hitnormal.ogg new file mode 100644 index 00000000..7221dc34 --- /dev/null +++ b/Skins/altruism/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0339f2aae06df054dc1b1bbda0168f46e34426c00da3f4d0adc986fede7b0227 +size 7506 diff --git a/Skins/altruism/soft-hitwhistle.ogg b/Skins/altruism/soft-hitwhistle.ogg new file mode 100644 index 00000000..261d1b08 --- /dev/null +++ b/Skins/altruism/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe7eadea18761340c4f3b7595b3d0c65a20a3aedfa6a911f3de88d7b29d463 +size 6480 diff --git a/Skins/altruism/soft-sliderslide.ogg b/Skins/altruism/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/soft-slidertick.ogg b/Skins/altruism/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/soft-sliderwhistle.ogg b/Skins/altruism/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/songselect-bottom.png b/Skins/altruism/songselect-bottom.png new file mode 100644 index 00000000..4fca2e87 --- /dev/null +++ b/Skins/altruism/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91dcef2f26836b84126d69f9e6efdf21b91d659e14889a4eb8a1bf89e1e17a15 +size 9027 diff --git a/Skins/altruism/songselect-bottom@2x.png b/Skins/altruism/songselect-bottom@2x.png new file mode 100644 index 00000000..b399ac31 --- /dev/null +++ b/Skins/altruism/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868ae96c60f618db4f4e9939dc5fc748706a4d507ec49930cc3eab2bfd85d84b +size 10189 diff --git a/Skins/altruism/songselect-top.png b/Skins/altruism/songselect-top.png new file mode 100644 index 00000000..1ec93bc6 --- /dev/null +++ b/Skins/altruism/songselect-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1bb83299f8d6fe64c87f91f0aeb55b0d62c896c3957e5b9ef4a6695c561e07 +size 8024 diff --git a/Skins/altruism/songselect-top@2x.png b/Skins/altruism/songselect-top@2x.png new file mode 100644 index 00000000..3de066d8 --- /dev/null +++ b/Skins/altruism/songselect-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3c973906f5fdd769e71bbe37f75272b39483c50bb43f1ccad4b8ddd9d4eefd +size 14076 diff --git a/Skins/altruism/spinner-approachcircle.png b/Skins/altruism/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/spinner-background.png b/Skins/altruism/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/spinner-circle.png b/Skins/altruism/spinner-circle.png new file mode 100644 index 00000000..b4bc17a1 --- /dev/null +++ b/Skins/altruism/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ef158f77aab871f451fddec9735372128a837c0dad01604a1037d875c87205 +size 21882 diff --git a/Skins/altruism/spinner-circle@2x.png b/Skins/altruism/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/altruism/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/altruism/spinner-clear.png b/Skins/altruism/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/spinner-rpm.png b/Skins/altruism/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/spinner-spin.png b/Skins/altruism/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/spinnerbonus.ogg b/Skins/altruism/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/spinnerspin.ogg b/Skins/altruism/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/altruism/star.png b/Skins/altruism/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/altruism/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/altruism/star2.png b/Skins/altruism/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/altruism/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/altruism/welcome.ogg b/Skins/altruism/welcome.ogg new file mode 100644 index 00000000..e76b7d21 --- /dev/null +++ b/Skins/altruism/welcome.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecce0e1eb847b063c02d4cbb85f1e9630dc4c476b15959612b073d118176fb4 +size 4416 diff --git a/Skins/awawawawadesu/4K.ini b/Skins/awawawawadesu/4K.ini new file mode 100644 index 00000000..7e996620 --- /dev/null +++ b/Skins/awawawawadesu/4K.ini @@ -0,0 +1,18 @@ +//Mania skin config +ColumnLineWidth: 0.7 +ColumnStart: 136 +BarlineWidth: 1.2 +HitPosition: 402 +SpecialStyle: 0 +SpecialPositionLeft: 1 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +FontCombo: score +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +ColumnLine: 1,1,1,1,1 +//Colours +//images +//Keys diff --git a/Skins/awawawawadesu/Click-Short.wav b/Skins/awawawawadesu/Click-Short.wav new file mode 100644 index 00000000..54a0d6be --- /dev/null +++ b/Skins/awawawawadesu/Click-Short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4798105b2ff1ecc449f78798361f5f6888b4d65577508d6ad61c697393b862f +size 9714 diff --git a/Skins/awawawawadesu/Hit0-16.png b/Skins/awawawawadesu/Hit0-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/awawawawadesu/Hit0-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/awawawawadesu/Hit100-16.png b/Skins/awawawawadesu/Hit100-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/awawawawadesu/Hit100-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/awawawawadesu/Hit100k-16.png b/Skins/awawawawadesu/Hit100k-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/awawawawadesu/Hit100k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/awawawawadesu/Hit50-16.png b/Skins/awawawawadesu/Hit50-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/awawawawadesu/Hit50-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/awawawawadesu/Thumbs.db b/Skins/awawawawadesu/Thumbs.db new file mode 100644 index 00000000..9ce2d523 --- /dev/null +++ b/Skins/awawawawadesu/Thumbs.db @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febaa1e61a11e6378ea5ad91c580cf03d09e16dbefc83d6795e55c64d97fd860 +size 347648 diff --git a/Skins/awawawawadesu/applause.mp3 b/Skins/awawawawadesu/applause.mp3 new file mode 100644 index 00000000..a3b0c03c --- /dev/null +++ b/Skins/awawawawadesu/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147d00b4a0ea52b66ade8ad42c6736043f7f98602de9a889365e90780ff1936a +size 1035772 diff --git a/Skins/awawawawadesu/applause.sfk b/Skins/awawawawadesu/applause.sfk new file mode 100644 index 00000000..ef1da230 Binary files /dev/null and b/Skins/awawawawadesu/applause.sfk differ diff --git a/Skins/awawawawadesu/approachcircle.png b/Skins/awawawawadesu/approachcircle.png new file mode 100644 index 00000000..8b27020f --- /dev/null +++ b/Skins/awawawawadesu/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9746f7c241952ba2bb7452bca84cb7712a318aa1ddf44013911bb59b712852b5 +size 15596 diff --git a/Skins/awawawawadesu/back-button-hover.wav b/Skins/awawawawadesu/back-button-hover.wav new file mode 100644 index 00000000..28fa06c8 --- /dev/null +++ b/Skins/awawawawadesu/back-button-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb1a84d5b416d2d25a69b932499bf686cabafdcaefb8d2765c8df0031bee922 +size 9714 diff --git a/Skins/awawawawadesu/bak.comboburst.mp3 b/Skins/awawawawadesu/bak.comboburst.mp3 new file mode 100644 index 00000000..6467833d --- /dev/null +++ b/Skins/awawawawadesu/bak.comboburst.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6408cc15fb1e8144b811b241dd030cea8adfeef7293f379d3aab80c9e18bdc04 +size 285384 diff --git a/Skins/awawawawadesu/button-left.png b/Skins/awawawawadesu/button-left.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/awawawawadesu/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/awawawawadesu/button-middle.png b/Skins/awawawawadesu/button-middle.png new file mode 100644 index 00000000..ff6450e6 --- /dev/null +++ b/Skins/awawawawadesu/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26d1b2213d058c494c0e45c54638a1d05345e9317eaefee2e964e0cd45ae2be +size 2811 diff --git a/Skins/awawawawadesu/button-right.png b/Skins/awawawawadesu/button-right.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/awawawawadesu/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/awawawawadesu/check-off.mp3 b/Skins/awawawawadesu/check-off.mp3 new file mode 100644 index 00000000..ce15449b --- /dev/null +++ b/Skins/awawawawadesu/check-off.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dfcf1eb90aa4023f80bfc17d672704f0c5cc888fdd8eabce3f1a6d485133253 +size 14795 diff --git a/Skins/awawawawadesu/check-off.wav b/Skins/awawawawadesu/check-off.wav new file mode 100644 index 00000000..1d7879b3 --- /dev/null +++ b/Skins/awawawawadesu/check-off.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c364feb92cc890d180eac5647d5e7796d506906c723918dd6b5f01880c749e8e +size 19278 diff --git a/Skins/awawawawadesu/check-on.wav b/Skins/awawawawadesu/check-on.wav new file mode 100644 index 00000000..b6122d1c --- /dev/null +++ b/Skins/awawawawadesu/check-on.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f23c1f531421922f161989922548ea1915fde8e22d675df8d1cbb140f08059 +size 33140 diff --git a/Skins/awawawawadesu/click-close.wav b/Skins/awawawawadesu/click-close.wav new file mode 100644 index 00000000..f177b31d --- /dev/null +++ b/Skins/awawawawadesu/click-close.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5debfdf98cdf697acaaf7ba9d7dcd4bb94d84e4a84c436d3c651da2cc97355dc +size 47934 diff --git a/Skins/awawawawadesu/click-short-confirm.wav b/Skins/awawawawadesu/click-short-confirm.wav new file mode 100644 index 00000000..ab06f160 --- /dev/null +++ b/Skins/awawawawadesu/click-short-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5acb21a9c5fdc5d7eed34fda831dbeee98b3a0c22aae87e1368db754988c349d +size 47934 diff --git a/Skins/awawawawadesu/coin.png b/Skins/awawawawadesu/coin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/coin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/coins-bg.png b/Skins/awawawawadesu/coins-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/coins-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/coins-buy.png b/Skins/awawawawadesu/coins-buy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/coins-buy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/coins-earn.wav b/Skins/awawawawadesu/coins-earn.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/coins-earn.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/coins-recharge.wav b/Skins/awawawawadesu/coins-recharge.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/coins-recharge.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/coins-use.wav b/Skins/awawawawadesu/coins-use.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/coins-use.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/coins.png b/Skins/awawawawadesu/coins.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/coins.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/combobreak.mp3 b/Skins/awawawawadesu/combobreak.mp3 new file mode 100644 index 00000000..08b848ed --- /dev/null +++ b/Skins/awawawawadesu/combobreak.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfae734e13f06d7a71a83b7b6adf4cf85e12f2b6775e11fcff1b4fa65e485b5 +size 8776 diff --git a/Skins/awawawawadesu/comboburst.mp3 b/Skins/awawawawadesu/comboburst.mp3 new file mode 100644 index 00000000..c76caf14 --- /dev/null +++ b/Skins/awawawawadesu/comboburst.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0595cc896116f0d8c9053fcdefdee51751d5a8902cb30d033f8bc8edfcb6eab7 +size 27294 diff --git a/Skins/awawawawadesu/comboburst.png b/Skins/awawawawadesu/comboburst.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/awawawawadesu/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/awawawawadesu/count.wav b/Skins/awawawawadesu/count.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/awawawawadesu/count.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/awawawawadesu/count1.png b/Skins/awawawawadesu/count1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/count1s.wav b/Skins/awawawawadesu/count1s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/awawawawadesu/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/awawawawadesu/count2.png b/Skins/awawawawadesu/count2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/count2s.wav b/Skins/awawawawadesu/count2s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/awawawawadesu/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/awawawawadesu/count3.png b/Skins/awawawawadesu/count3.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/count3s.wav b/Skins/awawawawadesu/count3s.wav new file mode 100644 index 00000000..8864a237 --- /dev/null +++ b/Skins/awawawawadesu/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977a135f0949a829b9a1fead56ef9c963d836921f96ccadb1b0401376ffdf93f +size 529244 diff --git a/Skins/awawawawadesu/cursor.png b/Skins/awawawawadesu/cursor.png new file mode 100644 index 00000000..a16c8d91 --- /dev/null +++ b/Skins/awawawawadesu/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f9001712a3374b1b7a4d447978bcd087effbe8664f70c65873c46442d32f42 +size 2536 diff --git a/Skins/awawawawadesu/cursortrail.png b/Skins/awawawawadesu/cursortrail.png new file mode 100644 index 00000000..e5f3e23f --- /dev/null +++ b/Skins/awawawawadesu/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf92aeb64af70d57efd1eb0c32a624aa47fce8a3290f122eb851e1b6d9e38ec +size 4386 diff --git a/Skins/awawawawadesu/default-0.png b/Skins/awawawawadesu/default-0.png new file mode 100644 index 00000000..924a2dbc --- /dev/null +++ b/Skins/awawawawadesu/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a44c28d2c878cc0dda8d3901bccf1537f17a774b67c1a313d251c3514dbc2a8 +size 3299 diff --git a/Skins/awawawawadesu/default-1.png b/Skins/awawawawadesu/default-1.png new file mode 100644 index 00000000..343e57f9 --- /dev/null +++ b/Skins/awawawawadesu/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3724dffbed325c7b9b2430179e402d704891cf7f2b53eb91705bce1b66ddee08 +size 2943 diff --git a/Skins/awawawawadesu/default-2.png b/Skins/awawawawadesu/default-2.png new file mode 100644 index 00000000..abd1c947 --- /dev/null +++ b/Skins/awawawawadesu/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa8b4efba44e76a89684bcac77d95e1bdec31692195c33e3c0a5af169e6ce6d +size 3316 diff --git a/Skins/awawawawadesu/default-3.png b/Skins/awawawawadesu/default-3.png new file mode 100644 index 00000000..a2b5c0cf --- /dev/null +++ b/Skins/awawawawadesu/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43b332efd70d0e52a64b9473f3031773fa10c519d8c8b30b29e79f9e54da7f63 +size 3405 diff --git a/Skins/awawawawadesu/default-4.png b/Skins/awawawawadesu/default-4.png new file mode 100644 index 00000000..7cf2961d --- /dev/null +++ b/Skins/awawawawadesu/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b79bd06442556de8252dd3ac21d85536ac7278d29432e6f29c2273c16bd7a4c +size 3129 diff --git a/Skins/awawawawadesu/default-5.png b/Skins/awawawawadesu/default-5.png new file mode 100644 index 00000000..2a7642c8 --- /dev/null +++ b/Skins/awawawawadesu/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e843d8be3fde7e2c54d142833132d80927ed4fe6aaf7137926ba4e47990105 +size 3307 diff --git a/Skins/awawawawadesu/default-6.png b/Skins/awawawawadesu/default-6.png new file mode 100644 index 00000000..6c821fb1 --- /dev/null +++ b/Skins/awawawawadesu/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c4279f4d2b8730fb4e2f1b7946c2cf774be073ad81929936ccc25487a877cda +size 3404 diff --git a/Skins/awawawawadesu/default-7.png b/Skins/awawawawadesu/default-7.png new file mode 100644 index 00000000..0d97e760 --- /dev/null +++ b/Skins/awawawawadesu/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c479e9e9c7fe562d2e030d6498d62007b998018f013cef319b5a1beb09b43397 +size 3136 diff --git a/Skins/awawawawadesu/default-8.png b/Skins/awawawawadesu/default-8.png new file mode 100644 index 00000000..17c64388 --- /dev/null +++ b/Skins/awawawawadesu/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd5e22b1fcb057c0c32587143681dbca4c56239c352a15b9f10c38aaf896895 +size 3424 diff --git a/Skins/awawawawadesu/default-9.png b/Skins/awawawawadesu/default-9.png new file mode 100644 index 00000000..37fcc9e9 --- /dev/null +++ b/Skins/awawawawadesu/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484b1ee0c540744860651d26497dcdb80d17e350442b40b5c27561b9155f0371 +size 3415 diff --git a/Skins/awawawawadesu/default-comma.png b/Skins/awawawawadesu/default-comma.png new file mode 100644 index 00000000..ee70fbfb --- /dev/null +++ b/Skins/awawawawadesu/default-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ba0b26623cb46b8b92c6d0a176fe8164a93775cce87eda0bff9af21ecc5d04 +size 844 diff --git a/Skins/awawawawadesu/default-dot.png b/Skins/awawawawadesu/default-dot.png new file mode 100644 index 00000000..10bd57aa --- /dev/null +++ b/Skins/awawawawadesu/default-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e87d5cccb44ab86e20f64c25347be8dc292624510e415721268f47f439a293b +size 681 diff --git a/Skins/awawawawadesu/default-percent.png b/Skins/awawawawadesu/default-percent.png new file mode 100644 index 00000000..6963dade --- /dev/null +++ b/Skins/awawawawadesu/default-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:900a7f2e5ba3803870232d3b83aa60fe6e285e48203c12c7642e5bd34529e06e +size 2271 diff --git a/Skins/awawawawadesu/default-x.png b/Skins/awawawawadesu/default-x.png new file mode 100644 index 00000000..4e6cdd4a --- /dev/null +++ b/Skins/awawawawadesu/default-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64c128d5b08be23b0eb85bc9b4f6ef29abb5f75e71ebed62b14b07b517ee76c +size 1853 diff --git a/Skins/awawawawadesu/drum--hitwhistle.wav b/Skins/awawawawadesu/drum--hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/drum--hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/drum-hitclap.wav b/Skins/awawawawadesu/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/awawawawadesu/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/awawawawadesu/drum-hitclap2.wav b/Skins/awawawawadesu/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/awawawawadesu/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/awawawawadesu/drum-hitfinish.wav b/Skins/awawawawadesu/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/awawawawadesu/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/awawawawadesu/drum-hitnormal.wav b/Skins/awawawawadesu/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/awawawawadesu/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/awawawawadesu/drum-hitnormalh.wav b/Skins/awawawawadesu/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/awawawawadesu/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/awawawawadesu/drum-hitwhistle.wav b/Skins/awawawawadesu/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/awawawawadesu/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/awawawawadesu/drum-sliderslide.wav b/Skins/awawawawadesu/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/drum-slidertick.wav b/Skins/awawawawadesu/drum-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/awawawawadesu/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/awawawawadesu/drum-sliderwhistle.wav b/Skins/awawawawadesu/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/fail-background@2x.png b/Skins/awawawawadesu/fail-background@2x.png new file mode 100644 index 00000000..5b15ed57 --- /dev/null +++ b/Skins/awawawawadesu/fail-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b159daa176348e88b4307971d13d934871bc69f82fea903f95157974f79df7c +size 121722 diff --git a/Skins/awawawawadesu/failsound.mp3 b/Skins/awawawawadesu/failsound.mp3 new file mode 100644 index 00000000..051af748 --- /dev/null +++ b/Skins/awawawawadesu/failsound.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e545c91cb92c275d4960870b1988627079fe5d3447a8431d9666e58e66c4b7 +size 4223196 diff --git a/Skins/awawawawadesu/followpoint-0.png b/Skins/awawawawadesu/followpoint-0.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/awawawawadesu/followpoint-1.png b/Skins/awawawawadesu/followpoint-1.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/awawawawadesu/followpoint-2.png b/Skins/awawawawadesu/followpoint-2.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/awawawawadesu/followpoint-3.png b/Skins/awawawawadesu/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/awawawawadesu/followpoint-4.png b/Skins/awawawawadesu/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/awawawawadesu/followpoint-5.png b/Skins/awawawawadesu/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/awawawawadesu/followpoint-6.png b/Skins/awawawawadesu/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/awawawawadesu/followpoint-7.png b/Skins/awawawawadesu/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/awawawawadesu/followpoint-7s.png b/Skins/awawawawadesu/followpoint-7s.png new file mode 100644 index 00000000..a04ee058 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-7s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77d2518e8c2ac782028bf1fe1cfbc21424ad35f7b71bcd12987b651b05239cd +size 836 diff --git a/Skins/awawawawadesu/followpoint-8.png b/Skins/awawawawadesu/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/awawawawadesu/followpoint-9.png b/Skins/awawawawadesu/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/awawawawadesu/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/awawawawadesu/followpoint.png b/Skins/awawawawadesu/followpoint.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/go.png b/Skins/awawawawadesu/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/awawawawadesu/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/awawawawadesu/gos.wav b/Skins/awawawawadesu/gos.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/awawawawadesu/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/awawawawadesu/heartbeat.wav b/Skins/awawawawadesu/heartbeat.wav new file mode 100644 index 00000000..a6285b14 --- /dev/null +++ b/Skins/awawawawadesu/heartbeat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ad36d832c0fc0d5ea2b36c686428863253c61b4fcef57f8cb0993a4f195908 +size 84844 diff --git a/Skins/awawawawadesu/hit0-0.png b/Skins/awawawawadesu/hit0-0.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-1.png b/Skins/awawawawadesu/hit0-1.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-10.png b/Skins/awawawawadesu/hit0-10.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-11.png b/Skins/awawawawadesu/hit0-11.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-12.png b/Skins/awawawawadesu/hit0-12.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-13.png b/Skins/awawawawadesu/hit0-13.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-14.png b/Skins/awawawawadesu/hit0-14.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-15.png b/Skins/awawawawadesu/hit0-15.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-2.png b/Skins/awawawawadesu/hit0-2.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-3.png b/Skins/awawawawadesu/hit0-3.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-4.png b/Skins/awawawawadesu/hit0-4.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-5.png b/Skins/awawawawadesu/hit0-5.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-6.png b/Skins/awawawawadesu/hit0-6.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-7.png b/Skins/awawawawadesu/hit0-7.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-8.png b/Skins/awawawawadesu/hit0-8.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0-9.png b/Skins/awawawawadesu/hit0-9.png new file mode 100644 index 00000000..291967ab --- /dev/null +++ b/Skins/awawawawadesu/hit0-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36beb71f9e28c37d62e173f651a20bc08dbdc71a7276d76b4d6647ec148cc66d +size 4404 diff --git a/Skins/awawawawadesu/hit0.png b/Skins/awawawawadesu/hit0.png new file mode 100644 index 00000000..a964edec --- /dev/null +++ b/Skins/awawawawadesu/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e98979eed17ae293fde5a7c2317f603830c1c99f98f5618c2df1a4adadea68c +size 1417 diff --git a/Skins/awawawawadesu/hit100-0.png b/Skins/awawawawadesu/hit100-0.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-1.png b/Skins/awawawawadesu/hit100-1.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-10.png b/Skins/awawawawadesu/hit100-10.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-11.png b/Skins/awawawawadesu/hit100-11.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-12.png b/Skins/awawawawadesu/hit100-12.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-13.png b/Skins/awawawawadesu/hit100-13.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-14.png b/Skins/awawawawadesu/hit100-14.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-15.png b/Skins/awawawawadesu/hit100-15.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-2.png b/Skins/awawawawadesu/hit100-2.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-3.png b/Skins/awawawawadesu/hit100-3.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-4.png b/Skins/awawawawadesu/hit100-4.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-5.png b/Skins/awawawawadesu/hit100-5.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-6.png b/Skins/awawawawadesu/hit100-6.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-7.png b/Skins/awawawawadesu/hit100-7.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-8.png b/Skins/awawawawadesu/hit100-8.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100-9.png b/Skins/awawawawadesu/hit100-9.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100.png b/Skins/awawawawadesu/hit100.png new file mode 100644 index 00000000..cee44962 --- /dev/null +++ b/Skins/awawawawadesu/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b556641517431e6ccc2dd59b1dcae316c5c0cee46583174f69cb442133972c2 +size 1406 diff --git a/Skins/awawawawadesu/hit100k-0.png b/Skins/awawawawadesu/hit100k-0.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-1.png b/Skins/awawawawadesu/hit100k-1.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-10.png b/Skins/awawawawadesu/hit100k-10.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-11.png b/Skins/awawawawadesu/hit100k-11.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-12.png b/Skins/awawawawadesu/hit100k-12.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-13.png b/Skins/awawawawadesu/hit100k-13.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-14.png b/Skins/awawawawadesu/hit100k-14.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-15.png b/Skins/awawawawadesu/hit100k-15.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-2.png b/Skins/awawawawadesu/hit100k-2.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-3.png b/Skins/awawawawadesu/hit100k-3.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-4.png b/Skins/awawawawadesu/hit100k-4.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-5.png b/Skins/awawawawadesu/hit100k-5.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-6.png b/Skins/awawawawadesu/hit100k-6.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-7.png b/Skins/awawawawadesu/hit100k-7.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-8.png b/Skins/awawawawadesu/hit100k-8.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k-9.png b/Skins/awawawawadesu/hit100k-9.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit100k.png b/Skins/awawawawadesu/hit100k.png new file mode 100644 index 00000000..cee44962 --- /dev/null +++ b/Skins/awawawawadesu/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b556641517431e6ccc2dd59b1dcae316c5c0cee46583174f69cb442133972c2 +size 1406 diff --git a/Skins/awawawawadesu/hit100k1.png b/Skins/awawawawadesu/hit100k1.png new file mode 100644 index 00000000..baa58425 --- /dev/null +++ b/Skins/awawawawadesu/hit100k1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc76454f9f43fe7d8fb1675b31791c8d6393915418940d3197af7ca9e82165 +size 6416 diff --git a/Skins/awawawawadesu/hit300-0.png b/Skins/awawawawadesu/hit300-0.png new file mode 100644 index 00000000..e2b93dc2 --- /dev/null +++ b/Skins/awawawawadesu/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7a60fc267b1154c05a62f472daca86d42e7b145c09b674db604569fa303d9c +size 2792 diff --git a/Skins/awawawawadesu/hit300.png b/Skins/awawawawadesu/hit300.png new file mode 100644 index 00000000..bebee13d --- /dev/null +++ b/Skins/awawawawadesu/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92a0efa1f778b60e87c45472aefff9eca355205f548c97922982369f4ca67f9 +size 15303 diff --git a/Skins/awawawawadesu/hit300g-0.png b/Skins/awawawawadesu/hit300g-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/hit300g.png b/Skins/awawawawadesu/hit300g.png new file mode 100644 index 00000000..06898bd1 --- /dev/null +++ b/Skins/awawawawadesu/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9dce9a7b07b046e0339f3d42f6533d4c192a82152a35c8604a6ca2acce8139 +size 15303 diff --git a/Skins/awawawawadesu/hit300k-0.png b/Skins/awawawawadesu/hit300k-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/hit300k.png b/Skins/awawawawadesu/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/awawawawadesu/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/awawawawadesu/hit50-0.png b/Skins/awawawawadesu/hit50-0.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-1.png b/Skins/awawawawadesu/hit50-1.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-10.png b/Skins/awawawawadesu/hit50-10.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-11.png b/Skins/awawawawadesu/hit50-11.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-12.png b/Skins/awawawawadesu/hit50-12.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-13.png b/Skins/awawawawadesu/hit50-13.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-14.png b/Skins/awawawawadesu/hit50-14.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-15.png b/Skins/awawawawadesu/hit50-15.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-2.png b/Skins/awawawawadesu/hit50-2.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-3.png b/Skins/awawawawadesu/hit50-3.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-4.png b/Skins/awawawawadesu/hit50-4.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-5.png b/Skins/awawawawadesu/hit50-5.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-6.png b/Skins/awawawawadesu/hit50-6.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-7.png b/Skins/awawawawadesu/hit50-7.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-8.png b/Skins/awawawawadesu/hit50-8.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50-9.png b/Skins/awawawawadesu/hit50-9.png new file mode 100644 index 00000000..a1c7ab89 --- /dev/null +++ b/Skins/awawawawadesu/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cf679bee004e89034fda4132c064b3f953341c9ea011e21aab7496b14da720 +size 5292 diff --git a/Skins/awawawawadesu/hit50.png b/Skins/awawawawadesu/hit50.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-0.png b/Skins/awawawawadesu/hit50k-0.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-1.png b/Skins/awawawawadesu/hit50k-1.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-10.png b/Skins/awawawawadesu/hit50k-10.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-11.png b/Skins/awawawawadesu/hit50k-11.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-12.png b/Skins/awawawawadesu/hit50k-12.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-13.png b/Skins/awawawawadesu/hit50k-13.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-14.png b/Skins/awawawawadesu/hit50k-14.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-15.png b/Skins/awawawawadesu/hit50k-15.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-2.png b/Skins/awawawawadesu/hit50k-2.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-3.png b/Skins/awawawawadesu/hit50k-3.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-4.png b/Skins/awawawawadesu/hit50k-4.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-5.png b/Skins/awawawawadesu/hit50k-5.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-6.png b/Skins/awawawawadesu/hit50k-6.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-7.png b/Skins/awawawawadesu/hit50k-7.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-8.png b/Skins/awawawawadesu/hit50k-8.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k-9.png b/Skins/awawawawadesu/hit50k-9.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hit50k.png b/Skins/awawawawadesu/hit50k.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/awawawawadesu/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/awawawawadesu/hitcircle.png b/Skins/awawawawadesu/hitcircle.png new file mode 100644 index 00000000..fa39da30 --- /dev/null +++ b/Skins/awawawawadesu/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d52383eae62099c423dfabdea50032aaedd6ebf91c140b7657997ab305d1318 +size 5936 diff --git a/Skins/awawawawadesu/hitcircleoverlay2x.png b/Skins/awawawawadesu/hitcircleoverlay2x.png new file mode 100644 index 00000000..92f13355 --- /dev/null +++ b/Skins/awawawawadesu/hitcircleoverlay2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425c071a1c5f428df04a2bb264900d35590cfd40c9b63c2417f9876c484818bb +size 44290 diff --git a/Skins/awawawawadesu/hitcircleoverlay@2x.png b/Skins/awawawawadesu/hitcircleoverlay@2x.png new file mode 100644 index 00000000..c9f9e446 --- /dev/null +++ b/Skins/awawawawadesu/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf08ce9acd034e56e41c71c1d2a1f3cc78a7e0114b4c5d6e58f323b7c775bdc +size 20717 diff --git a/Skins/awawawawadesu/hitcircleselect.png b/Skins/awawawawadesu/hitcircleselect.png new file mode 100644 index 00000000..d8271622 --- /dev/null +++ b/Skins/awawawawadesu/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8e03cd30f94d4afd3eaf219f1801bc783130e1b4566d2b4035103ac98b8e895 +size 6957 diff --git a/Skins/awawawawadesu/hitcircleselect@2x.png b/Skins/awawawawadesu/hitcircleselect@2x.png new file mode 100644 index 00000000..796fa239 --- /dev/null +++ b/Skins/awawawawadesu/hitcircleselect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948dc3875aea0743ff0c5e79cc4dea2d38e73909620296371c52e341af91e05 +size 10181 diff --git a/Skins/awawawawadesu/images.jpg b/Skins/awawawawadesu/images.jpg new file mode 100644 index 00000000..d574fbdf --- /dev/null +++ b/Skins/awawawawadesu/images.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f686b5d74635ecd779f7b676c063154e9c2e8752868562017b78945365ee2e8 +size 5995 diff --git a/Skins/awawawawadesu/inputoverlay-background.png b/Skins/awawawawadesu/inputoverlay-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/inputoverlay-key.png b/Skins/awawawawadesu/inputoverlay-key.png new file mode 100644 index 00000000..c7f3a40f --- /dev/null +++ b/Skins/awawawawadesu/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba0e722c93db3b0acbc4f682c56d2d256e9b763bcea401d794bdb6ea882f170 +size 4775 diff --git a/Skins/awawawawadesu/key-movement.wav b/Skins/awawawawadesu/key-movement.wav new file mode 100644 index 00000000..5305275f --- /dev/null +++ b/Skins/awawawawadesu/key-movement.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a1ecfb7926542a9fd103befddc47a1f7f9061402c0abe7bc77123e9219064b +size 7560 diff --git a/Skins/awawawawadesu/key-press-1.wav b/Skins/awawawawadesu/key-press-1.wav new file mode 100644 index 00000000..432234c2 --- /dev/null +++ b/Skins/awawawawadesu/key-press-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a626acb901b7374fbaba05ed3dfddc018865919c77451139baab7409118883 +size 83960 diff --git a/Skins/awawawawadesu/key-press-2.wav b/Skins/awawawawadesu/key-press-2.wav new file mode 100644 index 00000000..441750ff --- /dev/null +++ b/Skins/awawawawadesu/key-press-2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:887e6db134f6669f707eee4f8246ce0fed60caf650c66ae756a1383d681df645 +size 83960 diff --git a/Skins/awawawawadesu/key-press-3.wav b/Skins/awawawawadesu/key-press-3.wav new file mode 100644 index 00000000..52c6943b --- /dev/null +++ b/Skins/awawawawadesu/key-press-3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f01b9f79d82c9b2729a90b81e69eda2a1efabefbc17fd8a7e60d9a20a3b506 +size 83960 diff --git a/Skins/awawawawadesu/key-press-4.wav b/Skins/awawawawadesu/key-press-4.wav new file mode 100644 index 00000000..811c9e89 --- /dev/null +++ b/Skins/awawawawadesu/key-press-4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c86742e5f317553795cef94a3505bc667545e01c0a18ad935d5246314487ce0 +size 83960 diff --git a/Skins/awawawawadesu/lighting.png b/Skins/awawawawadesu/lighting.png new file mode 100644 index 00000000..de31a1ac --- /dev/null +++ b/Skins/awawawawadesu/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9714c7d4c11c99083585c090a0a01669e2048c50389cc0abd1afdcaaf9af59b1 +size 10840 diff --git a/Skins/awawawawadesu/match-confirm.wav b/Skins/awawawawadesu/match-confirm.wav new file mode 100644 index 00000000..47844317 --- /dev/null +++ b/Skins/awawawawadesu/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0ab5e98bd302fb02df8061f9463b0206a009bac678cb62502e8f732792431e +size 219592 diff --git a/Skins/awawawawadesu/match-join.wav b/Skins/awawawawadesu/match-join.wav new file mode 100644 index 00000000..bedfb622 --- /dev/null +++ b/Skins/awawawawadesu/match-join.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8429b7ef5e3df599cc1aaded442e80e6788dcc78d20983b7be9b2e2ac95917af +size 191560 diff --git a/Skins/awawawawadesu/match-leave.wav b/Skins/awawawawadesu/match-leave.wav new file mode 100644 index 00000000..d1e7e257 --- /dev/null +++ b/Skins/awawawawadesu/match-leave.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09b9efdd7460a893db2d0488aa4b3cc9e4eb724f6ada8ae8a3b0f082b9642b2 +size 496892 diff --git a/Skins/awawawawadesu/match-notready.wav b/Skins/awawawawadesu/match-notready.wav new file mode 100644 index 00000000..22fc6748 --- /dev/null +++ b/Skins/awawawawadesu/match-notready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6061a4b2be62c9d0a1d52da0fef2e6e3686abfeebf886f24f055a897bd9f4393 +size 46536 diff --git a/Skins/awawawawadesu/match-ready.wav b/Skins/awawawawadesu/match-ready.wav new file mode 100644 index 00000000..a354d627 --- /dev/null +++ b/Skins/awawawawadesu/match-ready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3baaf74f9cca55ab09a4b083aab7788d2adeca900a56e6efc82b35c8d57803b5 +size 267728 diff --git a/Skins/awawawawadesu/match-start.wav b/Skins/awawawawadesu/match-start.wav new file mode 100644 index 00000000..fa819fa2 --- /dev/null +++ b/Skins/awawawawadesu/match-start.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64290de79ddb65506c5613b2d8434d89cf5a450924df679fb6bfefab877961cd +size 219592 diff --git a/Skins/awawawawadesu/menu-back-click.wav b/Skins/awawawawadesu/menu-back-click.wav new file mode 100644 index 00000000..3074bcd5 --- /dev/null +++ b/Skins/awawawawadesu/menu-back-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b2819865b7f33fc5d5120a6cddc7a6ff1c139ab6252205fbaab92d8808bc25 +size 59694 diff --git a/Skins/awawawawadesu/menu-back-hover.wav b/Skins/awawawawadesu/menu-back-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/menu-back@2x.png b/Skins/awawawawadesu/menu-back@2x.png new file mode 100644 index 00000000..c4542a7b --- /dev/null +++ b/Skins/awawawawadesu/menu-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6d89eafbd86fbb561c93fe4be4097f07e08acd4ad5a3bf712aa8d7ad6d344e +size 93315 diff --git a/Skins/awawawawadesu/menu-background.jpg b/Skins/awawawawadesu/menu-background.jpg new file mode 100644 index 00000000..4afd0080 --- /dev/null +++ b/Skins/awawawawadesu/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344cdcbb1f1d5a07268384bf5cde965134e6570b794b4aed104923982fd87670 +size 2223138 diff --git a/Skins/awawawawadesu/menu-button-background.png b/Skins/awawawawadesu/menu-button-background.png new file mode 100644 index 00000000..91554951 --- /dev/null +++ b/Skins/awawawawadesu/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700ee6b821dc73fc3c2e8d9c41de4f80f0e269e7fcf9dfeb79d49547a19f9a8e +size 14010 diff --git a/Skins/awawawawadesu/menu-charts-hover.wav b/Skins/awawawawadesu/menu-charts-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/menu-direct-click.wav b/Skins/awawawawadesu/menu-direct-click.wav new file mode 100644 index 00000000..697b5f77 --- /dev/null +++ b/Skins/awawawawadesu/menu-direct-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac498a687812ffe239ac9ecffea6e98dc654c809abb5e6fba5d651b07fa64cb8 +size 59694 diff --git a/Skins/awawawawadesu/menu-direct-hover.wav b/Skins/awawawawadesu/menu-direct-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/menu-edit-click.wav b/Skins/awawawawadesu/menu-edit-click.wav new file mode 100644 index 00000000..f6d774cc --- /dev/null +++ b/Skins/awawawawadesu/menu-edit-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1555ce4a32ff437ef0665167dc7c9e43a6f1bd28b5575a8ea75242b63a63f4cc +size 106734 diff --git a/Skins/awawawawadesu/menu-edit-hover.wav b/Skins/awawawawadesu/menu-edit-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/menu-exit-click.wav b/Skins/awawawawadesu/menu-exit-click.wav new file mode 100644 index 00000000..38b86c77 --- /dev/null +++ b/Skins/awawawawadesu/menu-exit-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b98adc1526d3a6a42340f76a1cc42d2c352c5a314185f8bdac8e0766ce3185 +size 433074 diff --git a/Skins/awawawawadesu/menu-exit-hover.wav b/Skins/awawawawadesu/menu-exit-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/menu-freeplay-click.wav b/Skins/awawawawadesu/menu-freeplay-click.wav new file mode 100644 index 00000000..f79c5da3 --- /dev/null +++ b/Skins/awawawawadesu/menu-freeplay-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e889e00feb2a781ab918610c372f0c5cac80d60f54ad2a11fb9a00982ef05f +size 33234 diff --git a/Skins/awawawawadesu/menu-freeplay-hover.wav b/Skins/awawawawadesu/menu-freeplay-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/menu-multiplayer-click.wav b/Skins/awawawawadesu/menu-multiplayer-click.wav new file mode 100644 index 00000000..379bb190 --- /dev/null +++ b/Skins/awawawawadesu/menu-multiplayer-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860ca09cea9be3f4fff5e78ec965f003a38fa5157774d66a1720ec44f006ac8a +size 47934 diff --git a/Skins/awawawawadesu/menu-multiplayer-hover.wav b/Skins/awawawawadesu/menu-multiplayer-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/menu-options-click.wav b/Skins/awawawawadesu/menu-options-click.wav new file mode 100644 index 00000000..55e0b73d --- /dev/null +++ b/Skins/awawawawadesu/menu-options-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2594a1b5d96a23f25144359b20fd55245e372d9a91e9736050207bd0d11fc935 +size 33234 diff --git a/Skins/awawawawadesu/menu-options-hover.wav b/Skins/awawawawadesu/menu-options-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/menu-options-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/menu-play-click.wav b/Skins/awawawawadesu/menu-play-click.wav new file mode 100644 index 00000000..808c1764 --- /dev/null +++ b/Skins/awawawawadesu/menu-play-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:152faf09047c15676616987b8cfe283f2e970dca774af0173159a56c7eb1a107 +size 71450 diff --git a/Skins/awawawawadesu/menu-play-hover.wav b/Skins/awawawawadesu/menu-play-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/menu-snow.png b/Skins/awawawawadesu/menu-snow.png new file mode 100644 index 00000000..40928476 --- /dev/null +++ b/Skins/awawawawadesu/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40249e7ddec248ed55eb201c49dfd8832d46859ff6b0697ed56e46792e954b7e +size 2827 diff --git a/Skins/awawawawadesu/menu-snow@2x.png b/Skins/awawawawadesu/menu-snow@2x.png new file mode 100644 index 00000000..7486006b --- /dev/null +++ b/Skins/awawawawadesu/menu-snow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4f68274d893821a0de6a604c4759eca03270efcb9cbdfa244d0dae4cec023 +size 8157 diff --git a/Skins/awawawawadesu/menuback.mp3 b/Skins/awawawawadesu/menuback.mp3 new file mode 100644 index 00000000..c8fb6d0b --- /dev/null +++ b/Skins/awawawawadesu/menuback.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc14db6331645f540c655c388cde46c8d43ab2c33ebadafc28dfff920c437ab0 +size 3052 diff --git a/Skins/awawawawadesu/menuback.wav b/Skins/awawawawadesu/menuback.wav new file mode 100644 index 00000000..099f0974 --- /dev/null +++ b/Skins/awawawawadesu/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac014594a2428c3496a9cbb58dc55a9e8f71459713f7981d6cb14ae09c197a3a +size 288040 diff --git a/Skins/awawawawadesu/menuclick.wav b/Skins/awawawawadesu/menuclick.wav new file mode 100644 index 00000000..1bda8366 --- /dev/null +++ b/Skins/awawawawadesu/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b798a0a67e1f24d19ce49ac57868ff02cdea55e1d455c69e105a41ee794131 +size 9714 diff --git a/Skins/awawawawadesu/menuhit.mp3 b/Skins/awawawawadesu/menuhit.mp3 new file mode 100644 index 00000000..bdb1e251 --- /dev/null +++ b/Skins/awawawawadesu/menuhit.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4cd99a40608f367a38783f628e00cb8628081d6ec70120440d1271da2d5b26 +size 3470 diff --git a/Skins/awawawawadesu/menuhit.wav b/Skins/awawawawadesu/menuhit.wav new file mode 100644 index 00000000..8e76527f --- /dev/null +++ b/Skins/awawawawadesu/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07860ade1ebb31bcab926957e8dc1be5a0ccc16836569289ac2940ff54f785f7 +size 18526 diff --git a/Skins/awawawawadesu/metronomehigh.wav b/Skins/awawawawadesu/metronomehigh.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/awawawawadesu/metronomehigh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/awawawawadesu/metronomelow.wav b/Skins/awawawawadesu/metronomelow.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/awawawawadesu/metronomelow.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/awawawawadesu/mode-osu-small@2x.png b/Skins/awawawawadesu/mode-osu-small@2x.png new file mode 100644 index 00000000..f5b0b0fb --- /dev/null +++ b/Skins/awawawawadesu/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8917ff9c7fc3b2af21339647190163d65cc0c290a4069f0c0580dabbcc4ca8f +size 82277 diff --git a/Skins/awawawawadesu/nightcore-clap.wav b/Skins/awawawawadesu/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/nightcore-finish.wav b/Skins/awawawawadesu/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/nightcore-hat.wav b/Skins/awawawawadesu/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/nightcore-kick.wav b/Skins/awawawawadesu/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/nomal-sliderslide.wav b/Skins/awawawawadesu/nomal-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/awawawawadesu/nomal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/awawawawadesu/normal-hitclap.wav b/Skins/awawawawadesu/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/awawawawadesu/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/awawawawadesu/normal-hitclap2.wav b/Skins/awawawawadesu/normal-hitclap2.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/awawawawadesu/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/awawawawadesu/normal-hitfinish.wav b/Skins/awawawawadesu/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/awawawawadesu/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/awawawawadesu/normal-hitfinish2.wav b/Skins/awawawawadesu/normal-hitfinish2.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/awawawawadesu/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/awawawawadesu/normal-hitnormal.wav b/Skins/awawawawadesu/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/awawawawadesu/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/awawawawadesu/normal-hitnormal1.wav b/Skins/awawawawadesu/normal-hitnormal1.wav new file mode 100644 index 00000000..cec1019d --- /dev/null +++ b/Skins/awawawawadesu/normal-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dca52d80e879542897592baeb72251656e0241e551940132d289a0d6d973d61 +size 25504 diff --git a/Skins/awawawawadesu/normal-hitnormal2.wav b/Skins/awawawawadesu/normal-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/awawawawadesu/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/awawawawadesu/normal-hitnormalh.wav b/Skins/awawawawadesu/normal-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/awawawawadesu/normal-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/awawawawadesu/normal-hitwhistle.wav b/Skins/awawawawadesu/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/awawawawadesu/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/awawawawadesu/normal-hitwhistle1.wav b/Skins/awawawawadesu/normal-hitwhistle1.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/awawawawadesu/normal-hitwhistle1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/awawawawadesu/normal-hitwhistle2.wav b/Skins/awawawawadesu/normal-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/awawawawadesu/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/awawawawadesu/normal-hitwistle.wav b/Skins/awawawawadesu/normal-hitwistle.wav new file mode 100644 index 00000000..7ca41433 --- /dev/null +++ b/Skins/awawawawadesu/normal-hitwistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f770d06b30853c8ed6b25464af6cf7b7f3f68c332dc8bcfa4ea23076f5445965 +size 13185 diff --git a/Skins/awawawawadesu/normal-sliderslide.wav b/Skins/awawawawadesu/normal-sliderslide.wav new file mode 100644 index 00000000..1e3ce6de --- /dev/null +++ b/Skins/awawawawadesu/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed0124d2cb24c524ac61555e4ecffbdbee12641f54d8497e93495b411c476b2 +size 223744 diff --git a/Skins/awawawawadesu/normal-sliderslide2.wav b/Skins/awawawawadesu/normal-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/normal-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/normal-slidertick.wav b/Skins/awawawawadesu/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/awawawawadesu/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/awawawawadesu/normal-slidertick2.wav b/Skins/awawawawadesu/normal-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/normal-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/normal-sliderwhistle.wav b/Skins/awawawawadesu/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/awawawawadesu/normal-sliderwhistle2.wav b/Skins/awawawawadesu/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/pause-back-click.wav b/Skins/awawawawadesu/pause-back-click.wav new file mode 100644 index 00000000..f5e1ca04 --- /dev/null +++ b/Skins/awawawawadesu/pause-back-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd20d86b9556fb45177994badc69b19bdce9469b827db814d20f655f6815c0c +size 173070 diff --git a/Skins/awawawawadesu/pause-back-hover.wav b/Skins/awawawawadesu/pause-back-hover.wav new file mode 100644 index 00000000..3f3265af --- /dev/null +++ b/Skins/awawawawadesu/pause-back-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264df45ac7bc6213dc129b504044b9d05dca4bbe1160002db3cd17358a130573 +size 28922 diff --git a/Skins/awawawawadesu/pause-back.png b/Skins/awawawawadesu/pause-back.png new file mode 100644 index 00000000..bc38a908 --- /dev/null +++ b/Skins/awawawawadesu/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0876567294a28fac74f6988b0df64acfab051509dbcb5d4a3b42621b4ee530 +size 4548 diff --git a/Skins/awawawawadesu/pause-back@2x.png b/Skins/awawawawadesu/pause-back@2x.png new file mode 100644 index 00000000..2ceeec0a --- /dev/null +++ b/Skins/awawawawadesu/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6251f1404fad6d585982841950b7b32024f3da53325699659ab7f6458a0b177f +size 10145 diff --git a/Skins/awawawawadesu/pause-continue-hover.wav b/Skins/awawawawadesu/pause-continue-hover.wav new file mode 100644 index 00000000..3f3265af --- /dev/null +++ b/Skins/awawawawadesu/pause-continue-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264df45ac7bc6213dc129b504044b9d05dca4bbe1160002db3cd17358a130573 +size 28922 diff --git a/Skins/awawawawadesu/pause-continue.png b/Skins/awawawawadesu/pause-continue.png new file mode 100644 index 00000000..d1eeebb3 --- /dev/null +++ b/Skins/awawawawadesu/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0a9989049807fe4c1863201d7aefc16be1cd536e107f7c9d7f1e904fb9f3f3 +size 4526 diff --git a/Skins/awawawawadesu/pause-continue@2x.png b/Skins/awawawawadesu/pause-continue@2x.png new file mode 100644 index 00000000..0f523048 --- /dev/null +++ b/Skins/awawawawadesu/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893bd35a97bebd18b90805801c6fe7178459f6e4d2c8a237a607703ab7b570aa +size 9031 diff --git a/Skins/awawawawadesu/pause-loop.wav b/Skins/awawawawadesu/pause-loop.wav new file mode 100644 index 00000000..92895ab7 --- /dev/null +++ b/Skins/awawawawadesu/pause-loop.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b876ef8ab417b2dbf521b82817a148200a72c695b66268334c22f186361a81 +size 3175394 diff --git a/Skins/awawawawadesu/pause-overlay@2x.png b/Skins/awawawawadesu/pause-overlay@2x.png new file mode 100644 index 00000000..5b15ed57 --- /dev/null +++ b/Skins/awawawawadesu/pause-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b159daa176348e88b4307971d13d934871bc69f82fea903f95157974f79df7c +size 121722 diff --git a/Skins/awawawawadesu/pause-replay.png b/Skins/awawawawadesu/pause-replay.png new file mode 100644 index 00000000..d6b0ad21 --- /dev/null +++ b/Skins/awawawawadesu/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6870ebb8f31d54a7616ab39f9ef031e4dcc19ab621c304b4aea7ae6a0747493c +size 5490 diff --git a/Skins/awawawawadesu/pause-replay@2x.png b/Skins/awawawawadesu/pause-replay@2x.png new file mode 100644 index 00000000..c60a6846 --- /dev/null +++ b/Skins/awawawawadesu/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af01fe6c9d30882bb7414ba3cb9b5539fc309382b795dd757f89e551b915cb89 +size 8592 diff --git a/Skins/awawawawadesu/pause-retry-hover.wav b/Skins/awawawawadesu/pause-retry-hover.wav new file mode 100644 index 00000000..3f3265af --- /dev/null +++ b/Skins/awawawawadesu/pause-retry-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264df45ac7bc6213dc129b504044b9d05dca4bbe1160002db3cd17358a130573 +size 28922 diff --git a/Skins/awawawawadesu/pause-retry.png b/Skins/awawawawadesu/pause-retry.png new file mode 100644 index 00000000..02576c87 --- /dev/null +++ b/Skins/awawawawadesu/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f16124566168fc3b5df1e1631c6f5db6483637d366b9e10dae4adbdf40fcc5 +size 5178 diff --git a/Skins/awawawawadesu/pause-retry@2x.png b/Skins/awawawawadesu/pause-retry@2x.png new file mode 100644 index 00000000..50e4679b --- /dev/null +++ b/Skins/awawawawadesu/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48313255b51ad7fb8b3757d57b6ee22733d40332c617c7af5c9ae0ae4e0560bb +size 13821 diff --git a/Skins/awawawawadesu/play-skip.png b/Skins/awawawawadesu/play-skip.png new file mode 100644 index 00000000..d5d6c320 --- /dev/null +++ b/Skins/awawawawadesu/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5520b1f379036c369e6c7cd386de79b429ad38d058621fc10a239404d3c5bc02 +size 32478 diff --git a/Skins/awawawawadesu/play-skip@2x.png b/Skins/awawawawadesu/play-skip@2x.png new file mode 100644 index 00000000..ef176bc8 --- /dev/null +++ b/Skins/awawawawadesu/play-skip@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ebf2edc0acd45683f33996938f2884e62ed7c7e14839356771c1f17913ee6b +size 848448 diff --git a/Skins/awawawawadesu/play-unranked.png b/Skins/awawawawadesu/play-unranked.png new file mode 100644 index 00000000..60b2ceb0 --- /dev/null +++ b/Skins/awawawawadesu/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c1f8ca878bd0e1f6cd97b764a73f85962e58739080ed4cc66cbea135d5b5c94 +size 9534 diff --git a/Skins/awawawawadesu/play-unranked@2x.png b/Skins/awawawawadesu/play-unranked@2x.png new file mode 100644 index 00000000..467eb22f --- /dev/null +++ b/Skins/awawawawadesu/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b6b6b29b3d8258b9d8a8ee7d254a7002bb895aede2a3a7a3e178944cc7e793 +size 9859 diff --git a/Skins/awawawawadesu/play-warningarrow.png b/Skins/awawawawadesu/play-warningarrow.png new file mode 100644 index 00000000..51dfbae2 --- /dev/null +++ b/Skins/awawawawadesu/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc937d17ecadba20e9b1de9dd22eb5698ee99b5d90978b6124f08efc298cfa2c +size 3328 diff --git a/Skins/awawawawadesu/play-warningarrow@2x.png b/Skins/awawawawadesu/play-warningarrow@2x.png new file mode 100644 index 00000000..a852aa4b --- /dev/null +++ b/Skins/awawawawadesu/play-warningarrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e264b76bb14ea8d07baf834d3620d8ca0eb7ecce28d8c1cf55f52578c0350c +size 3899 diff --git a/Skins/awawawawadesu/playfield.png b/Skins/awawawawadesu/playfield.png new file mode 100644 index 00000000..214d0197 --- /dev/null +++ b/Skins/awawawawadesu/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac1eb5f0fbfc6a3af67863c7bc7912f8d2d03af8ee37c4d3c8be0882dadde32 +size 926815 diff --git a/Skins/awawawawadesu/ranking-A-small.png b/Skins/awawawawadesu/ranking-A-small.png new file mode 100644 index 00000000..d379ef31 --- /dev/null +++ b/Skins/awawawawadesu/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c087fdc356896fccb96d7d0e8198aaff9eaa24a98fc31b28bab18e20191c46b +size 1100 diff --git a/Skins/awawawawadesu/ranking-A-small@2x.png b/Skins/awawawawadesu/ranking-A-small@2x.png new file mode 100644 index 00000000..3b064a6a --- /dev/null +++ b/Skins/awawawawadesu/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee1b9a0e4243a3bfa003be1ef339c1a02716f59fa2704ff9797f31dcf87674e +size 2218 diff --git a/Skins/awawawawadesu/ranking-A.png b/Skins/awawawawadesu/ranking-A.png new file mode 100644 index 00000000..2cea8305 --- /dev/null +++ b/Skins/awawawawadesu/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd80a93f8abe8ce855fba01c843bc7705a87197b7363fa5ff76bdf985c45fb77 +size 29701 diff --git a/Skins/awawawawadesu/ranking-A@2x.png b/Skins/awawawawadesu/ranking-A@2x.png new file mode 100644 index 00000000..e69c922c --- /dev/null +++ b/Skins/awawawawadesu/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:171f36ee0a9b9f8a17875238b6bbddf479d8fb7a9f8b2937aaa65ff3b0ca812a +size 32428 diff --git a/Skins/awawawawadesu/ranking-B-small.png b/Skins/awawawawadesu/ranking-B-small.png new file mode 100644 index 00000000..199f361b --- /dev/null +++ b/Skins/awawawawadesu/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ada102910740384db43da47271bae24e4d57750e23024f3e5bb6bea9f461e3a +size 1032 diff --git a/Skins/awawawawadesu/ranking-B-small@2x.png b/Skins/awawawawadesu/ranking-B-small@2x.png new file mode 100644 index 00000000..836a20d3 --- /dev/null +++ b/Skins/awawawawadesu/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a3368aa527d3fde980ae65060dfed576ed256315573bdfbe57588e6f5f9eeb +size 2196 diff --git a/Skins/awawawawadesu/ranking-B.png b/Skins/awawawawadesu/ranking-B.png new file mode 100644 index 00000000..0697779b --- /dev/null +++ b/Skins/awawawawadesu/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c0c177ebff23e759742d0503261bb92612a11914f465a9a8eba57af28fbbd1 +size 20450 diff --git a/Skins/awawawawadesu/ranking-B@2x.png b/Skins/awawawawadesu/ranking-B@2x.png new file mode 100644 index 00000000..0178d6b9 --- /dev/null +++ b/Skins/awawawawadesu/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1106d15829ba301be1d044b27cf8752cad3cbb219f0ba0d7bea81920aa96ae8c +size 41416 diff --git a/Skins/awawawawadesu/ranking-C-small.png b/Skins/awawawawadesu/ranking-C-small.png new file mode 100644 index 00000000..7498c013 --- /dev/null +++ b/Skins/awawawawadesu/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e33a150d8da000f8c4788a197ade75b358fb5b13493e8c1f2e0478f9daec0c0 +size 1337 diff --git a/Skins/awawawawadesu/ranking-C-small@2x.png b/Skins/awawawawadesu/ranking-C-small@2x.png new file mode 100644 index 00000000..2f1dc62e --- /dev/null +++ b/Skins/awawawawadesu/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2f4069a84fefb557c844e2f8490e3dd4390612312303c621c35fa0265724f7 +size 2858 diff --git a/Skins/awawawawadesu/ranking-C.png b/Skins/awawawawadesu/ranking-C.png new file mode 100644 index 00000000..cb8e65c2 --- /dev/null +++ b/Skins/awawawawadesu/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd3f4dccc2aaca2d6e104ba705f263ad2ed5cea6c57fd419ba4c7625701a8d4a +size 28525 diff --git a/Skins/awawawawadesu/ranking-C@2x.png b/Skins/awawawawadesu/ranking-C@2x.png new file mode 100644 index 00000000..8e9510a4 --- /dev/null +++ b/Skins/awawawawadesu/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56445b2cf7e8b9da44ba7462e897a0ac3f78025be983a1b92502d0e131adeacb +size 33969 diff --git a/Skins/awawawawadesu/ranking-D-small.png b/Skins/awawawawadesu/ranking-D-small.png new file mode 100644 index 00000000..8aab66cb --- /dev/null +++ b/Skins/awawawawadesu/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef6bf7402e64c70f03ab474a2d7f74d5a7bc36fa00f9d7f5908184e960a6861 +size 1047 diff --git a/Skins/awawawawadesu/ranking-D-small@2x.png b/Skins/awawawawadesu/ranking-D-small@2x.png new file mode 100644 index 00000000..81f7a2e7 --- /dev/null +++ b/Skins/awawawawadesu/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cf5ee5f6b247c13e81936836f7cf3530277540439cf55c4b0daca90297842b +size 2229 diff --git a/Skins/awawawawadesu/ranking-D.png b/Skins/awawawawadesu/ranking-D.png new file mode 100644 index 00000000..fcb1d753 --- /dev/null +++ b/Skins/awawawawadesu/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a2bd0ab0f6d5f995120110777623b7b25e57d4f5c503778a023d728bcf4f03 +size 20803 diff --git a/Skins/awawawawadesu/ranking-D@2x.png b/Skins/awawawawadesu/ranking-D@2x.png new file mode 100644 index 00000000..d61cf96d --- /dev/null +++ b/Skins/awawawawadesu/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77b15a1c2ee610f8586a611126aec67866b25254c2f8e56f7b24a6ce61f6aa8 +size 45322 diff --git a/Skins/awawawawadesu/ranking-S-small.png b/Skins/awawawawadesu/ranking-S-small.png new file mode 100644 index 00000000..7667cb69 --- /dev/null +++ b/Skins/awawawawadesu/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42735d5ceb86f9402ecb3e60b7f6ba2db142ecac806e4988bbf6cde96626aec3 +size 1353 diff --git a/Skins/awawawawadesu/ranking-S-small@2x.png b/Skins/awawawawadesu/ranking-S-small@2x.png new file mode 100644 index 00000000..9045b173 --- /dev/null +++ b/Skins/awawawawadesu/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ab39c1df05f0efddcedc544ea2ccf516422a5c52635d8ecf959e0a3eab5a1a +size 2247 diff --git a/Skins/awawawawadesu/ranking-S@2x.png b/Skins/awawawawadesu/ranking-S@2x.png new file mode 100644 index 00000000..119d48bb --- /dev/null +++ b/Skins/awawawawadesu/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2cfc56d7e30cfb7b9f040c5c59aa8814900df52f4ad16877cd852add7f8ddba +size 49894 diff --git a/Skins/awawawawadesu/ranking-SH-small.png b/Skins/awawawawadesu/ranking-SH-small.png new file mode 100644 index 00000000..24234947 --- /dev/null +++ b/Skins/awawawawadesu/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e64a92ebc9c139821aafd348e81cfe4860535f41825c37efb62f077df64fcf +size 1574 diff --git a/Skins/awawawawadesu/ranking-SH-small@2x.png b/Skins/awawawawadesu/ranking-SH-small@2x.png new file mode 100644 index 00000000..c6e8f00e --- /dev/null +++ b/Skins/awawawawadesu/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4d1650ff746943756727003ecf1d7a4948c3d52babe78e1540669d2b6a01dd +size 2737 diff --git a/Skins/awawawawadesu/ranking-SH@2x.png b/Skins/awawawawadesu/ranking-SH@2x.png new file mode 100644 index 00000000..a68990d9 --- /dev/null +++ b/Skins/awawawawadesu/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974d5b20b52322027d6208548b867b283d95cd00af0186cb804b8571a0c0bc53 +size 49689 diff --git a/Skins/awawawawadesu/ranking-X-small.png b/Skins/awawawawadesu/ranking-X-small.png new file mode 100644 index 00000000..d2184073 --- /dev/null +++ b/Skins/awawawawadesu/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8917bf1d5b3aa4e9f93bf495b01d064a0c783649ee77ea5337c2efd116512482 +size 1311 diff --git a/Skins/awawawawadesu/ranking-X-small@2x.png b/Skins/awawawawadesu/ranking-X-small@2x.png new file mode 100644 index 00000000..a42e3330 --- /dev/null +++ b/Skins/awawawawadesu/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29826becba8cbbcfc2581f5c87938f33fde86bb02bb3d6c19a74d45cef97ff79 +size 2952 diff --git a/Skins/awawawawadesu/ranking-X@2x.png b/Skins/awawawawadesu/ranking-X@2x.png new file mode 100644 index 00000000..297b82b4 --- /dev/null +++ b/Skins/awawawawadesu/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cd6319a928ade7a3b88812fb7d5f0517b01e8e00e7afc3265578c029b510772 +size 74108 diff --git a/Skins/awawawawadesu/ranking-XH-small.png b/Skins/awawawawadesu/ranking-XH-small.png new file mode 100644 index 00000000..55f1ff42 --- /dev/null +++ b/Skins/awawawawadesu/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66da2273914ef67dba6ecda73f985f97f669516ef2f5543ca801d997434bab73 +size 1923 diff --git a/Skins/awawawawadesu/ranking-XH-small@2x.png b/Skins/awawawawadesu/ranking-XH-small@2x.png new file mode 100644 index 00000000..dc18c4a3 --- /dev/null +++ b/Skins/awawawawadesu/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f397bfb69c1a91b80aeb82d397a3fbab290f94a6321afb369abe7b026c6476 +size 4980 diff --git a/Skins/awawawawadesu/ranking-XH@2x.png b/Skins/awawawawadesu/ranking-XH@2x.png new file mode 100644 index 00000000..1462a9d9 --- /dev/null +++ b/Skins/awawawawadesu/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb34c0948483d716a8787c68e22cae71332a0ab78d30b6cff9634b959b06f6da +size 74222 diff --git a/Skins/awawawawadesu/ranking-accuracy.png b/Skins/awawawawadesu/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/awawawawadesu/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/awawawawadesu/ranking-back.png b/Skins/awawawawadesu/ranking-back.png new file mode 100644 index 00000000..a1866998 --- /dev/null +++ b/Skins/awawawawadesu/ranking-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e36779edfc299e849dd97c5d5d84091ebb9acd5a028ab82f24e5fc955f23b97 +size 14719 diff --git a/Skins/awawawawadesu/ranking-background-overlay.png b/Skins/awawawawadesu/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/ranking-graph.png b/Skins/awawawawadesu/ranking-graph.png new file mode 100644 index 00000000..83210739 --- /dev/null +++ b/Skins/awawawawadesu/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69ad8cad0ef877d365be159b3dd2ab21aee6f0d8af63b8c587834360c3480af +size 9860 diff --git a/Skins/awawawawadesu/ranking-maxcombo.png b/Skins/awawawawadesu/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/awawawawadesu/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/awawawawadesu/ranking-panel - Copia.png b/Skins/awawawawadesu/ranking-panel - Copia.png new file mode 100644 index 00000000..47cf03a2 --- /dev/null +++ b/Skins/awawawawadesu/ranking-panel - Copia.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c30ddc162e99ef96de0d0189c2da68ff6db49409b7b2f4b1b47dd5b5c87e2483 +size 693425 diff --git a/Skins/awawawawadesu/ranking-panel.png b/Skins/awawawawadesu/ranking-panel.png new file mode 100644 index 00000000..f951ba1b --- /dev/null +++ b/Skins/awawawawadesu/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3f70b306b1c3e6423cf06be5b4c842d512d7f0832b2469ef73cc35997d8b77 +size 238632 diff --git a/Skins/awawawawadesu/ranking-perfect.png b/Skins/awawawawadesu/ranking-perfect.png new file mode 100644 index 00000000..3ec80c0a --- /dev/null +++ b/Skins/awawawawadesu/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c50379bc7d048c5841f548c3cc8954f576a44b0893568af169aaed0d023593 +size 22908 diff --git a/Skins/awawawawadesu/ranking-replay.png b/Skins/awawawawadesu/ranking-replay.png new file mode 100644 index 00000000..fb8933cc --- /dev/null +++ b/Skins/awawawawadesu/ranking-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ab985f83c8af23d3f17abd017da3eabc53f0b60357df0fe1a2f2e7023f68c4 +size 12435 diff --git a/Skins/awawawawadesu/ranking-retry.png b/Skins/awawawawadesu/ranking-retry.png new file mode 100644 index 00000000..66f11bec --- /dev/null +++ b/Skins/awawawawadesu/ranking-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009eb72c4d5ec99205a5760ed65febebf2a1b733c6d00ca96c2b1c2575c751fe +size 9632 diff --git a/Skins/awawawawadesu/ranking-title.png b/Skins/awawawawadesu/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/awawawawadesu/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/awawawawadesu/ready.png b/Skins/awawawawadesu/ready.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/awawawawadesu/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/awawawawadesu/readys.mp3 b/Skins/awawawawadesu/readys.mp3 new file mode 100644 index 00000000..063fe90a --- /dev/null +++ b/Skins/awawawawadesu/readys.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb84c45041c3a9d0d1f1a620a7e18d73c6c65a2d3bf5aba65d2b7f243e759941 +size 1798 diff --git a/Skins/awawawawadesu/readys.wav b/Skins/awawawawadesu/readys.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/reversearrow.png b/Skins/awawawawadesu/reversearrow.png new file mode 100644 index 00000000..1f3f5520 --- /dev/null +++ b/Skins/awawawawadesu/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2489483d621eeb50c5243f247324396a757b81158ed5a8068ee906e42578103 +size 9163 diff --git a/Skins/awawawawadesu/score-0.png b/Skins/awawawawadesu/score-0.png new file mode 100644 index 00000000..32d8706c --- /dev/null +++ b/Skins/awawawawadesu/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c2253f60b17eb44b81886f87dac65042ce0a620075417e59bb0f7d6a596c468 +size 1972 diff --git a/Skins/awawawawadesu/score-1.png b/Skins/awawawawadesu/score-1.png new file mode 100644 index 00000000..df290002 --- /dev/null +++ b/Skins/awawawawadesu/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09bfa1d4c846b697be800659a45787fa208cc84c57521dd00fcb507a5ea8e7e2 +size 1554 diff --git a/Skins/awawawawadesu/score-2.png b/Skins/awawawawadesu/score-2.png new file mode 100644 index 00000000..b84e428d --- /dev/null +++ b/Skins/awawawawadesu/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a6a6ff5405a0b503da6a92ad866745f085c4ea133d1dc2c32b92084d236f737 +size 1906 diff --git a/Skins/awawawawadesu/score-3.png b/Skins/awawawawadesu/score-3.png new file mode 100644 index 00000000..841d9fe2 --- /dev/null +++ b/Skins/awawawawadesu/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37bcdaa2edcca6074f776b7d0a69d1d9756d1b03ac74c9a7edc6a72d43fe70d6 +size 1926 diff --git a/Skins/awawawawadesu/score-4.png b/Skins/awawawawadesu/score-4.png new file mode 100644 index 00000000..f27c66b6 --- /dev/null +++ b/Skins/awawawawadesu/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1d05b7fab2c2a9943572d79beb0cc811221f878d5f9b502f21c7c9f5bdd53d +size 1752 diff --git a/Skins/awawawawadesu/score-5.png b/Skins/awawawawadesu/score-5.png new file mode 100644 index 00000000..5cd2be0d --- /dev/null +++ b/Skins/awawawawadesu/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40caa0d9553f475d200d8199d4e174ca364a9c905b34172817a905da3ecb8a50 +size 1847 diff --git a/Skins/awawawawadesu/score-6.png b/Skins/awawawawadesu/score-6.png new file mode 100644 index 00000000..eb553314 --- /dev/null +++ b/Skins/awawawawadesu/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb8fbad957ba5a93c7e369c64c76004b995d98259c6e9c55e10ab4b07007dba4 +size 1940 diff --git a/Skins/awawawawadesu/score-7.png b/Skins/awawawawadesu/score-7.png new file mode 100644 index 00000000..4fb4ad21 --- /dev/null +++ b/Skins/awawawawadesu/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6336d96cd187c7fb039191f565abd9cacce80d6c39ba573849a77b504a63cf9e +size 1660 diff --git a/Skins/awawawawadesu/score-8.png b/Skins/awawawawadesu/score-8.png new file mode 100644 index 00000000..2ddf115e --- /dev/null +++ b/Skins/awawawawadesu/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ad75f4b0d1dbe731d9bea3cd65d03fc4d0efec906a02af78d50425d25dee83 +size 1961 diff --git a/Skins/awawawawadesu/score-9.png b/Skins/awawawawadesu/score-9.png new file mode 100644 index 00000000..08561025 --- /dev/null +++ b/Skins/awawawawadesu/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10856084777ab49bbe6a7b16170dad4617ce589266a07dfddcb0d0b382a9936d +size 1949 diff --git a/Skins/awawawawadesu/score-comma.png b/Skins/awawawawadesu/score-comma.png new file mode 100644 index 00000000..39618998 --- /dev/null +++ b/Skins/awawawawadesu/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3482de33343175efd6c5381350e744948a0e6c16e1b0a73c9aeeccdec1949b70 +size 786 diff --git a/Skins/awawawawadesu/score-dot.png b/Skins/awawawawadesu/score-dot.png new file mode 100644 index 00000000..4035bd37 --- /dev/null +++ b/Skins/awawawawadesu/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f67f01dc2314a5f55dd296c0e8283b4baac3f1f5e80d67c2c849ddc84c2b27 +size 610 diff --git a/Skins/awawawawadesu/score-percent center.png b/Skins/awawawawadesu/score-percent center.png new file mode 100644 index 00000000..84f65667 --- /dev/null +++ b/Skins/awawawawadesu/score-percent center.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5561843cf154c8b162ddf6ed27add78c4f5837556258618f52a6409e2311940a +size 142 diff --git a/Skins/awawawawadesu/score-percent.png b/Skins/awawawawadesu/score-percent.png new file mode 100644 index 00000000..3161728c --- /dev/null +++ b/Skins/awawawawadesu/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae78a4de7b038c1346cd01fef5ccfcb9dfeabfa3aa38d151c00f7ad5a9d06df6 +size 4351 diff --git a/Skins/awawawawadesu/score-x.png b/Skins/awawawawadesu/score-x.png new file mode 100644 index 00000000..84f65667 --- /dev/null +++ b/Skins/awawawawadesu/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5561843cf154c8b162ddf6ed27add78c4f5837556258618f52a6409e2311940a +size 142 diff --git a/Skins/awawawawadesu/scorebar-bg.png b/Skins/awawawawadesu/scorebar-bg.png new file mode 100644 index 00000000..f50087a6 --- /dev/null +++ b/Skins/awawawawadesu/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4207600c16c920d7d891c24135cffa67161959be7c85b77e51a0d463957f7a4 +size 5765 diff --git a/Skins/awawawawadesu/scorebar-bg22.png b/Skins/awawawawadesu/scorebar-bg22.png new file mode 100644 index 00000000..339482e6 --- /dev/null +++ b/Skins/awawawawadesu/scorebar-bg22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b4f869ea77bfac98539c761cf7bdbf6f1acf922e4a2f925ade79e12f5205ca +size 23872 diff --git a/Skins/awawawawadesu/scorebar-bg@2x - Copia.png b/Skins/awawawawadesu/scorebar-bg@2x - Copia.png new file mode 100644 index 00000000..3bcf6327 --- /dev/null +++ b/Skins/awawawawadesu/scorebar-bg@2x - Copia.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aeb33285316d973f1d2a2cb9ddbaf90778f5be1f280cb632fd2e7d8878c5dba +size 166600 diff --git a/Skins/awawawawadesu/scorebar-colour.png b/Skins/awawawawadesu/scorebar-colour.png new file mode 100644 index 00000000..276a95e3 --- /dev/null +++ b/Skins/awawawawadesu/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf85a33d45640f3b72c6e98479e9950b0f48d712d4280004c82887c109a0d21 +size 23572 diff --git a/Skins/awawawawadesu/scorebar-colour@2x.png b/Skins/awawawawadesu/scorebar-colour@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/scorebar-ki.png b/Skins/awawawawadesu/scorebar-ki.png new file mode 100644 index 00000000..fe471d97 --- /dev/null +++ b/Skins/awawawawadesu/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3667f7ee7b6a6ac1550e8c86e71532456ba5d5786202d5805c9e26d58adf90 +size 362 diff --git a/Skins/awawawawadesu/scorebar-kidanger.png b/Skins/awawawawadesu/scorebar-kidanger.png new file mode 100644 index 00000000..fe471d97 --- /dev/null +++ b/Skins/awawawawadesu/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3667f7ee7b6a6ac1550e8c86e71532456ba5d5786202d5805c9e26d58adf90 +size 362 diff --git a/Skins/awawawawadesu/scorebar-kidanger2.png b/Skins/awawawawadesu/scorebar-kidanger2.png new file mode 100644 index 00000000..fe471d97 --- /dev/null +++ b/Skins/awawawawadesu/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3667f7ee7b6a6ac1550e8c86e71532456ba5d5786202d5805c9e26d58adf90 +size 362 diff --git a/Skins/awawawawadesu/scorebar-marker.png b/Skins/awawawawadesu/scorebar-marker.png new file mode 100644 index 00000000..fbaa2411 --- /dev/null +++ b/Skins/awawawawadesu/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d83803637e91ea8a6e593362c6f6f5b02f0fb1cba2a3f3b47923f8fffaf0ad7 +size 71 diff --git a/Skins/awawawawadesu/scoreentry-0.png b/Skins/awawawawadesu/scoreentry-0.png new file mode 100644 index 00000000..877ed6bb --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa834c4c1f2d3c35d0a5385d8493d1241bc5f5b7ca5ba9420888796bafa48021 +size 3026 diff --git a/Skins/awawawawadesu/scoreentry-1.png b/Skins/awawawawadesu/scoreentry-1.png new file mode 100644 index 00000000..c73eb2b0 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f64f72b7b629849f2a81944a59acdcd348acd21e7f1d440b8b798256eae2f4b +size 2970 diff --git a/Skins/awawawawadesu/scoreentry-2.png b/Skins/awawawawadesu/scoreentry-2.png new file mode 100644 index 00000000..b7382165 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e66f7e602b47a1206bb001d298c8b7cadcc965c6f53e38d0a2963b045ce98e +size 3102 diff --git a/Skins/awawawawadesu/scoreentry-3.png b/Skins/awawawawadesu/scoreentry-3.png new file mode 100644 index 00000000..1233de6e --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15fdcb518123e23c713edfff6fe8cb0040c009d0c1e701a0a2a8273a1b925da +size 3001 diff --git a/Skins/awawawawadesu/scoreentry-4.png b/Skins/awawawawadesu/scoreentry-4.png new file mode 100644 index 00000000..1ccc1f21 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6052ccb15fe559294e5e00de0dea02baf5a65c2fc40295fb9f5e60c95ffdd387 +size 3064 diff --git a/Skins/awawawawadesu/scoreentry-5.png b/Skins/awawawawadesu/scoreentry-5.png new file mode 100644 index 00000000..75285cc5 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f039b5357edc0ee51792609d2b1936f5ddd709678d50b24c98c55e6181cad15 +size 3098 diff --git a/Skins/awawawawadesu/scoreentry-6.png b/Skins/awawawawadesu/scoreentry-6.png new file mode 100644 index 00000000..84cfd583 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab437f836e8f47c99efe9080d27ef9ebe819cf6456e69d9dc777b495f9b4d030 +size 3105 diff --git a/Skins/awawawawadesu/scoreentry-7.png b/Skins/awawawawadesu/scoreentry-7.png new file mode 100644 index 00000000..fa388f02 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4e4943272ea1c2c2d9dd048f226231a5404bd93af5db3ec5ee6dc49088b7cc +size 3072 diff --git a/Skins/awawawawadesu/scoreentry-8.png b/Skins/awawawawadesu/scoreentry-8.png new file mode 100644 index 00000000..df2cdebd --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:160efcf419dfccb26b54a598612b118b5e9b203db2c68ef8fea7b5f265ca65b8 +size 3012 diff --git a/Skins/awawawawadesu/scoreentry-9.png b/Skins/awawawawadesu/scoreentry-9.png new file mode 100644 index 00000000..91135fff --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:509d77fc4109d2b6b375c682b7e3cdb533dc2a3e236ca7f879bf63d3d0ebd312 +size 3110 diff --git a/Skins/awawawawadesu/scoreentry-comma.png b/Skins/awawawawadesu/scoreentry-comma.png new file mode 100644 index 00000000..60974ca3 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc9557cca827b740bff5fccf38fb72c37858b413a556296b15634ff72cb4be7 +size 2894 diff --git a/Skins/awawawawadesu/scoreentry-comma@2x.png b/Skins/awawawawadesu/scoreentry-comma@2x.png new file mode 100644 index 00000000..180b16e1 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4f72e9c70f250175a500758a34cd85c7ad7b8fd013aaa7630ca73445119175 +size 3062 diff --git a/Skins/awawawawadesu/scoreentry-dot.png b/Skins/awawawawadesu/scoreentry-dot.png new file mode 100644 index 00000000..60974ca3 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc9557cca827b740bff5fccf38fb72c37858b413a556296b15634ff72cb4be7 +size 2894 diff --git a/Skins/awawawawadesu/scoreentry-dot@2x.png b/Skins/awawawawadesu/scoreentry-dot@2x.png new file mode 100644 index 00000000..180b16e1 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4f72e9c70f250175a500758a34cd85c7ad7b8fd013aaa7630ca73445119175 +size 3062 diff --git a/Skins/awawawawadesu/scoreentry-percent.png b/Skins/awawawawadesu/scoreentry-percent.png new file mode 100644 index 00000000..5c9312f2 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c1388ecb69a73e43a153aa3e5ed07954c2bb191ca8fdbf0021f43ff60105ff +size 307 diff --git a/Skins/awawawawadesu/scoreentry-x.png b/Skins/awawawawadesu/scoreentry-x.png new file mode 100644 index 00000000..39502ff1 --- /dev/null +++ b/Skins/awawawawadesu/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87eee7b4a82b048767fccb0887bdf43a96d9c5c911c7a22bc1b337002454c0fe +size 3073 diff --git a/Skins/awawawawadesu/section-fail.png b/Skins/awawawawadesu/section-fail.png new file mode 100644 index 00000000..d4d9587d --- /dev/null +++ b/Skins/awawawawadesu/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1223a4e8bf6545f39b5b0bc49ce4e8baf6fb7fbf7bca0dbb604055c01887a2 +size 149506 diff --git a/Skins/awawawawadesu/section-pass.png b/Skins/awawawawadesu/section-pass.png new file mode 100644 index 00000000..1943914f --- /dev/null +++ b/Skins/awawawawadesu/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6af4e7d57053f7656b66a0b0813524e135af774e09120c38e3b7c44a9a4a518 +size 154548 diff --git a/Skins/awawawawadesu/sectionfail.mp3 b/Skins/awawawawadesu/sectionfail.mp3 new file mode 100644 index 00000000..46faebd5 --- /dev/null +++ b/Skins/awawawawadesu/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e69376507f7827f74a279e97b39d8d49f95b9f80817d2cef7283f81b5496d0d +size 62080 diff --git a/Skins/awawawawadesu/sectionfail.wav b/Skins/awawawawadesu/sectionfail.wav new file mode 100644 index 00000000..bb376674 --- /dev/null +++ b/Skins/awawawawadesu/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7c8c04bd77c7c391b0f39c99e5a648af5d989cf382a1a0e0f42c9f55dc164d +size 163154 diff --git a/Skins/awawawawadesu/sectionpass.mp3 b/Skins/awawawawadesu/sectionpass.mp3 new file mode 100644 index 00000000..2a9f0464 --- /dev/null +++ b/Skins/awawawawadesu/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306b0030cbfbfbfddb68ac17c99e267ea0bc69080475ca9236c73f00131f7dee +size 40576 diff --git a/Skins/awawawawadesu/sectionpass.wav b/Skins/awawawawadesu/sectionpass.wav new file mode 100644 index 00000000..f9863b7b --- /dev/null +++ b/Skins/awawawawadesu/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478c6ba85ba6fb255b12dac3ee6af23329531dfc3b38005f2becf9379c444368 +size 56648 diff --git a/Skins/awawawawadesu/seeya.wav b/Skins/awawawawadesu/seeya.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/awawawawadesu/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/awawawawadesu/select-difficulty.wav b/Skins/awawawawadesu/select-difficulty.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/select-expand.wav b/Skins/awawawawadesu/select-expand.wav new file mode 100644 index 00000000..4751e876 --- /dev/null +++ b/Skins/awawawawadesu/select-expand.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd56a53f7be076e8fff731f8462c096deee6b7e0bbe05ed08d26651c409b2b60 +size 23400 diff --git a/Skins/awawawawadesu/selection-mod-autoplay.png b/Skins/awawawawadesu/selection-mod-autoplay.png new file mode 100644 index 00000000..0baac2ed --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa0bd027e3970c0ec30ad58840255d3c9ff3dafc3c4e77f7a3a896c37151308 +size 6467 diff --git a/Skins/awawawawadesu/selection-mod-autoplay@2x.png b/Skins/awawawawadesu/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..497527fb --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40bc113df2ac068324ad4d064a195d1d025012956ce9459aa136ceaf73e890b1 +size 33367 diff --git a/Skins/awawawawadesu/selection-mod-cinema.png b/Skins/awawawawadesu/selection-mod-cinema.png new file mode 100644 index 00000000..b242dc09 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2447f8732301e8db274a7c5abe851fb4b710856fc77eec0146082995b0b577bc +size 5866 diff --git a/Skins/awawawawadesu/selection-mod-cinema@2x.png b/Skins/awawawawadesu/selection-mod-cinema@2x.png new file mode 100644 index 00000000..b53296a9 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909636c9672042bcf0a080e86bf8c3e9743700c002fa54ca1676a7868be3fee1 +size 30006 diff --git a/Skins/awawawawadesu/selection-mod-doubletime.png b/Skins/awawawawadesu/selection-mod-doubletime.png new file mode 100644 index 00000000..52b3eaf1 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be4e2fcada67ae88943dc890ca0ed965f109834937c1cfb065257490b7172b68 +size 6953 diff --git a/Skins/awawawawadesu/selection-mod-doubletime@2x.png b/Skins/awawawawadesu/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..7ff1cf8d --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b74eb963d6da6a84a70bc87cf7f648fac773edbdfaf188f7c513ec0ab2177b7 +size 32953 diff --git a/Skins/awawawawadesu/selection-mod-easy.png b/Skins/awawawawadesu/selection-mod-easy.png new file mode 100644 index 00000000..913d68c6 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9f88bc0c70e8d4d29eeeb0eca3cfb0907ba607f2fbd062f952861df5e8a8bb +size 5819 diff --git a/Skins/awawawawadesu/selection-mod-easy@2x.png b/Skins/awawawawadesu/selection-mod-easy@2x.png new file mode 100644 index 00000000..f4bcd836 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbc7118c0151a47052ec96caa9244c347964b9463b106de066c04927fef6b87 +size 33998 diff --git a/Skins/awawawawadesu/selection-mod-flashlight.png b/Skins/awawawawadesu/selection-mod-flashlight.png new file mode 100644 index 00000000..6616e8f2 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cfb4f05225b81b22533d3ff9adb2895bdf4acdbaee12d833139e38bcceff625 +size 6020 diff --git a/Skins/awawawawadesu/selection-mod-flashlight@2x.png b/Skins/awawawawadesu/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..3e1eab7f --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36572bd90ba48ba5a882038b1d7377f107415dfbc2635f286e8ae147713e32b7 +size 26079 diff --git a/Skins/awawawawadesu/selection-mod-halftime.png b/Skins/awawawawadesu/selection-mod-halftime.png new file mode 100644 index 00000000..5c251f0a --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2598af14a4d96d2def603edf2a298f0e46f2ed429e771f2ceea1a849b64f44a2 +size 5976 diff --git a/Skins/awawawawadesu/selection-mod-halftime@2x.png b/Skins/awawawawadesu/selection-mod-halftime@2x.png new file mode 100644 index 00000000..1457354f --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0e9161b9c1125a934d29838781da4a5c4d01a3c482d4220e3bbf36c2596cd82 +size 28945 diff --git a/Skins/awawawawadesu/selection-mod-hardrock.png b/Skins/awawawawadesu/selection-mod-hardrock.png new file mode 100644 index 00000000..bd9e9fc1 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc5c3f1c59c2249d9b24620ce3adf79ff03fe82e6e56d680159d36ef9a16d124 +size 6478 diff --git a/Skins/awawawawadesu/selection-mod-hardrock@2x.png b/Skins/awawawawadesu/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..2cba675e --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e701186ed336cbf2663d2d163cd8ccad5f99fe4196e3d442bc000f5143cd176e +size 24649 diff --git a/Skins/awawawawadesu/selection-mod-hidden.png b/Skins/awawawawadesu/selection-mod-hidden.png new file mode 100644 index 00000000..0e53f960 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45eab244129d128aee64802a4208ee56731ef8949a6bd1b2e9ed7e0d26a60c2b +size 6814 diff --git a/Skins/awawawawadesu/selection-mod-hidden@2x.png b/Skins/awawawawadesu/selection-mod-hidden@2x.png new file mode 100644 index 00000000..9e76ce6e --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:671500d7e45e83e313bf42f2e9fc53e1980f06b2b4953a3853b88834cfb09d12 +size 28899 diff --git a/Skins/awawawawadesu/selection-mod-nightcore.png b/Skins/awawawawadesu/selection-mod-nightcore.png new file mode 100644 index 00000000..893f7cb8 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ead8dedb4c4787998221977a217e18c047dea2b3148885dfaabc097751d432 +size 6266 diff --git a/Skins/awawawawadesu/selection-mod-nightcore@2x.png b/Skins/awawawawadesu/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..33dacd9c --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721fb51990aefece146ed3c245c678369057fc3e17d5d6c83864e7329144ae80 +size 33875 diff --git a/Skins/awawawawadesu/selection-mod-nofail.png b/Skins/awawawawadesu/selection-mod-nofail.png new file mode 100644 index 00000000..179de3ac --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:109385c3f9bdb0f192d4aa4771881c58c4c51161935192e6bd94651e8aea2992 +size 6235 diff --git a/Skins/awawawawadesu/selection-mod-nofail@2x.png b/Skins/awawawawadesu/selection-mod-nofail@2x.png new file mode 100644 index 00000000..1c7b6acf --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0744567430dde4584697a1af9ccd77af15e4e5e556ef41355c193ae4a3744be2 +size 31133 diff --git a/Skins/awawawawadesu/selection-mod-novideo.png b/Skins/awawawawadesu/selection-mod-novideo.png new file mode 100644 index 00000000..8bf859f0 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-novideo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ae502a1651400b8ebf4e9626f47d1b905c28ae2d396aeecfcb92066c9225fd2 +size 10807 diff --git a/Skins/awawawawadesu/selection-mod-perfect.png b/Skins/awawawawadesu/selection-mod-perfect.png new file mode 100644 index 00000000..dc61bd03 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8705d61fa89d2cad903ed0ea5d4e071c73ab65d5bd42dd277b9e543b09c0e1 +size 6016 diff --git a/Skins/awawawawadesu/selection-mod-perfect@2x.png b/Skins/awawawawadesu/selection-mod-perfect@2x.png new file mode 100644 index 00000000..58ce49a2 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91761ca81cd27b1351990ee4f4995fa5c67cea09e11a765f85d31711a4e05c0 +size 36332 diff --git a/Skins/awawawawadesu/selection-mod-relax.png b/Skins/awawawawadesu/selection-mod-relax.png new file mode 100644 index 00000000..8e1badff --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5b159376c0f76da379e5c338ad54ff7caadc305a6468906c1f1f9865a59577 +size 6350 diff --git a/Skins/awawawawadesu/selection-mod-relax2.png b/Skins/awawawawadesu/selection-mod-relax2.png new file mode 100644 index 00000000..ece07c21 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ae490cba2fcef9f8694e5bfa2a39f63d495dbbe09e5c941e01906d6379adff +size 6290 diff --git a/Skins/awawawawadesu/selection-mod-relax2@2x.png b/Skins/awawawawadesu/selection-mod-relax2@2x.png new file mode 100644 index 00000000..957f1a21 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da2cb7ac6fdef2a721b610f68fb459097cc1afcdb2313603a12d15f3a484c7c +size 34016 diff --git a/Skins/awawawawadesu/selection-mod-relax@2x.png b/Skins/awawawawadesu/selection-mod-relax@2x.png new file mode 100644 index 00000000..33be1c72 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:722ce817235ca6a2aee2ead2aaf5b230085318c030a3c2ae9845ba10f44ff10b +size 34998 diff --git a/Skins/awawawawadesu/selection-mod-scorev2.png b/Skins/awawawawadesu/selection-mod-scorev2.png new file mode 100644 index 00000000..3d4533b9 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0d0c5cb298319edbe40a13e7247535dc7507ea630b3bf02370563886503808 +size 6744 diff --git a/Skins/awawawawadesu/selection-mod-scorev2@2x.png b/Skins/awawawawadesu/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..ae9f35ec --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890f7f4fcb336938dc568f5785c3d1222214e8ad73b4c5aa1830b8b87af1704f +size 36510 diff --git a/Skins/awawawawadesu/selection-mod-spunout.png b/Skins/awawawawadesu/selection-mod-spunout.png new file mode 100644 index 00000000..4db0a925 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9b451d5bf4831fec39f3588fed09911fd9c21bf2bee5c4845a9b82d244a9ea +size 6547 diff --git a/Skins/awawawawadesu/selection-mod-spunout@2x.png b/Skins/awawawawadesu/selection-mod-spunout@2x.png new file mode 100644 index 00000000..4e643b47 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d152cdd31defcc7ecc91ce0f6ca90bfb780c718fcc59ca6b2749f887922c99d4 +size 36902 diff --git a/Skins/awawawawadesu/selection-mod-suddendeath.png b/Skins/awawawawadesu/selection-mod-suddendeath.png new file mode 100644 index 00000000..b2076409 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95ba2e41e73859e35142be37902ca364d87b6a830701099e579c3ac0b6b78779 +size 5932 diff --git a/Skins/awawawawadesu/selection-mod-suddendeath@2x.png b/Skins/awawawawadesu/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..938a4e76 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de088700443e226f31e7864a1660a8342202712857ebed514f0eee1a503fca7 +size 32222 diff --git a/Skins/awawawawadesu/selection-mod-taiko.png b/Skins/awawawawadesu/selection-mod-taiko.png new file mode 100644 index 00000000..c8c6761f --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e77fb34fd8db0461ad05f0b7daec95c40bcff8c6b2e0e409ba50e687221da1 +size 11976 diff --git a/Skins/awawawawadesu/selection-mod-target.png b/Skins/awawawawadesu/selection-mod-target.png new file mode 100644 index 00000000..ef711a04 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac2e2334c3747106081dd56838bffc2f69bdccc144c35816dff1e799fd2c7c6 +size 5922 diff --git a/Skins/awawawawadesu/selection-mod-target@2x.png b/Skins/awawawawadesu/selection-mod-target@2x.png new file mode 100644 index 00000000..20515685 --- /dev/null +++ b/Skins/awawawawadesu/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73afa3833ac90d6f8bab4e4370c06ba89880203ccbfdcdf970c72419d7496017 +size 9940 diff --git a/Skins/awawawawadesu/selection-mode-over.png b/Skins/awawawawadesu/selection-mode-over.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/selection-mode@2.png b/Skins/awawawawadesu/selection-mode@2.png new file mode 100644 index 00000000..02dd8023 --- /dev/null +++ b/Skins/awawawawadesu/selection-mode@2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9795117ba42e91729c48c9736e581058a0c5de94f942e88d293d9dee3715470a +size 388348 diff --git a/Skins/awawawawadesu/selection-mode@2x.png b/Skins/awawawawadesu/selection-mode@2x.png new file mode 100644 index 00000000..6683dc1f --- /dev/null +++ b/Skins/awawawawadesu/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7406eb9820b870a5f95968c80bbc124dd04b5119e678e9859f80cc7b56f7d117 +size 302698 diff --git a/Skins/awawawawadesu/selection-mods-over@2x.png b/Skins/awawawawadesu/selection-mods-over@2x.png new file mode 100644 index 00000000..1b0b887c --- /dev/null +++ b/Skins/awawawawadesu/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e75b27261956a338a9860bd0dcae93e23a08408a8314fc3ccc74fc85c42d69 +size 65198 diff --git a/Skins/awawawawadesu/selection-mods.png b/Skins/awawawawadesu/selection-mods.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/awawawawadesu/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/awawawawadesu/selection-mods@2x2.png b/Skins/awawawawadesu/selection-mods@2x2.png new file mode 100644 index 00000000..39c24218 --- /dev/null +++ b/Skins/awawawawadesu/selection-mods@2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d7e61caac697d909fccb6ac01ac80afd711375e96922b154ddadcce52ade49 +size 4089 diff --git a/Skins/awawawawadesu/selection-options-over@2x.png b/Skins/awawawawadesu/selection-options-over@2x.png new file mode 100644 index 00000000..7eea841c --- /dev/null +++ b/Skins/awawawawadesu/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04e4717209da98d6c65520b5e4c5cd88a26979e0bec1c81844432736dd11f9de +size 70398 diff --git a/Skins/awawawawadesu/selection-options.png b/Skins/awawawawadesu/selection-options.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/awawawawadesu/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/awawawawadesu/selection-random-over@2x.png b/Skins/awawawawadesu/selection-random-over@2x.png new file mode 100644 index 00000000..0ebd72ba --- /dev/null +++ b/Skins/awawawawadesu/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:950fea9c3f7cc6af3db27ddd1206725eb3951c3e566e2ea095edde4b4e4eaa62 +size 71414 diff --git a/Skins/awawawawadesu/selection-random.png b/Skins/awawawawadesu/selection-random.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/awawawawadesu/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/awawawawadesu/selection-tab.png b/Skins/awawawawadesu/selection-tab.png new file mode 100644 index 00000000..73f15121 --- /dev/null +++ b/Skins/awawawawadesu/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec16bd5a867810ee6dadcc2751eef1e537e8f34e660304f308e3ce1e2cd262d2 +size 3506 diff --git a/Skins/awawawawadesu/shutter.wav b/Skins/awawawawadesu/shutter.wav new file mode 100644 index 00000000..1a51b30a --- /dev/null +++ b/Skins/awawawawadesu/shutter.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645b7351876c870c825266b57e923ccff732d11b3459f65761bac3ad7241a9bd +size 472264 diff --git a/Skins/awawawawadesu/skin.ini b/Skins/awawawawadesu/skin.ini new file mode 100644 index 00000000..ea5ba77a --- /dev/null +++ b/Skins/awawawawadesu/skin.ini @@ -0,0 +1,55 @@ +[General] +Name: awawawawadesu +Author: -duff +Version: latest +SliderBallFlip: 0 +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 1 +HitCircleOverlayAboveNumer: 0 +ComboBurstRandom: 0 +SliderStyle: 1 +//CustomComboBurstSounds: 30,60,100,150,200,250,300 + +221,159,244 + +[Colours] +Combo1: 255, 220, 230 +Combo2: 255, 220, 230 +//Combo1: 255, 220, 230 +//Combo2: 255, 220, 230 +SliderBorder: 255, 255, 255 +SliderTrackOverride: 0,0,0 +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 230,230,230 +SpinnerApproachCircle: 255,255,255 +ApproachCircle: 255,255,255 +MenuGlow: 0,0,190 + +InputOverlayText: 0,0,0 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 50 +ScorePrefix: score +ScoreOverlap: 8 +ComboOverlap: -3 +ComboPrefix: 1 +[Mania] +Keys: 4 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +//Colours +//images +//Keys + +ty dark for helping me diff --git a/Skins/awawawawadesu/sliderb.png b/Skins/awawawawadesu/sliderb.png new file mode 100644 index 00000000..754c8d4a --- /dev/null +++ b/Skins/awawawawadesu/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1665e9ebbcbe01e8135b8f0f6593b68b4fb5c18d9fd0f278934c29f87de0b178 +size 6099 diff --git a/Skins/awawawawadesu/sliderb@2x.png b/Skins/awawawawadesu/sliderb@2x.png new file mode 100644 index 00000000..a34c9641 --- /dev/null +++ b/Skins/awawawawadesu/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e15fe5047ef3194990ea23a41b55dce04978d1b45f465fee37950e997703b7 +size 40127 diff --git a/Skins/awawawawadesu/sliderendcircle.png b/Skins/awawawawadesu/sliderendcircle.png new file mode 100644 index 00000000..7043211d --- /dev/null +++ b/Skins/awawawawadesu/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2246eb8179ed090c347c2ec5fd2368eead2be2bf3134b3d4e0e3360dac8ca0 +size 280 diff --git a/Skins/awawawawadesu/sliderfollowcircle.png b/Skins/awawawawadesu/sliderfollowcircle.png new file mode 100644 index 00000000..dcb26da8 --- /dev/null +++ b/Skins/awawawawadesu/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d76703b53556e73912f047f1422cd38d5adb9c8561251b1e99699f5b722938 +size 45422 diff --git a/Skins/awawawawadesu/sliderpoint10.png b/Skins/awawawawadesu/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/sliderpoint30.png b/Skins/awawawawadesu/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/sliderscorepoint.png b/Skins/awawawawadesu/sliderscorepoint.png new file mode 100644 index 00000000..30f3dca8 --- /dev/null +++ b/Skins/awawawawadesu/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54de4f1605cab70e18b9c9eb4d0001bec7d64610c64895cd9c5f5a77442dcf8 +size 3507 diff --git a/Skins/awawawawadesu/sliderscorepoint@2x.png b/Skins/awawawawadesu/sliderscorepoint@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/soft-hitclap.wav b/Skins/awawawawadesu/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/awawawawadesu/soft-hitclap2.wav b/Skins/awawawawadesu/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/awawawawadesu/soft-hitfinish.wav b/Skins/awawawawadesu/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/awawawawadesu/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/awawawawadesu/soft-hitfinish2.wav b/Skins/awawawawadesu/soft-hitfinish2.wav new file mode 100644 index 00000000..3e8856c5 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3708a5decda6b05082c11e4edd9bc03e80acbb6e32759feecc98636e9f2b797b +size 25804 diff --git a/Skins/awawawawadesu/soft-hitfinish222.wav b/Skins/awawawawadesu/soft-hitfinish222.wav new file mode 100644 index 00000000..958a9d0b --- /dev/null +++ b/Skins/awawawawadesu/soft-hitfinish222.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48cfe4e7181a51e1e2db1b0b0f939a92a915200738aca02eb1d6ee380dc239ee +size 105884 diff --git a/Skins/awawawawadesu/soft-hitnormal.wav b/Skins/awawawawadesu/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/awawawawadesu/soft-hitnormal1.wav b/Skins/awawawawadesu/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/awawawawadesu/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/awawawawadesu/soft-hitnormal2.wav b/Skins/awawawawadesu/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/awawawawadesu/soft-hitnormalh.wav b/Skins/awawawawadesu/soft-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/awawawawadesu/soft-hitnormalhh.wav b/Skins/awawawawadesu/soft-hitnormalhh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitnormalhh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/awawawawadesu/soft-hitsoft.wav b/Skins/awawawawadesu/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/awawawawadesu/soft-hitwhistle.wav b/Skins/awawawawadesu/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/awawawawadesu/soft-hitwhistle2.wav b/Skins/awawawawadesu/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/awawawawadesu/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/awawawawadesu/soft-sliderslide.wav b/Skins/awawawawadesu/soft-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/awawawawadesu/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/awawawawadesu/soft-sliderslide2.wav b/Skins/awawawawadesu/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/soft-slidertick.wav b/Skins/awawawawadesu/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/awawawawadesu/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/awawawawadesu/soft-slidertick2.wav b/Skins/awawawawadesu/soft-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/soft-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/soft-sliderwhistle.wav b/Skins/awawawawadesu/soft-sliderwhistle.wav new file mode 100644 index 00000000..cfc0314c --- /dev/null +++ b/Skins/awawawawadesu/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b80e132dd7adf41d45f7e21352dc3420599474382dc87a3b1772f603ce32a81 +size 67256 diff --git a/Skins/awawawawadesu/soft-sliderwhistle2.wav b/Skins/awawawawadesu/soft-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/soft-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/awawawawadesu/softl-hitclap2.wav b/Skins/awawawawadesu/softl-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/awawawawadesu/softl-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/awawawawadesu/softl-hitfinish.wav b/Skins/awawawawadesu/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/awawawawadesu/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/awawawawadesu/softl-hitwhistle.wav b/Skins/awawawawadesu/softl-hitwhistle.wav new file mode 100644 index 00000000..b2ead5b1 --- /dev/null +++ b/Skins/awawawawadesu/softl-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0bf4803858de71662a0d497d789a4d24d5c3cee7d0976377abf47156578018 +size 20428 diff --git a/Skins/awawawawadesu/spinner-approachcircle.png b/Skins/awawawawadesu/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/awawawawadesu/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/awawawawadesu/spinner-background.png b/Skins/awawawawadesu/spinner-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/spinner-background@2x.png b/Skins/awawawawadesu/spinner-background@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/spinner-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/spinner-bottom.png b/Skins/awawawawadesu/spinner-bottom.png new file mode 100644 index 00000000..f299e855 --- /dev/null +++ b/Skins/awawawawadesu/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afee4931d8243672ed46c9eb93976201add49e73d51d83e781522b97373d173 +size 1670 diff --git a/Skins/awawawawadesu/spinner-bottom@2x.png b/Skins/awawawawadesu/spinner-bottom@2x.png new file mode 100644 index 00000000..cf91cbfd --- /dev/null +++ b/Skins/awawawawadesu/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41ed7bb993a438b2c2f95c02b5cc529bd5d846f8ade5944aa216132dbd147bb +size 6183 diff --git a/Skins/awawawawadesu/spinner-circle.png b/Skins/awawawawadesu/spinner-circle.png new file mode 100644 index 00000000..944dec12 --- /dev/null +++ b/Skins/awawawawadesu/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76547f80c669da26ff200d8f12720150c7bf757d934634d1acfddefd01ea0b35 +size 20281 diff --git a/Skins/awawawawadesu/spinner-clear.png b/Skins/awawawawadesu/spinner-clear.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/spinner-clear@2x.png b/Skins/awawawawadesu/spinner-clear@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/awawawawadesu/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/awawawawadesu/spinner-glow.png b/Skins/awawawawadesu/spinner-glow.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/spinner-metre.png b/Skins/awawawawadesu/spinner-metre.png new file mode 100644 index 00000000..a8679c76 --- /dev/null +++ b/Skins/awawawawadesu/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f228db724834f5b1e72ca3adb5d0d066da882be73d95f0dc3860c5075c4868 +size 88500 diff --git a/Skins/awawawawadesu/spinner-middle.png b/Skins/awawawawadesu/spinner-middle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/spinner-middle2.png b/Skins/awawawawadesu/spinner-middle2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/spinner-osu.png b/Skins/awawawawadesu/spinner-osu.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/awawawawadesu/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/awawawawadesu/spinner-osu@2x.png b/Skins/awawawawadesu/spinner-osu@2x.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/awawawawadesu/spinner-osu@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/awawawawadesu/spinner-rpm.png b/Skins/awawawawadesu/spinner-rpm.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/awawawawadesu/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/awawawawadesu/spinner-rpm@2x.png b/Skins/awawawawadesu/spinner-rpm@2x.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/awawawawadesu/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/awawawawadesu/spinner-spin.png b/Skins/awawawawadesu/spinner-spin.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/awawawawadesu/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/awawawawadesu/spinner-top.png b/Skins/awawawawadesu/spinner-top.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/spinnerbonus.wav b/Skins/awawawawadesu/spinnerbonus.wav new file mode 100644 index 00000000..6e901ec0 --- /dev/null +++ b/Skins/awawawawadesu/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea3774c20fb4a84c33ab6e08b7db0042e2494173e26ca210ec6171c20da9c4 +size 178600 diff --git a/Skins/awawawawadesu/spinnerspin.mp3 b/Skins/awawawawadesu/spinnerspin.mp3 new file mode 100644 index 00000000..fdaf9a24 --- /dev/null +++ b/Skins/awawawawadesu/spinnerspin.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678990e0480ea95ff81eebe0e89ed4d1ed6171c275021f26059fcfc13c0dfe58 +size 13672 diff --git a/Skins/awawawawadesu/spinnerspin.wav b/Skins/awawawawadesu/spinnerspin.wav new file mode 100644 index 00000000..9d1f5b4b --- /dev/null +++ b/Skins/awawawawadesu/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604afd570a40a984abcdcf885e52d687951ce37b8cdfdd83b14abf7f0b050935 +size 74024 diff --git a/Skins/awawawawadesu/star.png b/Skins/awawawawadesu/star.png new file mode 100644 index 00000000..65c80f70 --- /dev/null +++ b/Skins/awawawawadesu/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12b830319a8283bcd71c50f83bcb2b0115707c7c072f22f0fdf182796824f1f +size 5643 diff --git a/Skins/awawawawadesu/star2.png b/Skins/awawawawadesu/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/awawawawadesu/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/awawawawadesu/welcome.mp3 b/Skins/awawawawadesu/welcome.mp3 new file mode 100644 index 00000000..01b19222 --- /dev/null +++ b/Skins/awawawawadesu/welcome.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229e97d11378463bf63e6812fac74ba547a48940e191751b206c51f5abfc6144 +size 111948 diff --git a/Skins/awawawawadesu/whoosh.wav b/Skins/awawawawadesu/whoosh.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/awawawawadesu/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/boblowedit/applause.mp3 b/Skins/boblowedit/applause.mp3 new file mode 100644 index 00000000..5b85359a --- /dev/null +++ b/Skins/boblowedit/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8326b6e811f563ccc37efecb8b503251d1f42f9433edc7a1a8ca508c95e64a +size 5160960 diff --git a/Skins/boblowedit/approachcircle.png b/Skins/boblowedit/approachcircle.png new file mode 100644 index 00000000..8b27020f --- /dev/null +++ b/Skins/boblowedit/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9746f7c241952ba2bb7452bca84cb7712a318aa1ddf44013911bb59b712852b5 +size 15596 diff --git a/Skins/boblowedit/back-button-hover.ogg b/Skins/boblowedit/back-button-hover.ogg new file mode 100644 index 00000000..890376d6 --- /dev/null +++ b/Skins/boblowedit/back-button-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84926e4457351c80bea10a6325cf59ba05f2222b4f5b50ee75a728725a8a699b +size 19150 diff --git a/Skins/boblowedit/button-left.png b/Skins/boblowedit/button-left.png new file mode 100644 index 00000000..1888b66c --- /dev/null +++ b/Skins/boblowedit/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb3d532ec5ebafc879a921e1c51c6b017ce4979b171da1db4072ec56e26bb10 +size 3206 diff --git a/Skins/boblowedit/button-left@2x.png b/Skins/boblowedit/button-left@2x.png new file mode 100644 index 00000000..3668e797 --- /dev/null +++ b/Skins/boblowedit/button-left@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2bf99eefc72737c10d0d0c6efea07fb618526d1c8fe9a2d014190a1686c075e +size 3370 diff --git a/Skins/boblowedit/button-middle.png b/Skins/boblowedit/button-middle.png new file mode 100644 index 00000000..902f409e --- /dev/null +++ b/Skins/boblowedit/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08267317da1b1e888727c3225a69c56a0d7fd5e79528473a6d5da26c7d8cdf2c +size 3035 diff --git a/Skins/boblowedit/button-middle@2x.png b/Skins/boblowedit/button-middle@2x.png new file mode 100644 index 00000000..1bfc0824 --- /dev/null +++ b/Skins/boblowedit/button-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c8d26dd187ad42bb8820f8c3ef848861cf3b07722a7c78a0b9b6ce5442480c +size 2931 diff --git a/Skins/boblowedit/button-right.png b/Skins/boblowedit/button-right.png new file mode 100644 index 00000000..030e892b --- /dev/null +++ b/Skins/boblowedit/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21bc819b19961a149047578b8b8c8f806ab43eb09f98514c5a8e12da29de5997 +size 3233 diff --git a/Skins/boblowedit/button-right@2x.png b/Skins/boblowedit/button-right@2x.png new file mode 100644 index 00000000..28ed8c45 --- /dev/null +++ b/Skins/boblowedit/button-right@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b9f872a8c294f22944987e3e6405df9faef1d65a6b4e5cd2d35dcdb471c8c0 +size 3409 diff --git a/Skins/boblowedit/check-off.ogg b/Skins/boblowedit/check-off.ogg new file mode 100644 index 00000000..56343c3b --- /dev/null +++ b/Skins/boblowedit/check-off.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737cce8c95f17b951a07ba52aef17f98e5f7348268ff5d3b5498ad889563d56d +size 40868 diff --git a/Skins/boblowedit/check-on.ogg b/Skins/boblowedit/check-on.ogg new file mode 100644 index 00000000..aa660685 --- /dev/null +++ b/Skins/boblowedit/check-on.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0cd9c0e900582d8f17258218246ca24a55712ffa05acee39c8d9209ab8839d1 +size 38659 diff --git a/Skins/boblowedit/click-short-confirm.ogg b/Skins/boblowedit/click-short-confirm.ogg new file mode 100644 index 00000000..a4656190 --- /dev/null +++ b/Skins/boblowedit/click-short-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92c3a5f3e413c445d55229b2507d2a3461a1031476b36fa0b84daaeef2bf0d9 +size 8237 diff --git a/Skins/boblowedit/click-short.ogg b/Skins/boblowedit/click-short.ogg new file mode 100644 index 00000000..14ead326 --- /dev/null +++ b/Skins/boblowedit/click-short.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e15f993505dc00a28c610954c6b664f860f21143f6e37f644f49f4f9756df6 +size 78384 diff --git a/Skins/boblowedit/coin.png b/Skins/boblowedit/coin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/coin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/coins-bg.png b/Skins/boblowedit/coins-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/coins-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/coins-buy.png b/Skins/boblowedit/coins-buy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/coins-buy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/coins-earn.ogg b/Skins/boblowedit/coins-earn.ogg new file mode 100644 index 00000000..c003fffc --- /dev/null +++ b/Skins/boblowedit/coins-earn.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bb73cd5332977dc570d6c9a272f8237f0dd17242da9e57ba96ea0a782abc87 +size 4426 diff --git a/Skins/boblowedit/coins-recharge.ogg b/Skins/boblowedit/coins-recharge.ogg new file mode 100644 index 00000000..a997049e --- /dev/null +++ b/Skins/boblowedit/coins-recharge.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb398a9eabb4e0cad7fc47335b0699c9198039f6e8dd3efb54927b7df57cc36c +size 4426 diff --git a/Skins/boblowedit/coins-use.ogg b/Skins/boblowedit/coins-use.ogg new file mode 100644 index 00000000..bbb5539b --- /dev/null +++ b/Skins/boblowedit/coins-use.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b935490a33baff880be00a7b2e6f08b353b4869ad43a060bda2866c9dcd71b8d +size 4426 diff --git a/Skins/boblowedit/coins.png b/Skins/boblowedit/coins.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/coins.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/combo-0.png b/Skins/boblowedit/combo-0.png new file mode 100644 index 00000000..7eb97bfb --- /dev/null +++ b/Skins/boblowedit/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9928ec8702306de664bbee04a2359184519119dabc7947a661d12c0e24c2aa +size 1915 diff --git a/Skins/boblowedit/combo-1.png b/Skins/boblowedit/combo-1.png new file mode 100644 index 00000000..35734baa --- /dev/null +++ b/Skins/boblowedit/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c4bc8b2d89d2282548003c66ac92c491dd0019a603e92b1b915eed8f16cc64 +size 1756 diff --git a/Skins/boblowedit/combo-2.png b/Skins/boblowedit/combo-2.png new file mode 100644 index 00000000..df606962 --- /dev/null +++ b/Skins/boblowedit/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af3e621c9b8ad386ebb920205ddd91ad576e17143b21d0e796a1420fa004138 +size 1846 diff --git a/Skins/boblowedit/combo-3.png b/Skins/boblowedit/combo-3.png new file mode 100644 index 00000000..c2fadb43 --- /dev/null +++ b/Skins/boblowedit/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ed2d1596b1c00bd11ade3a88dd6e629628cfcba6815b4882d537e058e72a06 +size 1827 diff --git a/Skins/boblowedit/combo-4.png b/Skins/boblowedit/combo-4.png new file mode 100644 index 00000000..2267d3b0 --- /dev/null +++ b/Skins/boblowedit/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a810a7a1f74fd51943e025709a14ab457d3925e57d8737a00e27d72a1feda8 +size 1827 diff --git a/Skins/boblowedit/combo-5.png b/Skins/boblowedit/combo-5.png new file mode 100644 index 00000000..481acd1c --- /dev/null +++ b/Skins/boblowedit/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffea8d5bd91830827318c2a20296632b7407b05351d8af2cc24125735e7d9934 +size 1789 diff --git a/Skins/boblowedit/combo-6.png b/Skins/boblowedit/combo-6.png new file mode 100644 index 00000000..7193edfd --- /dev/null +++ b/Skins/boblowedit/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ab293f318df4564f5b781a1825b7ce87fe054941819becfd2879f72d6f2dab +size 1867 diff --git a/Skins/boblowedit/combo-7.png b/Skins/boblowedit/combo-7.png new file mode 100644 index 00000000..e1c864bf --- /dev/null +++ b/Skins/boblowedit/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82ea6b075f37f54d35ec2155ef55b4d310210af841612b59b9e0a91cd9bed94b +size 1773 diff --git a/Skins/boblowedit/combo-8.png b/Skins/boblowedit/combo-8.png new file mode 100644 index 00000000..def723cc --- /dev/null +++ b/Skins/boblowedit/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb14901a2f7e90474dcf76529eec97b9bad25387e1e955e531f2172d7ff1d3b +size 1888 diff --git a/Skins/boblowedit/combo-9.png b/Skins/boblowedit/combo-9.png new file mode 100644 index 00000000..17f3b493 --- /dev/null +++ b/Skins/boblowedit/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290e4a2608746455647c0ee05cc15c2b5615836cdc1e72afc9ee55edcd1a21d1 +size 1858 diff --git a/Skins/boblowedit/combo-x.png b/Skins/boblowedit/combo-x.png new file mode 100644 index 00000000..de6b53ac --- /dev/null +++ b/Skins/boblowedit/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c6360d14cf5e6d1acad8536c02bb33efbcdb85094b7b755924559ae74a68e4 +size 417 diff --git a/Skins/boblowedit/comboburst.png b/Skins/boblowedit/comboburst.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/count1.png b/Skins/boblowedit/count1.png new file mode 100644 index 00000000..4fc7a43d --- /dev/null +++ b/Skins/boblowedit/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04e0230065ea76e697caedc8932b233cc6456f3ea9fd0edf0cba91f1566970bf +size 2138 diff --git a/Skins/boblowedit/count1s.wav b/Skins/boblowedit/count1s.wav new file mode 100644 index 00000000..879a8ce4 --- /dev/null +++ b/Skins/boblowedit/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8884d07ff5d08c2105858f8edfa7954747058aff1a1dc77d6bce5c9592d7690 +size 95276 diff --git a/Skins/boblowedit/count2.png b/Skins/boblowedit/count2.png new file mode 100644 index 00000000..e0191f8a --- /dev/null +++ b/Skins/boblowedit/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347fd74a3850db65f9ef275a564efe062716fc549f0402a9e7a03cbaea6a4484 +size 2290 diff --git a/Skins/boblowedit/count2s.wav b/Skins/boblowedit/count2s.wav new file mode 100644 index 00000000..cc140c67 --- /dev/null +++ b/Skins/boblowedit/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaabbda242775b458a34b6d8be3e9f1a8871fbb769938e3001926e67cec52155 +size 63532 diff --git a/Skins/boblowedit/count3.png b/Skins/boblowedit/count3.png new file mode 100644 index 00000000..d11af581 --- /dev/null +++ b/Skins/boblowedit/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b99971e7be525c54d2e6b7230a4cb5e91178b716a0705c44ec979ad9b6f448 +size 2312 diff --git a/Skins/boblowedit/count3s.wav b/Skins/boblowedit/count3s.wav new file mode 100644 index 00000000..84aad121 --- /dev/null +++ b/Skins/boblowedit/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa182d459de91fb3ee6263364ddefc48137c2278e5a0819d52caf7b9dcb5aa6 +size 68140 diff --git a/Skins/boblowedit/cursor.png b/Skins/boblowedit/cursor.png new file mode 100644 index 00000000..d846e8cd --- /dev/null +++ b/Skins/boblowedit/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2de11ba325a35d07d01edfe4a91118747c4855417081b50f0a2e5acb43cee6b +size 4337 diff --git a/Skins/boblowedit/cursortrail.png b/Skins/boblowedit/cursortrail.png new file mode 100644 index 00000000..e5f3e23f --- /dev/null +++ b/Skins/boblowedit/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf92aeb64af70d57efd1eb0c32a624aa47fce8a3290f122eb851e1b6d9e38ec +size 4386 diff --git a/Skins/boblowedit/default-0.png b/Skins/boblowedit/default-0.png new file mode 100644 index 00000000..27624edd --- /dev/null +++ b/Skins/boblowedit/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc4def036c39e809e379945ac52f4f99a30203897e183b41e472b2b1c3aa4fe +size 3484 diff --git a/Skins/boblowedit/default-1.png b/Skins/boblowedit/default-1.png new file mode 100644 index 00000000..c184981f --- /dev/null +++ b/Skins/boblowedit/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b758e16afe0f6d3f407d675fc9d76c547769de8d8a94f8a0307c832bb8ad7165 +size 3280 diff --git a/Skins/boblowedit/default-2.png b/Skins/boblowedit/default-2.png new file mode 100644 index 00000000..bdf76f58 --- /dev/null +++ b/Skins/boblowedit/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4553bc1813cd85bb0d69e2ded2bb9af633536ee2f2bdb1ccb9111dfddc1404 +size 3496 diff --git a/Skins/boblowedit/default-3.png b/Skins/boblowedit/default-3.png new file mode 100644 index 00000000..45b3c1e5 --- /dev/null +++ b/Skins/boblowedit/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef2a217a3c5819bcc0cc312049bd4e474e5c157fb91dcbd7a269881335d9283 +size 3566 diff --git a/Skins/boblowedit/default-4.png b/Skins/boblowedit/default-4.png new file mode 100644 index 00000000..96080836 --- /dev/null +++ b/Skins/boblowedit/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90ef9f12b4277ff478ef74e608e4f72d17a809001383ee5f21bb332b082d9a7 +size 3432 diff --git a/Skins/boblowedit/default-5.png b/Skins/boblowedit/default-5.png new file mode 100644 index 00000000..1a7a174c --- /dev/null +++ b/Skins/boblowedit/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07702506d6a8410d0cff20017b2cb5ecc4cbc00b6f873ae7339cf906160f7daf +size 3502 diff --git a/Skins/boblowedit/default-6.png b/Skins/boblowedit/default-6.png new file mode 100644 index 00000000..563dc4d4 --- /dev/null +++ b/Skins/boblowedit/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecd457f629831aee13730621cb5326725fae24096953af7829325d9452f525f +size 3583 diff --git a/Skins/boblowedit/default-7.png b/Skins/boblowedit/default-7.png new file mode 100644 index 00000000..62113658 --- /dev/null +++ b/Skins/boblowedit/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53df1cac5168aeca35b8c1af169b20658ddf7eb069bf8b0dacdf1c94600603c1 +size 3383 diff --git a/Skins/boblowedit/default-8.png b/Skins/boblowedit/default-8.png new file mode 100644 index 00000000..51c83957 --- /dev/null +++ b/Skins/boblowedit/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6600798637d63504fecd5ae6fdf80d3542971ae63c93fc3b361fa03aef28c08 +size 3600 diff --git a/Skins/boblowedit/default-9.png b/Skins/boblowedit/default-9.png new file mode 100644 index 00000000..42b08d9e --- /dev/null +++ b/Skins/boblowedit/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fef48e315a38645ff14ea8b2dd08afee8bebf279fe310ff8a9382d047b033cd +size 3564 diff --git a/Skins/boblowedit/drum-hitclap.ogg b/Skins/boblowedit/drum-hitclap.ogg new file mode 100644 index 00000000..b0540174 --- /dev/null +++ b/Skins/boblowedit/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0090d97ee26d03be66ab0965153fa3460d7c10d4787760f18e2f6a8b801f6c +size 4909 diff --git a/Skins/boblowedit/drum-hitclap.wav b/Skins/boblowedit/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/boblowedit/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/boblowedit/drum-hitclap2.ogg b/Skins/boblowedit/drum-hitclap2.ogg new file mode 100644 index 00000000..8ca3742f --- /dev/null +++ b/Skins/boblowedit/drum-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad3745a5ced85a257671befabe399c3ee5beb34dbdb21d85df5f7adb95dfdf3 +size 18985 diff --git a/Skins/boblowedit/drum-hitclap2.wav b/Skins/boblowedit/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/boblowedit/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/boblowedit/drum-hitfinish.ogg b/Skins/boblowedit/drum-hitfinish.ogg new file mode 100644 index 00000000..e708f36d --- /dev/null +++ b/Skins/boblowedit/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd673a02d88be045ea44115c2b6f6769ec488b2d1937b7b1d14dad06ca48c262 +size 6846 diff --git a/Skins/boblowedit/drum-hitfinish.wav b/Skins/boblowedit/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/boblowedit/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/boblowedit/drum-hitnormal.ogg b/Skins/boblowedit/drum-hitnormal.ogg new file mode 100644 index 00000000..83778fda --- /dev/null +++ b/Skins/boblowedit/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941c895c2b3d81cfe5c4b53c95457e1ce0684160602ee78fe9e0356aec557050 +size 7527 diff --git a/Skins/boblowedit/drum-hitnormal.wav b/Skins/boblowedit/drum-hitnormal.wav new file mode 100644 index 00000000..99c04672 --- /dev/null +++ b/Skins/boblowedit/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8486565ae510863dfe50f3b3935a4bcca9812be4ed9d77eee9e036f153e971ac +size 26084 diff --git a/Skins/boblowedit/drum-hitnormalh.wav b/Skins/boblowedit/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/boblowedit/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/boblowedit/drum-hitwhistle.ogg b/Skins/boblowedit/drum-hitwhistle.ogg new file mode 100644 index 00000000..0b853991 --- /dev/null +++ b/Skins/boblowedit/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bae33fb90f5f4ebe449c02add71d2aba704d261b374aa0dc4823fb9cec6f87 +size 4426 diff --git a/Skins/boblowedit/drum-hitwhistle.wav b/Skins/boblowedit/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/boblowedit/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/boblowedit/drum-sliderslide.ogg b/Skins/boblowedit/drum-sliderslide.ogg new file mode 100644 index 00000000..ca1afbde --- /dev/null +++ b/Skins/boblowedit/drum-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0e12d4a6358e8ba8f4ef6f8c15c095495bf177683e4d8afc6caa37ecfb55f6 +size 4426 diff --git a/Skins/boblowedit/drum-sliderslide.wav b/Skins/boblowedit/drum-sliderslide.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/boblowedit/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/boblowedit/drum-slidertick.wav b/Skins/boblowedit/drum-slidertick.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/boblowedit/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/boblowedit/drum-sliderwhistle.wav b/Skins/boblowedit/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/boblowedit/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/boblowedit/error.txt b/Skins/boblowedit/error.txt new file mode 100644 index 00000000..ceebb86d --- /dev/null +++ b/Skins/boblowedit/error.txt @@ -0,0 +1,5 @@ +System.FormatException: Input string was not in a correct format. + at System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt) + at osu.Graphics.Skinning.SkinOsu.#=z0PSqbck=() + at osu.Graphics.Skinning.Skin.#=zSjEvqO4=(String #=zKsSTqgs=) + at #=zzy$Uy6ESou9I6_bZX9CmpcNpLgqr75Mc7g==.#=zNB_0IgeFxHVV8_TBqw==(String #=zvRxWbRWbCEer) \ No newline at end of file diff --git a/Skins/boblowedit/fail-background@2x.png b/Skins/boblowedit/fail-background@2x.png new file mode 100644 index 00000000..5a3d8898 --- /dev/null +++ b/Skins/boblowedit/fail-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef48ea495bdb68fa3699b4d277d40c0677b280e615559f63c6eeac44c7c6c78 +size 5750254 diff --git a/Skins/boblowedit/followpoint-0.png b/Skins/boblowedit/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/followpoint-1.png b/Skins/boblowedit/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/followpoint-11.png b/Skins/boblowedit/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/boblowedit/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/boblowedit/followpoint-12.png b/Skins/boblowedit/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/boblowedit/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/boblowedit/followpoint-13.png b/Skins/boblowedit/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/boblowedit/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/boblowedit/followpoint-14.png b/Skins/boblowedit/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/boblowedit/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/boblowedit/followpoint-15.png b/Skins/boblowedit/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/boblowedit/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/boblowedit/followpoint-16.png b/Skins/boblowedit/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/boblowedit/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/boblowedit/followpoint-17.png b/Skins/boblowedit/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/boblowedit/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/boblowedit/followpoint-18.png b/Skins/boblowedit/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/boblowedit/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/boblowedit/followpoint-19.png b/Skins/boblowedit/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/boblowedit/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/boblowedit/followpoint-2.png b/Skins/boblowedit/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/followpoint-20.png b/Skins/boblowedit/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/boblowedit/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/boblowedit/followpoint-21.png b/Skins/boblowedit/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/boblowedit/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/boblowedit/followpoint-22.png b/Skins/boblowedit/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/boblowedit/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/boblowedit/followpoint-23.png b/Skins/boblowedit/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/boblowedit/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/boblowedit/followpoint-3.png b/Skins/boblowedit/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/boblowedit/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/boblowedit/followpoint-4.png b/Skins/boblowedit/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/boblowedit/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/boblowedit/followpoint-5.png b/Skins/boblowedit/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/boblowedit/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/boblowedit/followpoint-6.png b/Skins/boblowedit/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/boblowedit/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/boblowedit/followpoint-7.png b/Skins/boblowedit/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/boblowedit/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/boblowedit/followpoint-8.png b/Skins/boblowedit/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/boblowedit/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/boblowedit/followpoint-9.png b/Skins/boblowedit/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/boblowedit/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/boblowedit/followpoint.png b/Skins/boblowedit/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/boblowedit/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/boblowedit/go.png b/Skins/boblowedit/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/boblowedit/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/boblowedit/gos.ogg b/Skins/boblowedit/gos.ogg new file mode 100644 index 00000000..4d4118d0 --- /dev/null +++ b/Skins/boblowedit/gos.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984bb54cb198ef4bb12b81b2861643990f1cfbc3053ecbf84276c1d577c41421 +size 4426 diff --git a/Skins/boblowedit/gos.wav b/Skins/boblowedit/gos.wav new file mode 100644 index 00000000..ab76f728 --- /dev/null +++ b/Skins/boblowedit/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef0c16be86f9a2de8301a5cd352e3b72df997f4d86cb3dce7d6bae5b58d851d +size 77868 diff --git a/Skins/boblowedit/heartbeat.ogg b/Skins/boblowedit/heartbeat.ogg new file mode 100644 index 00000000..a6234bb8 --- /dev/null +++ b/Skins/boblowedit/heartbeat.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f751c18a1f494bc02fb43bfcb2b7c7583c5c3181dbe9ca40124f1759c678e14f +size 70020 diff --git a/Skins/boblowedit/hit0.png b/Skins/boblowedit/hit0.png new file mode 100644 index 00000000..a964edec --- /dev/null +++ b/Skins/boblowedit/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e98979eed17ae293fde5a7c2317f603830c1c99f98f5618c2df1a4adadea68c +size 1417 diff --git a/Skins/boblowedit/hit100.png b/Skins/boblowedit/hit100.png new file mode 100644 index 00000000..cee44962 --- /dev/null +++ b/Skins/boblowedit/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b556641517431e6ccc2dd59b1dcae316c5c0cee46583174f69cb442133972c2 +size 1406 diff --git a/Skins/boblowedit/hit100k.png b/Skins/boblowedit/hit100k.png new file mode 100644 index 00000000..cee44962 --- /dev/null +++ b/Skins/boblowedit/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b556641517431e6ccc2dd59b1dcae316c5c0cee46583174f69cb442133972c2 +size 1406 diff --git a/Skins/boblowedit/hit300-0.png b/Skins/boblowedit/hit300-0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/boblowedit/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/boblowedit/hit300-1.png b/Skins/boblowedit/hit300-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/hit300.png b/Skins/boblowedit/hit300.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/boblowedit/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/boblowedit/hit300@2x.png b/Skins/boblowedit/hit300@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/hit300g-0.png b/Skins/boblowedit/hit300g-0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/boblowedit/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/boblowedit/hit300g-1.png b/Skins/boblowedit/hit300g-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/hit300g.png b/Skins/boblowedit/hit300g.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/boblowedit/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/boblowedit/hit300g@2x.png b/Skins/boblowedit/hit300g@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/hit300k-0.png b/Skins/boblowedit/hit300k-0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/boblowedit/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/boblowedit/hit300k-1.png b/Skins/boblowedit/hit300k-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/hit300k.png b/Skins/boblowedit/hit300k.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/boblowedit/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/boblowedit/hit300k@2x.png b/Skins/boblowedit/hit300k@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/hit300k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/hit50.png b/Skins/boblowedit/hit50.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/boblowedit/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/boblowedit/hit50k.png b/Skins/boblowedit/hit50k.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/boblowedit/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/boblowedit/hitcircle.png b/Skins/boblowedit/hitcircle.png new file mode 100644 index 00000000..e01478ee --- /dev/null +++ b/Skins/boblowedit/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb886360206184b3319a4f1d3fb66760bcbccccdc6e0195b2d48951b050c7520 +size 4611 diff --git a/Skins/boblowedit/hitcircleoverlay.png b/Skins/boblowedit/hitcircleoverlay.png new file mode 100644 index 00000000..27093a5e --- /dev/null +++ b/Skins/boblowedit/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e94c08069c79e055ae429efad72c30124222fbb059128587dd59b0b8850d670 +size 14720 diff --git a/Skins/boblowedit/hitcircleselect.png b/Skins/boblowedit/hitcircleselect.png new file mode 100644 index 00000000..b5db66ee --- /dev/null +++ b/Skins/boblowedit/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c90d8afe6377ad56bf30945d4a8568873c0be29950acd63a23e0bd342fe9589 +size 4302 diff --git a/Skins/boblowedit/inputoverlay-background.png b/Skins/boblowedit/inputoverlay-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/inputoverlay-key.png b/Skins/boblowedit/inputoverlay-key.png new file mode 100644 index 00000000..2ab66b42 --- /dev/null +++ b/Skins/boblowedit/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a4f1472331d41a1f3ef8bd31d7d78244fb2b70d3ceae5cebc11006dcbf52f1 +size 3544 diff --git a/Skins/boblowedit/inputoverlay-key@2x.png b/Skins/boblowedit/inputoverlay-key@2x.png new file mode 100644 index 00000000..7dad1f1e --- /dev/null +++ b/Skins/boblowedit/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe382682230bea874d70aa399f8df041c14f4fe20f4b8e21135b741f4d38d3a9 +size 4317 diff --git a/Skins/boblowedit/key-confirm.ogg b/Skins/boblowedit/key-confirm.ogg new file mode 100644 index 00000000..5293c908 --- /dev/null +++ b/Skins/boblowedit/key-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8377c7f8ff6124fe4f0fa4507241b1c6cc3a70ae256e8e2b8309a6f4b1c20a0f +size 5205 diff --git a/Skins/boblowedit/key-delete.ogg b/Skins/boblowedit/key-delete.ogg new file mode 100644 index 00000000..afa90993 --- /dev/null +++ b/Skins/boblowedit/key-delete.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfee042b8650cbc3454fa3bc4a6d2d452fa2c064bbb65045d3eb7d000d4d21c +size 6095 diff --git a/Skins/boblowedit/key-movement.ogg b/Skins/boblowedit/key-movement.ogg new file mode 100644 index 00000000..82fdb16d --- /dev/null +++ b/Skins/boblowedit/key-movement.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e144646e70940e812be56b161df810087c2125601b431307efeec0a948974cfb +size 7017 diff --git a/Skins/boblowedit/key-press-1.ogg b/Skins/boblowedit/key-press-1.ogg new file mode 100644 index 00000000..bcdb4339 --- /dev/null +++ b/Skins/boblowedit/key-press-1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21afc262377f49dfade941afa93ae5bab3a6c3e470ac70dc57cac9d6b7eb07d +size 5800 diff --git a/Skins/boblowedit/key-press-2.ogg b/Skins/boblowedit/key-press-2.ogg new file mode 100644 index 00000000..4b52b59a --- /dev/null +++ b/Skins/boblowedit/key-press-2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2733fabd029ca01bc88ac7ee1f92baf3d17d47ee59022d5e84b1ce76ae11ff0f +size 5800 diff --git a/Skins/boblowedit/key-press-3.ogg b/Skins/boblowedit/key-press-3.ogg new file mode 100644 index 00000000..acdfe6d5 --- /dev/null +++ b/Skins/boblowedit/key-press-3.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da503b807aa9002098dfba5798a17ea17e26926eb2c523d9115058922653a92 +size 5800 diff --git a/Skins/boblowedit/key-press-4.ogg b/Skins/boblowedit/key-press-4.ogg new file mode 100644 index 00000000..d21e9da1 --- /dev/null +++ b/Skins/boblowedit/key-press-4.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819c9e226a416d38331c72423fcbcd0b40f64792944c07c3ccbaeeef529db534 +size 5800 diff --git a/Skins/boblowedit/menu-back-click.ogg b/Skins/boblowedit/menu-back-click.ogg new file mode 100644 index 00000000..101d496d --- /dev/null +++ b/Skins/boblowedit/menu-back-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc4017a2f423ce2dd6326266bc4f679ce13125556a43a63131929f3d06eb594 +size 81817 diff --git a/Skins/boblowedit/menu-back-hover.ogg b/Skins/boblowedit/menu-back-hover.ogg new file mode 100644 index 00000000..170a8a24 --- /dev/null +++ b/Skins/boblowedit/menu-back-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431feb0d0c1d5b2fbbe70e735c889a66b335ea99045807b6a187b76df771bcad +size 78691 diff --git a/Skins/boblowedit/menu-back@2x.png b/Skins/boblowedit/menu-back@2x.png new file mode 100644 index 00000000..ce614bdd --- /dev/null +++ b/Skins/boblowedit/menu-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c485b2652d3e152836b92007c411862b53f8bd843645bb7f65b01c7f03093219 +size 187750 diff --git a/Skins/boblowedit/menu-background.jpg b/Skins/boblowedit/menu-background.jpg new file mode 100644 index 00000000..55d7b36a --- /dev/null +++ b/Skins/boblowedit/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c655e0c44c0da49d3ec9c7018d1f8bd3b3139b378649a16b55e2664aaf5acd46 +size 746591 diff --git a/Skins/boblowedit/menu-button-background@2x.png b/Skins/boblowedit/menu-button-background@2x.png new file mode 100644 index 00000000..6cd854ae --- /dev/null +++ b/Skins/boblowedit/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c12014019362d57702d7669f22938dc4028a9a96ac80d72f3e01ca64f4abf7f +size 379655 diff --git a/Skins/boblowedit/menu-edit-click.ogg b/Skins/boblowedit/menu-edit-click.ogg new file mode 100644 index 00000000..6127796d --- /dev/null +++ b/Skins/boblowedit/menu-edit-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d16c857f2d5e5c47a49261bc4337a42a95393116892d451ecc9d74b0dc748a +size 92646 diff --git a/Skins/boblowedit/menu-exit-click.ogg b/Skins/boblowedit/menu-exit-click.ogg new file mode 100644 index 00000000..4d3e2308 --- /dev/null +++ b/Skins/boblowedit/menu-exit-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e4ed4ce87af65892470bc27dd8640567f7fa702025235c5d8a149f896c8bb8 +size 81817 diff --git a/Skins/boblowedit/menu-exit-hover.ogg b/Skins/boblowedit/menu-exit-hover.ogg new file mode 100644 index 00000000..2f4b242d --- /dev/null +++ b/Skins/boblowedit/menu-exit-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2279ac4e2e4eada3003a25be5df07c6663f189fd7b2fcbd2eb9a7718454aca3e +size 78691 diff --git a/Skins/boblowedit/menu-freeplay-click.ogg b/Skins/boblowedit/menu-freeplay-click.ogg new file mode 100644 index 00000000..9cb1253a --- /dev/null +++ b/Skins/boblowedit/menu-freeplay-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dd0d482ba3c7de65d5dc5b1cd5f350ab892c9a0e3776311be448e9c50cdc3fb +size 83044 diff --git a/Skins/boblowedit/menu-multiplayer-click.ogg b/Skins/boblowedit/menu-multiplayer-click.ogg new file mode 100644 index 00000000..8b213c7c --- /dev/null +++ b/Skins/boblowedit/menu-multiplayer-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7853065cfbfab5d6517e2866b08bae81680ee2901a499542bb295910fd918645 +size 83044 diff --git a/Skins/boblowedit/menu-options-click.ogg b/Skins/boblowedit/menu-options-click.ogg new file mode 100644 index 00000000..911f115e --- /dev/null +++ b/Skins/boblowedit/menu-options-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a38382b7c9e0a8bae7cd5bc55261068068b9ed0bba50abce9c5b477648d1df +size 92646 diff --git a/Skins/boblowedit/menu-play-click.ogg b/Skins/boblowedit/menu-play-click.ogg new file mode 100644 index 00000000..3ce603f2 --- /dev/null +++ b/Skins/boblowedit/menu-play-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193b9c64a60cacd73436f75247c48b6b4bcfe8e1830a3b6c25b472c75605e17b +size 92646 diff --git a/Skins/boblowedit/menu-snow.png b/Skins/boblowedit/menu-snow.png new file mode 100644 index 00000000..3d059f35 --- /dev/null +++ b/Skins/boblowedit/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13357eb94dc568d2e8b918f025b6b6d44eacbcbfa5fb1c9c6927d02883c1f019 +size 3570 diff --git a/Skins/boblowedit/menuback.ogg b/Skins/boblowedit/menuback.ogg new file mode 100644 index 00000000..344ac9e8 --- /dev/null +++ b/Skins/boblowedit/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:442aa89eb83201989d53fe7d64c14a840757ba36ea13bec36c1374c222248e77 +size 54384 diff --git a/Skins/boblowedit/menuclick.ogg b/Skins/boblowedit/menuclick.ogg new file mode 100644 index 00000000..1db82eca --- /dev/null +++ b/Skins/boblowedit/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62d09899141100d409ec09f3d7a58396e11ae9dac75e23411bdbf5e82fcf5d19 +size 78015 diff --git a/Skins/boblowedit/menuhit.ogg b/Skins/boblowedit/menuhit.ogg new file mode 100644 index 00000000..e994a152 --- /dev/null +++ b/Skins/boblowedit/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72a08c16443496408ab1da0f115b7fecefff7f754e3012624140a57559d4092 +size 92190 diff --git a/Skins/boblowedit/mode-fruits-small@2x.png b/Skins/boblowedit/mode-fruits-small@2x.png new file mode 100644 index 00000000..5c5a06aa --- /dev/null +++ b/Skins/boblowedit/mode-fruits-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cf99257646bf3950ed2ff1fb7bfd78fa7f15f77b539adfb5b74bb877f77354 +size 584613 diff --git a/Skins/boblowedit/mode-mania-small@2x.png b/Skins/boblowedit/mode-mania-small@2x.png new file mode 100644 index 00000000..5c5a06aa --- /dev/null +++ b/Skins/boblowedit/mode-mania-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cf99257646bf3950ed2ff1fb7bfd78fa7f15f77b539adfb5b74bb877f77354 +size 584613 diff --git a/Skins/boblowedit/mode-osu-small@2x.png b/Skins/boblowedit/mode-osu-small@2x.png new file mode 100644 index 00000000..1e981303 --- /dev/null +++ b/Skins/boblowedit/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3146f4360c841f637155e2d007cae8fa102e22dcc0df4c0f5682da4332c49a6c +size 566306 diff --git a/Skins/boblowedit/mode-taiko-small@2x.png b/Skins/boblowedit/mode-taiko-small@2x.png new file mode 100644 index 00000000..5c5a06aa --- /dev/null +++ b/Skins/boblowedit/mode-taiko-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cf99257646bf3950ed2ff1fb7bfd78fa7f15f77b539adfb5b74bb877f77354 +size 584613 diff --git a/Skins/boblowedit/normal-hitclap.ogg b/Skins/boblowedit/normal-hitclap.ogg new file mode 100644 index 00000000..ec0e3b04 --- /dev/null +++ b/Skins/boblowedit/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1049b6d14e749927b1507f3d12c1af3545f4b30a1313b385d1e72c4b8d98b204 +size 4426 diff --git a/Skins/boblowedit/normal-hitclap.wav b/Skins/boblowedit/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/boblowedit/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/boblowedit/normal-hitfinish.ogg b/Skins/boblowedit/normal-hitfinish.ogg new file mode 100644 index 00000000..8a3b29a6 --- /dev/null +++ b/Skins/boblowedit/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2779da6e866b9f7807f974fd02ed5a13f46f097be629284d079207378624f42f +size 7205 diff --git a/Skins/boblowedit/normal-hitfinish.wav b/Skins/boblowedit/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/boblowedit/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/boblowedit/normal-hitnormal.ogg b/Skins/boblowedit/normal-hitnormal.ogg new file mode 100644 index 00000000..caadf4b5 --- /dev/null +++ b/Skins/boblowedit/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736d1629d8fac0c4ba97bb0cb432a837c870f52bfb4f69d2fc99c09ce2bed246 +size 8106 diff --git a/Skins/boblowedit/normal-hitnormal.wav b/Skins/boblowedit/normal-hitnormal.wav new file mode 100644 index 00000000..b9a89269 --- /dev/null +++ b/Skins/boblowedit/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f56e5ad20b2f123a8b467c58e8a649a7c4665c6ebf50aaa976619ebeacdc206 +size 26084 diff --git a/Skins/boblowedit/normal-hitnormalh.wav b/Skins/boblowedit/normal-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/boblowedit/normal-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/boblowedit/normal-hitwhistle.ogg b/Skins/boblowedit/normal-hitwhistle.ogg new file mode 100644 index 00000000..e57fa9c7 --- /dev/null +++ b/Skins/boblowedit/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656c4781427d993099d1cc092c2765cc61970cba3c1a4c8492d48d32bcf200fc +size 20498 diff --git a/Skins/boblowedit/normal-hitwhistle.wav b/Skins/boblowedit/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/boblowedit/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/boblowedit/normal-hitwistle.ogg b/Skins/boblowedit/normal-hitwistle.ogg new file mode 100644 index 00000000..7433d679 --- /dev/null +++ b/Skins/boblowedit/normal-hitwistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56301dc35dd095ff25d8b519eabcc4a681f324aaa342a83d0d21a01f03ae24bf +size 7572 diff --git a/Skins/boblowedit/normal-sliderslide.wav b/Skins/boblowedit/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/boblowedit/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/boblowedit/normal-slidertick.ogg b/Skins/boblowedit/normal-slidertick.ogg new file mode 100644 index 00000000..45fe02cc --- /dev/null +++ b/Skins/boblowedit/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9387191b2235dcfecfda8c8b0aecf648fda1cfe5a366eca69a43df141f4ee63 +size 6882 diff --git a/Skins/boblowedit/normal-slidertick.wav b/Skins/boblowedit/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/boblowedit/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/boblowedit/normal-sliderwhistle.wav b/Skins/boblowedit/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/boblowedit/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/boblowedit/pause-back-click.ogg b/Skins/boblowedit/pause-back-click.ogg new file mode 100644 index 00000000..b4fd0c8a --- /dev/null +++ b/Skins/boblowedit/pause-back-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0c3979dcda24fb7114b1188cdbc07f7bf3546372b788de2884376f46d03e5d +size 51802 diff --git a/Skins/boblowedit/pause-back-hover.ogg b/Skins/boblowedit/pause-back-hover.ogg new file mode 100644 index 00000000..4dec3f59 --- /dev/null +++ b/Skins/boblowedit/pause-back-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d59852f06c6a7420a982fbf14b41add7497b6bdb75d1a901d1331fba8805c33 +size 13838 diff --git a/Skins/boblowedit/pause-back.png b/Skins/boblowedit/pause-back.png new file mode 100644 index 00000000..6eba854f --- /dev/null +++ b/Skins/boblowedit/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9783f7c0a389b6211deccfa6f428eaf065c288e4c95391cd7642c6d4b4c03896 +size 25649 diff --git a/Skins/boblowedit/pause-continue-click.ogg b/Skins/boblowedit/pause-continue-click.ogg new file mode 100644 index 00000000..bd1211f7 --- /dev/null +++ b/Skins/boblowedit/pause-continue-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18844f3b384e887bf4f868fd2a6e70c90d4f8ad150daf7a415d7c71227c9fd2 +size 50043 diff --git a/Skins/boblowedit/pause-continue-hover.ogg b/Skins/boblowedit/pause-continue-hover.ogg new file mode 100644 index 00000000..a401622b --- /dev/null +++ b/Skins/boblowedit/pause-continue-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c576e7a74b7ffbec2e3d9d856688d292722eb10863bcf96bf5feb28bb5b852 +size 13693 diff --git a/Skins/boblowedit/pause-continue.png b/Skins/boblowedit/pause-continue.png new file mode 100644 index 00000000..6661cd3e --- /dev/null +++ b/Skins/boblowedit/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1666396c883e82aaf288f515a8228f81f852ba3e93629a03fa1733ec8c3eb3 +size 18839 diff --git a/Skins/boblowedit/pause-overlay.png b/Skins/boblowedit/pause-overlay.png new file mode 100644 index 00000000..d9bb63cd --- /dev/null +++ b/Skins/boblowedit/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6c96b440d30d77d7a2e0155325ba9951e9701a924ebdea422823fac8fe0341 +size 1343836 diff --git a/Skins/boblowedit/pause-replay.png b/Skins/boblowedit/pause-replay.png new file mode 100644 index 00000000..607fc043 --- /dev/null +++ b/Skins/boblowedit/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cdea866f4b087265710d98c03b152c9629b32a631e9a8e7786b4a63c1864bfc +size 8914 diff --git a/Skins/boblowedit/pause-retry-click.ogg b/Skins/boblowedit/pause-retry-click.ogg new file mode 100644 index 00000000..edaa6dc0 --- /dev/null +++ b/Skins/boblowedit/pause-retry-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfad5e9b2aab246ea2d3835764f9ca13c0f4629c22cfd9710b495176215b5c8a +size 50904 diff --git a/Skins/boblowedit/pause-retry-hover.ogg b/Skins/boblowedit/pause-retry-hover.ogg new file mode 100644 index 00000000..f9de7ad3 --- /dev/null +++ b/Skins/boblowedit/pause-retry-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31dabb66d04866f191ab89badf4718f512cfcbfbc5fde22dca79409eeb438142 +size 13706 diff --git a/Skins/boblowedit/pause-retry.png b/Skins/boblowedit/pause-retry.png new file mode 100644 index 00000000..4df5f4bd --- /dev/null +++ b/Skins/boblowedit/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d9673b215676dbd7515c2d8c1fc63051ff1d60445eb9734e700cf36f907dc8d +size 14387 diff --git a/Skins/boblowedit/play-skip@2x.png b/Skins/boblowedit/play-skip@2x.png new file mode 100644 index 00000000..4ffb56fe --- /dev/null +++ b/Skins/boblowedit/play-skip@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d7c4f2c5a47a8fcf25e7e68bb6e36e302cdd70c2344c2f7d5acadecf91f05f +size 1082238 diff --git a/Skins/boblowedit/play-unranked.png b/Skins/boblowedit/play-unranked.png new file mode 100644 index 00000000..7daa55fb --- /dev/null +++ b/Skins/boblowedit/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1328d4f33d3a8a910943472f6976c85f470dca98e42bab67a81da8cc30ce8994 +size 5499 diff --git a/Skins/boblowedit/play-warningarrow.png b/Skins/boblowedit/play-warningarrow.png new file mode 100644 index 00000000..72157b1c --- /dev/null +++ b/Skins/boblowedit/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66c6d780abd72b4872b4ad113d2100190ab42875b1a9e8dff208961e9cd6aa6 +size 874 diff --git a/Skins/boblowedit/ranking-A-small.png b/Skins/boblowedit/ranking-A-small.png new file mode 100644 index 00000000..6748b2ea --- /dev/null +++ b/Skins/boblowedit/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8c7774ec5b018e8a497ddaec131c86c981baf11d65f55188706fd91081099e +size 1963 diff --git a/Skins/boblowedit/ranking-B-small.png b/Skins/boblowedit/ranking-B-small.png new file mode 100644 index 00000000..aa0f6f3b --- /dev/null +++ b/Skins/boblowedit/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90d1a31938d0a3753b054508addf9eec803a4ed2e0900ed57add4258153f696d +size 1929 diff --git a/Skins/boblowedit/ranking-C-small.png b/Skins/boblowedit/ranking-C-small.png new file mode 100644 index 00000000..20e0e8b5 --- /dev/null +++ b/Skins/boblowedit/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4d5747a239776f7d9ffe1bd152204a418cb30985094b6fc666ef0592c6a062 +size 1972 diff --git a/Skins/boblowedit/ranking-D-small.png b/Skins/boblowedit/ranking-D-small.png new file mode 100644 index 00000000..a47937e3 --- /dev/null +++ b/Skins/boblowedit/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2e0af3db7e1bc17d3af629f0d669aead7a3f844387c2f9d6340213c0e7ee90 +size 2513 diff --git a/Skins/boblowedit/ranking-S-small.png b/Skins/boblowedit/ranking-S-small.png new file mode 100644 index 00000000..29ba60fb --- /dev/null +++ b/Skins/boblowedit/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56a301c84c032d493220053f66c9ff6305345764f8c97773e32af89b76fdf3e +size 2100 diff --git a/Skins/boblowedit/ranking-S@2x.png b/Skins/boblowedit/ranking-S@2x.png new file mode 100644 index 00000000..70b5cca5 --- /dev/null +++ b/Skins/boblowedit/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4b6abe4c34d280e1c1142f9852b49367808b09e84689ddf7403b07a1570542 +size 42976 diff --git a/Skins/boblowedit/ranking-SH-small.png b/Skins/boblowedit/ranking-SH-small.png new file mode 100644 index 00000000..7736df64 --- /dev/null +++ b/Skins/boblowedit/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d69d40cfd26a3b539057b3ee07beae8c801d7d6863ad5c537c4bd674320cff +size 2083 diff --git a/Skins/boblowedit/ranking-SH@2x.png b/Skins/boblowedit/ranking-SH@2x.png new file mode 100644 index 00000000..fed07777 --- /dev/null +++ b/Skins/boblowedit/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ad65f12f2ae8c90c82701b421077a4e3dc456883491cbfe7ad18547e623b13 +size 40461 diff --git a/Skins/boblowedit/ranking-X-small.png b/Skins/boblowedit/ranking-X-small.png new file mode 100644 index 00000000..364f3053 --- /dev/null +++ b/Skins/boblowedit/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc04d78aa0dace7e928291e570645cd7be4af132e04516d4daeefd6e120d0136 +size 2195 diff --git a/Skins/boblowedit/ranking-X@2x.png b/Skins/boblowedit/ranking-X@2x.png new file mode 100644 index 00000000..7de142b1 --- /dev/null +++ b/Skins/boblowedit/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141d9ed67fbc304854ebb400c0fb9360cf334b4adc958068e12787eb644e967c +size 62231 diff --git a/Skins/boblowedit/ranking-XH-small.png b/Skins/boblowedit/ranking-XH-small.png new file mode 100644 index 00000000..e49acca6 --- /dev/null +++ b/Skins/boblowedit/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25bff5cf4a9c8f33c6733c8a62d3899d3fd77d3920ccfe000c3963aaff2bdd4b +size 2160 diff --git a/Skins/boblowedit/ranking-XH@2x.png b/Skins/boblowedit/ranking-XH@2x.png new file mode 100644 index 00000000..13f352b4 --- /dev/null +++ b/Skins/boblowedit/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89766449f06cd7bf748b2a64fedba23a3f3ae1f8c016085c90d7811e32a0ab76 +size 59533 diff --git a/Skins/boblowedit/ranking-a@2x.png b/Skins/boblowedit/ranking-a@2x.png new file mode 100644 index 00000000..5dbe46c5 --- /dev/null +++ b/Skins/boblowedit/ranking-a@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f67ca15ccaad07267c043616423251277d09dd7362420bb17e221664cbf5f95 +size 42710 diff --git a/Skins/boblowedit/ranking-accuracy.png b/Skins/boblowedit/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/boblowedit/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/boblowedit/ranking-b@2x.png b/Skins/boblowedit/ranking-b@2x.png new file mode 100644 index 00000000..25036884 --- /dev/null +++ b/Skins/boblowedit/ranking-b@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a384e210f6986b16cf550fc076c9d4222a3f2f439b3a4c91f106147aef776de +size 38054 diff --git a/Skins/boblowedit/ranking-background-overlay.png b/Skins/boblowedit/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/ranking-c@2x.png b/Skins/boblowedit/ranking-c@2x.png new file mode 100644 index 00000000..09e9937a --- /dev/null +++ b/Skins/boblowedit/ranking-c@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2697eb62bbb5a5c325e138d52f563482db74dbf101d7719a6eb2a4a183ecf132 +size 42236 diff --git a/Skins/boblowedit/ranking-d@2x.png b/Skins/boblowedit/ranking-d@2x.png new file mode 100644 index 00000000..1361e100 --- /dev/null +++ b/Skins/boblowedit/ranking-d@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac56398b9fa749e49c689cd02ba3964279060f59018473216dfee7247f03cb0 +size 34706 diff --git a/Skins/boblowedit/ranking-graph.png b/Skins/boblowedit/ranking-graph.png new file mode 100644 index 00000000..e5ad2b9b --- /dev/null +++ b/Skins/boblowedit/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934b71c2b098f0daecbd8d23c01f62b8365056801e42094fa062c76a58cfd940 +size 902 diff --git a/Skins/boblowedit/ranking-maxcombo.png b/Skins/boblowedit/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/boblowedit/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/boblowedit/ranking-panel@2x.png b/Skins/boblowedit/ranking-panel@2x.png new file mode 100644 index 00000000..a4b66709 --- /dev/null +++ b/Skins/boblowedit/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0ba7f3e2db6f57b6f32d884a0b975ed6ad1f560c1287fe0b4f36c8acc132e2 +size 2982840 diff --git a/Skins/boblowedit/ranking-perfect.png b/Skins/boblowedit/ranking-perfect.png new file mode 100644 index 00000000..166eb77e --- /dev/null +++ b/Skins/boblowedit/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b400f70ca191bb86e1fccbd8caa48873846c906bb795afbc5996d7b74f39649 +size 14392 diff --git a/Skins/boblowedit/ranking-title.png b/Skins/boblowedit/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/boblowedit/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/boblowedit/ready.mp3 b/Skins/boblowedit/ready.mp3 new file mode 100644 index 00000000..1357e1c2 --- /dev/null +++ b/Skins/boblowedit/ready.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8df58cb4b10ac496960b7313db24af998fda30231b3d0c4091f4f661cc527cb +size 105642 diff --git a/Skins/boblowedit/ready.png b/Skins/boblowedit/ready.png new file mode 100644 index 00000000..d4077227 --- /dev/null +++ b/Skins/boblowedit/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8762e9e54d5d3f51350402e2fd7ff47545adca14e1927688cb42bbf24ad12ca3 +size 14510 diff --git a/Skins/boblowedit/ready.wav b/Skins/boblowedit/ready.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/boblowedit/ready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/boblowedit/readys.ogg b/Skins/boblowedit/readys.ogg new file mode 100644 index 00000000..6b2f09a9 --- /dev/null +++ b/Skins/boblowedit/readys.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd8b55e73cf7f38920ae3290ad02792b47d171283086d4aeafe6d513bda31a5 +size 4426 diff --git a/Skins/boblowedit/readys.wav b/Skins/boblowedit/readys.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/boblowedit/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/boblowedit/reversearrow@2x.png b/Skins/boblowedit/reversearrow@2x.png new file mode 100644 index 00000000..556f7a18 --- /dev/null +++ b/Skins/boblowedit/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c786a9909d65b60db2dc4e15aa7255c4d0ddc4b645aa1f74d94348108286e99 +size 10519 diff --git a/Skins/boblowedit/s/cursor.png b/Skins/boblowedit/s/cursor.png new file mode 100644 index 00000000..32e0dc37 --- /dev/null +++ b/Skins/boblowedit/s/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49826330fbfab57e79f9bf75349a467e0b605cd5bf2ea3d4d01610988fe85a61 +size 2559 diff --git a/Skins/boblowedit/s/cursor@2x.png b/Skins/boblowedit/s/cursor@2x.png new file mode 100644 index 00000000..0824e47c --- /dev/null +++ b/Skins/boblowedit/s/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298b8f60bfec2e0cefbbbbad26cefc531c7bab2da3b91d20258eca2a31568915 +size 14382 diff --git a/Skins/boblowedit/s/cursortrail.png b/Skins/boblowedit/s/cursortrail.png new file mode 100644 index 00000000..d23b62ab --- /dev/null +++ b/Skins/boblowedit/s/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97e92375100f9b375db8aed8aea817fea3fba54f847879fffcea67500bdc38f6 +size 1265 diff --git a/Skins/boblowedit/s/cursortrail@2x.png b/Skins/boblowedit/s/cursortrail@2x.png new file mode 100644 index 00000000..8abb797a --- /dev/null +++ b/Skins/boblowedit/s/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29822c8f1a77fbb8669356aee14c47dcf77c0d27455cd6d4105b7d74805f726a +size 3453 diff --git a/Skins/boblowedit/score-0.png b/Skins/boblowedit/score-0.png new file mode 100644 index 00000000..efcb8ab3 --- /dev/null +++ b/Skins/boblowedit/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66da57fd3f3f0f5b61a7980ac29b47ba65d25ae50fe01a5133b206e0d85bc355 +size 826 diff --git a/Skins/boblowedit/score-0@2x.png b/Skins/boblowedit/score-0@2x.png new file mode 100644 index 00000000..79281f05 --- /dev/null +++ b/Skins/boblowedit/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063ce80e53b63c84c7ea3a0f67f7f2366f0837761d4427c17465d1a842cae096 +size 518 diff --git a/Skins/boblowedit/score-1.png b/Skins/boblowedit/score-1.png new file mode 100644 index 00000000..9b867b31 --- /dev/null +++ b/Skins/boblowedit/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c432107120ef1f1561dece705b9849d25ee1822b42da544ba18b333cd8b3ca87 +size 476 diff --git a/Skins/boblowedit/score-1@2x.png b/Skins/boblowedit/score-1@2x.png new file mode 100644 index 00000000..e04573bc --- /dev/null +++ b/Skins/boblowedit/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3750a3a0ce5ac263fa2a10ac98a5ef92b7629bed2644eb3ea555b3a6b27e004e +size 236 diff --git a/Skins/boblowedit/score-2.png b/Skins/boblowedit/score-2.png new file mode 100644 index 00000000..45431323 --- /dev/null +++ b/Skins/boblowedit/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772bbbda36ad89fd226865c61a54badf15d31282c4f5ec3d68ab308217d545a4 +size 900 diff --git a/Skins/boblowedit/score-2@2x.png b/Skins/boblowedit/score-2@2x.png new file mode 100644 index 00000000..cbbeca45 --- /dev/null +++ b/Skins/boblowedit/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee259356786b9e23bd35ecc9c038e58789504590fec8f2e0991ae97ad71ec8b4 +size 449 diff --git a/Skins/boblowedit/score-3.png b/Skins/boblowedit/score-3.png new file mode 100644 index 00000000..8f717137 --- /dev/null +++ b/Skins/boblowedit/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6cb56e152d8ed53741364d898e79f4f808f127b61fa96018e0bffd63220cce6 +size 1041 diff --git a/Skins/boblowedit/score-3@2x.png b/Skins/boblowedit/score-3@2x.png new file mode 100644 index 00000000..de2f9804 --- /dev/null +++ b/Skins/boblowedit/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:500282e2ccbc9a6b0f7c58094eefd2abbcbfdd2cd533ae71028452137b77c61d +size 524 diff --git a/Skins/boblowedit/score-4.png b/Skins/boblowedit/score-4.png new file mode 100644 index 00000000..33c4dd9d --- /dev/null +++ b/Skins/boblowedit/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f15d84f725931ffd21a336bd8b9ddf7f5377224b06472d7ddc25592adeafe7 +size 883 diff --git a/Skins/boblowedit/score-4@2x.png b/Skins/boblowedit/score-4@2x.png new file mode 100644 index 00000000..f0327cad --- /dev/null +++ b/Skins/boblowedit/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8ac568526e286151c05097366501b44150d185a9e0c5c91b52085ad049bd28 +size 359 diff --git a/Skins/boblowedit/score-5.png b/Skins/boblowedit/score-5.png new file mode 100644 index 00000000..c21125d9 --- /dev/null +++ b/Skins/boblowedit/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600923c69b5d7c770bd42669a0f113db25e11fb76b681e87ceefaa362f36c313 +size 998 diff --git a/Skins/boblowedit/score-5@2x.png b/Skins/boblowedit/score-5@2x.png new file mode 100644 index 00000000..6465ce79 --- /dev/null +++ b/Skins/boblowedit/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022a222c1bb15f8f253a06fec393877743998a3d689311eb9ae2029bdb96e621 +size 506 diff --git a/Skins/boblowedit/score-6.png b/Skins/boblowedit/score-6.png new file mode 100644 index 00000000..9e7d6341 --- /dev/null +++ b/Skins/boblowedit/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdfcb33aacc592cc556f672bbc34759e32f5397271d68ed9b9f3626b891765b2 +size 1135 diff --git a/Skins/boblowedit/score-6@2x.png b/Skins/boblowedit/score-6@2x.png new file mode 100644 index 00000000..456ae511 --- /dev/null +++ b/Skins/boblowedit/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0d2afe62a9ea9f6f6e69adc46915f78f900bcc7c3197b30f390b5039732397 +size 624 diff --git a/Skins/boblowedit/score-7.png b/Skins/boblowedit/score-7.png new file mode 100644 index 00000000..888c4972 --- /dev/null +++ b/Skins/boblowedit/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12de0b6fb7a35b65fb86ba29359cce3f4529be2f0ff012b5e1fe78e00b8d8662 +size 800 diff --git a/Skins/boblowedit/score-7@2x.png b/Skins/boblowedit/score-7@2x.png new file mode 100644 index 00000000..a05940bc --- /dev/null +++ b/Skins/boblowedit/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c7fa444c54a9caa17bcb6e1fc6ef5d158584f3a6053d08e973b05efd5172a01 +size 323 diff --git a/Skins/boblowedit/score-8.png b/Skins/boblowedit/score-8.png new file mode 100644 index 00000000..28b4af11 --- /dev/null +++ b/Skins/boblowedit/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f0b82b73c8e0fa4bcb23eca4f43556976ee59399779d47aff328862b685369 +size 1156 diff --git a/Skins/boblowedit/score-8@2x.png b/Skins/boblowedit/score-8@2x.png new file mode 100644 index 00000000..88b3ee1b --- /dev/null +++ b/Skins/boblowedit/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43daea0fb3760d790de1ce30165bd90105e7d27b3481f0af05fcd3c417201b45 +size 639 diff --git a/Skins/boblowedit/score-9.png b/Skins/boblowedit/score-9.png new file mode 100644 index 00000000..54e24eb9 --- /dev/null +++ b/Skins/boblowedit/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae48ca51abc3d5c88995c7cde8c8c55579505fd97bdaa6b13b33ed5c832f2d32 +size 1161 diff --git a/Skins/boblowedit/score-9@2x.png b/Skins/boblowedit/score-9@2x.png new file mode 100644 index 00000000..c001b5d6 --- /dev/null +++ b/Skins/boblowedit/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9163aaba706782134c59f3d793f7cd84470278334ab0cd5cec4c9d06a37efcc8 +size 610 diff --git a/Skins/boblowedit/score-comma.png b/Skins/boblowedit/score-comma.png new file mode 100644 index 00000000..b6a7db3c --- /dev/null +++ b/Skins/boblowedit/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68780cc84b295c74ab4f728929c24f397c4da7cdc478784053621f825470459e +size 1569 diff --git a/Skins/boblowedit/score-comma@2x.png b/Skins/boblowedit/score-comma@2x.png new file mode 100644 index 00000000..87405dd6 --- /dev/null +++ b/Skins/boblowedit/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a2115122df4bd8b535403b9aee18e5ae9639c44527806f9423b9338b0fbffb +size 1572 diff --git a/Skins/boblowedit/score-dot.png b/Skins/boblowedit/score-dot.png new file mode 100644 index 00000000..76b338a5 --- /dev/null +++ b/Skins/boblowedit/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f3fafc83a5d7ab8180e418c7ccb86ce9bcc4094e0d61d8efaf84ec9a41eae8 +size 1501 diff --git a/Skins/boblowedit/score-dot@2x.png b/Skins/boblowedit/score-dot@2x.png new file mode 100644 index 00000000..3eb8a075 --- /dev/null +++ b/Skins/boblowedit/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f518e4de141d6ca72e95cf21b402179b15943bb0bace270061c956af6358b3 +size 1445 diff --git a/Skins/boblowedit/score-percent.png b/Skins/boblowedit/score-percent.png new file mode 100644 index 00000000..4e41c625 --- /dev/null +++ b/Skins/boblowedit/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3d282f187b0930bdefb462e6d2cc4b4f665d4e3020adc4d56cd597958eaa45 +size 2028 diff --git a/Skins/boblowedit/score-percent@2x.png b/Skins/boblowedit/score-percent@2x.png new file mode 100644 index 00000000..31cee397 --- /dev/null +++ b/Skins/boblowedit/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc994673dcd85520bfe511c94ab54bbd3c5f7eddf37f2686b9d8c713cd865387 +size 2107 diff --git a/Skins/boblowedit/score-x.png b/Skins/boblowedit/score-x.png new file mode 100644 index 00000000..7a7bc067 --- /dev/null +++ b/Skins/boblowedit/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24e4c584d284e7ed025efbfdf76eec78aa543480ae82a3d6b07bbf9a7baa0c2 +size 1961 diff --git a/Skins/boblowedit/score-x@2x.png b/Skins/boblowedit/score-x@2x.png new file mode 100644 index 00000000..deeba886 --- /dev/null +++ b/Skins/boblowedit/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4813f61c509e29c767319881e90f0bb4deb25a74577a84024ec3c4663dc762 +size 1936 diff --git a/Skins/boblowedit/scorebar-bg.png b/Skins/boblowedit/scorebar-bg.png new file mode 100644 index 00000000..b093ad53 --- /dev/null +++ b/Skins/boblowedit/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f0b825a14421ba9fe172201ad6b58eecd92ef73d33cbd90c810a1e58af5910 +size 46978 diff --git a/Skins/boblowedit/scorebar-colour-01a.png b/Skins/boblowedit/scorebar-colour-01a.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/boblowedit/scorebar-colour-01a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/boblowedit/scorebar-colour.png b/Skins/boblowedit/scorebar-colour.png new file mode 100644 index 00000000..270e8971 --- /dev/null +++ b/Skins/boblowedit/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6053bcbfa5b8019291cb13e0d447b8317ba77bfda5e0be51276e7d05b03f5ae +size 3181 diff --git a/Skins/boblowedit/scorebar-ki.png b/Skins/boblowedit/scorebar-ki.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/boblowedit/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/boblowedit/scorebar-kidanger.png b/Skins/boblowedit/scorebar-kidanger.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/boblowedit/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/boblowedit/scorebar-kidanger2.png b/Skins/boblowedit/scorebar-kidanger2.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/boblowedit/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/boblowedit/section-fail@2x.png b/Skins/boblowedit/section-fail@2x.png new file mode 100644 index 00000000..ece752c1 --- /dev/null +++ b/Skins/boblowedit/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17baec789c1d630c1b22472daa1494cf0f8ae917a3c827a3fb97635d8ebe4a0b +size 118879 diff --git a/Skins/boblowedit/section-pass@2x.png b/Skins/boblowedit/section-pass@2x.png new file mode 100644 index 00000000..9aac504f --- /dev/null +++ b/Skins/boblowedit/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a9163ac386a9b70b314dcc8ed4504ec039dc1b5cef17820d09db377699ec59 +size 149970 diff --git a/Skins/boblowedit/sectionfail.mp3 b/Skins/boblowedit/sectionfail.mp3 new file mode 100644 index 00000000..1aac399b --- /dev/null +++ b/Skins/boblowedit/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21da519b3147051bd9f98c49a3e241d99f92b7094eb239d1c9817ba06fea1d36 +size 18111 diff --git a/Skins/boblowedit/sectionpass.mp3 b/Skins/boblowedit/sectionpass.mp3 new file mode 100644 index 00000000..d1bdab3e --- /dev/null +++ b/Skins/boblowedit/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689cc553b9ceda9c0adfbf2cf2a055d789a4ca392491f783c24e8d4968ae20fa +size 21035 diff --git a/Skins/boblowedit/seeya.mp3 b/Skins/boblowedit/seeya.mp3 new file mode 100644 index 00000000..ece2f57e --- /dev/null +++ b/Skins/boblowedit/seeya.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d632073270f3de3640b2084d1a3f44f3a88d2b0ea87e7bdf62de64fbeec1c56 +size 36376 diff --git a/Skins/boblowedit/select-difficulty.wav b/Skins/boblowedit/select-difficulty.wav new file mode 100644 index 00000000..7d696365 --- /dev/null +++ b/Skins/boblowedit/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eae07ed3917575f741a197343b748451f0aca993cc5c0981e9c02eb05dfe430 +size 125662 diff --git a/Skins/boblowedit/select-expand.ogg b/Skins/boblowedit/select-expand.ogg new file mode 100644 index 00000000..a278f425 --- /dev/null +++ b/Skins/boblowedit/select-expand.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b80b1940b74799350c592bd26aa1198c47918915e2c613f5c8964b6850459f +size 63011 diff --git a/Skins/boblowedit/selection-mod-autoplay@2x.png b/Skins/boblowedit/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..5731fabc --- /dev/null +++ b/Skins/boblowedit/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b8eded3e8708ddc51681562d2fb1659dd90738e570bf7973080fa533508edba +size 8122 diff --git a/Skins/boblowedit/selection-mod-cinema@2x.png b/Skins/boblowedit/selection-mod-cinema@2x.png new file mode 100644 index 00000000..fc4df132 --- /dev/null +++ b/Skins/boblowedit/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d118ba36560c4747e1295046e53efda6eadaec5cab6c92f82e58646fa7471617 +size 8604 diff --git a/Skins/boblowedit/selection-mod-doubletime@2x.png b/Skins/boblowedit/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..f4ccdff8 --- /dev/null +++ b/Skins/boblowedit/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b7b68aa34522add3ddf2d8601a7ae08c985095d9a37ef8bf0abda8ce4de906b +size 8551 diff --git a/Skins/boblowedit/selection-mod-easy@2x.png b/Skins/boblowedit/selection-mod-easy@2x.png new file mode 100644 index 00000000..eda73a87 --- /dev/null +++ b/Skins/boblowedit/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b01adf5c6dab77f0d729faed343efeb8b4970224d02b17ada649081fd1a595 +size 10104 diff --git a/Skins/boblowedit/selection-mod-flashlight@2x.png b/Skins/boblowedit/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..e5431238 --- /dev/null +++ b/Skins/boblowedit/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f38cb40af3d2d463c8c7ad150044ab1c5c0ecb0a5f4f6828283b009dfc266364 +size 8020 diff --git a/Skins/boblowedit/selection-mod-halftime@2x.png b/Skins/boblowedit/selection-mod-halftime@2x.png new file mode 100644 index 00000000..7e976239 --- /dev/null +++ b/Skins/boblowedit/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10633ce39aae7a3140f8e508761216cbfd95f4bbe5f3a43a590d4bb25ae3304f +size 7852 diff --git a/Skins/boblowedit/selection-mod-hardrock@2x.png b/Skins/boblowedit/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..c3f0476a --- /dev/null +++ b/Skins/boblowedit/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5a70e6e901ec7de83981f503af58f683315ce5e9cd25d09468dc35f8d6d30f +size 8338 diff --git a/Skins/boblowedit/selection-mod-hidden@2x.png b/Skins/boblowedit/selection-mod-hidden@2x.png new file mode 100644 index 00000000..d0a36c6e --- /dev/null +++ b/Skins/boblowedit/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6b9f931cfbf453955eb5cfb3a57a702096a745d85d1a304ebea44894335b55 +size 8495 diff --git a/Skins/boblowedit/selection-mod-nightcore@2x.png b/Skins/boblowedit/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..ae0f4015 --- /dev/null +++ b/Skins/boblowedit/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96f5d5e2983e167f4e6f07f1a32f06dd7dd6d0c7d02151da8f94347853f06fc +size 9144 diff --git a/Skins/boblowedit/selection-mod-nofail@2x.png b/Skins/boblowedit/selection-mod-nofail@2x.png new file mode 100644 index 00000000..5cd7aaa0 --- /dev/null +++ b/Skins/boblowedit/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93084090e65e279bb1407d7d6ab80a72e2c57e59d2b8e1d5bdaad882186f26d1 +size 6140 diff --git a/Skins/boblowedit/selection-mod-perfect@2x.png b/Skins/boblowedit/selection-mod-perfect@2x.png new file mode 100644 index 00000000..88d0050f --- /dev/null +++ b/Skins/boblowedit/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6542f026ffdf1e91f1d898f7735e3e3440a9d0375dec26b67d306bfd5781bcc5 +size 6981 diff --git a/Skins/boblowedit/selection-mod-relax2@2x.png b/Skins/boblowedit/selection-mod-relax2@2x.png new file mode 100644 index 00000000..b6c43be6 --- /dev/null +++ b/Skins/boblowedit/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384462e1c57069f12201c06a9337668881865888bbef3f616fada10ac143e63d +size 8199 diff --git a/Skins/boblowedit/selection-mod-relax@2x.png b/Skins/boblowedit/selection-mod-relax@2x.png new file mode 100644 index 00000000..751ae3e4 --- /dev/null +++ b/Skins/boblowedit/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd5c1be073a3012b37f6f4a05ddbea2154c30b7ed82c308273a49d33304c5c7 +size 8674 diff --git a/Skins/boblowedit/selection-mod-scorev2@2x.png b/Skins/boblowedit/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..709e3b8e --- /dev/null +++ b/Skins/boblowedit/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e51c2567dde76386b3faa24453738aaf242335ad2bc0263568c2ddc70d7905 +size 9032 diff --git a/Skins/boblowedit/selection-mod-spunout@2x.png b/Skins/boblowedit/selection-mod-spunout@2x.png new file mode 100644 index 00000000..3af3ee73 --- /dev/null +++ b/Skins/boblowedit/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d22724f7ab00c7caa1fdc7725ff6a574cd964e7a6f0b5e02c470b38ad2051d9 +size 9541 diff --git a/Skins/boblowedit/selection-mod-suddendeath@2x.png b/Skins/boblowedit/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..035ddb49 --- /dev/null +++ b/Skins/boblowedit/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f92696c143c8cfb21b92f52632f0562f6c59142972e464fc4f3c9dfc956bd00 +size 8451 diff --git a/Skins/boblowedit/selection-mode-over.png b/Skins/boblowedit/selection-mode-over.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/selection-mode@2x.png b/Skins/boblowedit/selection-mode@2x.png new file mode 100644 index 00000000..5fea0c6b --- /dev/null +++ b/Skins/boblowedit/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2253773c3f34d74d6c5389b3443e376eb35a9b87d4f9deb366a27cfb62e02d9a +size 470019 diff --git a/Skins/boblowedit/selection-mods-over.png b/Skins/boblowedit/selection-mods-over.png new file mode 100644 index 00000000..74493a9c --- /dev/null +++ b/Skins/boblowedit/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbacfeb37d10bbfb024d57c94950ae93e2e6391821b582bb9d366e8499c0cad3 +size 4915 diff --git a/Skins/boblowedit/selection-mods-over@2x.png b/Skins/boblowedit/selection-mods-over@2x.png new file mode 100644 index 00000000..acaae03d --- /dev/null +++ b/Skins/boblowedit/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aadab8f6a8b7b67f07d2262cb8a4410cde9bc28fdf06e7028f92a34e6afbc1e +size 10051 diff --git a/Skins/boblowedit/selection-mods@2x.png b/Skins/boblowedit/selection-mods@2x.png new file mode 100644 index 00000000..03ec80b1 --- /dev/null +++ b/Skins/boblowedit/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5212814ee68e04b76fd80a091d2e371ff6cb7af49cc87fd9ff52575d5795ff0f +size 4585 diff --git a/Skins/boblowedit/selection-options-over@2x.png b/Skins/boblowedit/selection-options-over@2x.png new file mode 100644 index 00000000..6b23dc3b --- /dev/null +++ b/Skins/boblowedit/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7406240a2f515785d675826cc8f76839c7ecadf791490d10030117f2a36d8222 +size 12724 diff --git a/Skins/boblowedit/selection-options@2x.png b/Skins/boblowedit/selection-options@2x.png new file mode 100644 index 00000000..a9fd9d46 --- /dev/null +++ b/Skins/boblowedit/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010c772850779480d8278a31fa41c2898fe21a89a25af3bc2b546193fdbaf330 +size 5454 diff --git a/Skins/boblowedit/selection-random-over@2x.png b/Skins/boblowedit/selection-random-over@2x.png new file mode 100644 index 00000000..0880c56b --- /dev/null +++ b/Skins/boblowedit/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:661850a8453fd1a473efa2642aecff5e867fc3d7c9bb021ab7dd87fd7991316f +size 10991 diff --git a/Skins/boblowedit/selection-random@2x.png b/Skins/boblowedit/selection-random@2x.png new file mode 100644 index 00000000..503adca1 --- /dev/null +++ b/Skins/boblowedit/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562e1bf2f8ea8b45d0bf01973e72abbab5891b0e40953cacafaaf58d852ce296 +size 4577 diff --git a/Skins/boblowedit/selection-tab@2x.png b/Skins/boblowedit/selection-tab@2x.png new file mode 100644 index 00000000..dfe7e84b --- /dev/null +++ b/Skins/boblowedit/selection-tab@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cc0a41e4d93f542db8d618ef3eb5ac05470d1c468ff3c12357fcf6c8dc35a1e +size 2899 diff --git a/Skins/boblowedit/shutter.ogg b/Skins/boblowedit/shutter.ogg new file mode 100644 index 00000000..d32f44de --- /dev/null +++ b/Skins/boblowedit/shutter.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546bc3b3e7f17fb8b986c37b6e3190b704b7a8c9d1a8dbd60e4e5bf013922a3f +size 10076 diff --git a/Skins/boblowedit/skin.ini b/Skins/boblowedit/skin.ini new file mode 100644 index 00000000..b82d6854 --- /dev/null +++ b/Skins/boblowedit/skin.ini @@ -0,0 +1,41 @@ +[General] +Name: boblow +Author: boblow +Version: latest +SliderBallFlip: 1 +CursorRotate: 0 +CursorTrailRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 60 +HitCircleOverlayAboveNumer: 1 +SliderStyle: 2 + +AllowSliderBallTint: 0 + + +SpinnerFadePlayfield: 0 +[Colours] +Combo1: 244,188,201 +Combo2: 234, 136,155 +Combo3: 130,131,183 +Combo4: 196,157,195 +InputOverlayText: 255,255,255 +//SliderBorder: 92, 102, 130 +SliderBorder: 40,40,40 +SliderTrackOverride: 3,3,12 + +//SliderBorder: 120,120,120 OLD +//SliderTrackOverride: 3,3,12 OLD + +SongSelectActiveText: 250,250,250 +SongSelectInactiveText: 230,230,230 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 170 +ScorePrefix: score +ScoreOverlap: -2 +ComboPrefix: score +ComboOverlap: -2 +//ComboOverlap: 4 diff --git a/Skins/boblowedit/sliderb.png b/Skins/boblowedit/sliderb.png new file mode 100644 index 00000000..efe457ad --- /dev/null +++ b/Skins/boblowedit/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04bbd15fb48aac5150af172d6604393adea974d645549564fc5e7cf26ff6140 +size 116021 diff --git a/Skins/boblowedit/sliderb0.png b/Skins/boblowedit/sliderb0.png new file mode 100644 index 00000000..f12daca4 --- /dev/null +++ b/Skins/boblowedit/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98620ed2194d038ae91820426ab616245baaa4b2e4db5ec0eed3d3ce58c2a668 +size 10899 diff --git a/Skins/boblowedit/sliderb0@2x.png b/Skins/boblowedit/sliderb0@2x.png new file mode 100644 index 00000000..2f1595cf --- /dev/null +++ b/Skins/boblowedit/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adcd5ed345c40142a5b097fc1e896b9897c1ab6f419e3211afcd6f5ed7ec183 +size 23267 diff --git a/Skins/boblowedit/sliderb@2x.png b/Skins/boblowedit/sliderb@2x.png new file mode 100644 index 00000000..2f1595cf --- /dev/null +++ b/Skins/boblowedit/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adcd5ed345c40142a5b097fc1e896b9897c1ab6f419e3211afcd6f5ed7ec183 +size 23267 diff --git a/Skins/boblowedit/sliderbar.ogg b/Skins/boblowedit/sliderbar.ogg new file mode 100644 index 00000000..3a82e53e --- /dev/null +++ b/Skins/boblowedit/sliderbar.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ee2d58ca55bbc50b8400793e4113b36d97b1ac61eef39d3e2ac475c6f0d119 +size 79227 diff --git a/Skins/boblowedit/sliderendcircle.png b/Skins/boblowedit/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/sliderendcircleoverlay.png b/Skins/boblowedit/sliderendcircleoverlay.png new file mode 100644 index 00000000..40a61d93 --- /dev/null +++ b/Skins/boblowedit/sliderendcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d3fbf590a584138bb563319747dbef0c9e41db91f19ff45d41e785a5f4f98 +size 2808 diff --git a/Skins/boblowedit/sliderfollowcircle.png b/Skins/boblowedit/sliderfollowcircle.png new file mode 100644 index 00000000..aee338ea --- /dev/null +++ b/Skins/boblowedit/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523c8e2d03a197f8e21f5a9f805804822cbc78672e52f9a1701c735ad4a93eee +size 43433 diff --git a/Skins/boblowedit/sliderfollowcircle@2x.png b/Skins/boblowedit/sliderfollowcircle@2x.png new file mode 100644 index 00000000..07c7816a --- /dev/null +++ b/Skins/boblowedit/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7b1c21db1c0b9611072159377cb3fd9c4da64c91118c1ae93b6aea9b4092fc +size 67656 diff --git a/Skins/boblowedit/sliderpoint10.png b/Skins/boblowedit/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/sliderpoint30.png b/Skins/boblowedit/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/sliderscorepoint.png b/Skins/boblowedit/sliderscorepoint.png new file mode 100644 index 00000000..01781551 --- /dev/null +++ b/Skins/boblowedit/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6f30039ae057b51522b2e4b5c69667761ae33827bfab55e6eb31f868819feb +size 3386 diff --git a/Skins/boblowedit/sliderstartcircleoverlay.png b/Skins/boblowedit/sliderstartcircleoverlay.png new file mode 100644 index 00000000..17e287ad --- /dev/null +++ b/Skins/boblowedit/sliderstartcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c885b1ed92ca55b734057c7d58d4228366c31ec45466e53a78286dc2edd84f62 +size 26648 diff --git a/Skins/boblowedit/soft-hitclap.ogg b/Skins/boblowedit/soft-hitclap.ogg new file mode 100644 index 00000000..d6d2b5bf --- /dev/null +++ b/Skins/boblowedit/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa0a2f09a1ad9aec04bc6708ea34d3297e9bf76e15769bdca939f0de077032b +size 5349 diff --git a/Skins/boblowedit/soft-hitclap.wav b/Skins/boblowedit/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/boblowedit/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/boblowedit/soft-hitclap2.ogg b/Skins/boblowedit/soft-hitclap2.ogg new file mode 100644 index 00000000..085ec269 --- /dev/null +++ b/Skins/boblowedit/soft-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee389b83f7d1bdbefd19d4552a94a6d6ed3cec3cb64acf00f14665c927f3843 +size 7496 diff --git a/Skins/boblowedit/soft-hitclap2.wav b/Skins/boblowedit/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/boblowedit/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/boblowedit/soft-hitfinish.ogg b/Skins/boblowedit/soft-hitfinish.ogg new file mode 100644 index 00000000..514b7ea0 --- /dev/null +++ b/Skins/boblowedit/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469ffc3dcc6a5016f4ce54dd9d79e9c4cc2782ff12164f6e0fc263a959a70257 +size 15904 diff --git a/Skins/boblowedit/soft-hitfinish.wav b/Skins/boblowedit/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/boblowedit/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/boblowedit/soft-hitfinish2.ogg b/Skins/boblowedit/soft-hitfinish2.ogg new file mode 100644 index 00000000..02a654f3 --- /dev/null +++ b/Skins/boblowedit/soft-hitfinish2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c181175f91f0cbf922ced55f89386008d898aeb484954d656822669610afc586 +size 15904 diff --git a/Skins/boblowedit/soft-hitfinish2.wav b/Skins/boblowedit/soft-hitfinish2.wav new file mode 100644 index 00000000..3e8856c5 --- /dev/null +++ b/Skins/boblowedit/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3708a5decda6b05082c11e4edd9bc03e80acbb6e32759feecc98636e9f2b797b +size 25804 diff --git a/Skins/boblowedit/soft-hitnormal.ogg b/Skins/boblowedit/soft-hitnormal.ogg new file mode 100644 index 00000000..8e96baff --- /dev/null +++ b/Skins/boblowedit/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf91ddb05ee476fdd62eb99b71aa099fd41ca5613f56092cb738a4bfd5166677 +size 8106 diff --git a/Skins/boblowedit/soft-hitnormal.wav b/Skins/boblowedit/soft-hitnormal.wav new file mode 100644 index 00000000..2ba4a772 --- /dev/null +++ b/Skins/boblowedit/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a412d776db0c5e33c15d89e9550d32072262aabf303a5f79f3fd639a972a779 +size 26084 diff --git a/Skins/boblowedit/soft-hitnormal1.ogg b/Skins/boblowedit/soft-hitnormal1.ogg new file mode 100644 index 00000000..c84036ae --- /dev/null +++ b/Skins/boblowedit/soft-hitnormal1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e12bcbddab61d73f9c2048aac5f110a2a66144a5fcedde430218657e8ae38a +size 7044 diff --git a/Skins/boblowedit/soft-hitnormal1.wav b/Skins/boblowedit/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/boblowedit/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/boblowedit/soft-hitnormal2.ogg b/Skins/boblowedit/soft-hitnormal2.ogg new file mode 100644 index 00000000..cb3265d6 --- /dev/null +++ b/Skins/boblowedit/soft-hitnormal2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3c74c7a25fefdbe6a0dd0207f9e4eb75f2b271c3697c2b472e1d5e6438dfb2 +size 10576 diff --git a/Skins/boblowedit/soft-hitnormal2.wav b/Skins/boblowedit/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/boblowedit/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/boblowedit/soft-hitnormalh.wav b/Skins/boblowedit/soft-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/boblowedit/soft-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/boblowedit/soft-hitnormalhh.wav b/Skins/boblowedit/soft-hitnormalhh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/boblowedit/soft-hitnormalhh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/boblowedit/soft-hitsoft.wav b/Skins/boblowedit/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/boblowedit/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/boblowedit/soft-hitwhistle.ogg b/Skins/boblowedit/soft-hitwhistle.ogg new file mode 100644 index 00000000..7adaed3d --- /dev/null +++ b/Skins/boblowedit/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10135c5ce2ff2eb41717fd021cca7dd76279f6d590e6d535a50678c05368eb51 +size 20498 diff --git a/Skins/boblowedit/soft-hitwhistle.wav b/Skins/boblowedit/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/boblowedit/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/boblowedit/soft-hitwhistle2.ogg b/Skins/boblowedit/soft-hitwhistle2.ogg new file mode 100644 index 00000000..30a517cc --- /dev/null +++ b/Skins/boblowedit/soft-hitwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4fd64adf655a9e5e64b8530be0546ea2e8b7ece3fc5dd29c06b50b957f7892 +size 6993 diff --git a/Skins/boblowedit/soft-hitwhistle2.wav b/Skins/boblowedit/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/boblowedit/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/boblowedit/soft-sliderslide.ogg b/Skins/boblowedit/soft-sliderslide.ogg new file mode 100644 index 00000000..abd24459 --- /dev/null +++ b/Skins/boblowedit/soft-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cdaffd66fc1211cc3fd5ddd4e4a01f8b2ee749c4a894637f6670383d475987 +size 4426 diff --git a/Skins/boblowedit/soft-sliderslide.wav b/Skins/boblowedit/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/boblowedit/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/boblowedit/soft-sliderslide2.ogg b/Skins/boblowedit/soft-sliderslide2.ogg new file mode 100644 index 00000000..eaf9ed8a --- /dev/null +++ b/Skins/boblowedit/soft-sliderslide2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f505526a9308475d2449bb38a004ce15e18e8da899142069d23c392149fe91b +size 4426 diff --git a/Skins/boblowedit/soft-slidertick.ogg b/Skins/boblowedit/soft-slidertick.ogg new file mode 100644 index 00000000..539b7e3c --- /dev/null +++ b/Skins/boblowedit/soft-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58d616735967fc9276eb71bccb78d66465fcf6f9742c58a1be480719f7fa514 +size 14125 diff --git a/Skins/boblowedit/soft-slidertick.wav b/Skins/boblowedit/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/boblowedit/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/boblowedit/soft-slidertick2.ogg b/Skins/boblowedit/soft-slidertick2.ogg new file mode 100644 index 00000000..3a192c10 --- /dev/null +++ b/Skins/boblowedit/soft-slidertick2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d292290bd7c0c13314bc69a49fe6cbdbd19225848dc6cdffcaf8d6fa88b9ff68 +size 4426 diff --git a/Skins/boblowedit/soft-sliderwhistle.ogg b/Skins/boblowedit/soft-sliderwhistle.ogg new file mode 100644 index 00000000..7fb5b8a2 --- /dev/null +++ b/Skins/boblowedit/soft-sliderwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290def7f8b6938c8ef603d6abe7d835ea7cf0cc22a1f10c6bb03213f521b4dc2 +size 9647 diff --git a/Skins/boblowedit/soft-sliderwhistle.wav b/Skins/boblowedit/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/boblowedit/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/boblowedit/spinner-approachcircle.png b/Skins/boblowedit/spinner-approachcircle.png new file mode 100644 index 00000000..0b50e694 --- /dev/null +++ b/Skins/boblowedit/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331953917673bf4b919c7b6a7116493b0714b26eea482d6531606b333122efb5 +size 45054 diff --git a/Skins/boblowedit/spinner-background.png b/Skins/boblowedit/spinner-background.png new file mode 100644 index 00000000..6804aa0d --- /dev/null +++ b/Skins/boblowedit/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b506f9b2202e76c8ff060df170d4221243e2e137481759898dfbd64847338c9a +size 5456 diff --git a/Skins/boblowedit/spinner-bottom.png b/Skins/boblowedit/spinner-bottom.png new file mode 100644 index 00000000..6804aa0d --- /dev/null +++ b/Skins/boblowedit/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b506f9b2202e76c8ff060df170d4221243e2e137481759898dfbd64847338c9a +size 5456 diff --git a/Skins/boblowedit/spinner-circle.png b/Skins/boblowedit/spinner-circle.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/boblowedit/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/boblowedit/spinner-clear.png b/Skins/boblowedit/spinner-clear.png new file mode 100644 index 00000000..e7cd2f19 --- /dev/null +++ b/Skins/boblowedit/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300180d57784d9008934670b3e1c149961f6eb3706798124b15a4d9b3a3c0e6d +size 3143 diff --git a/Skins/boblowedit/spinner-glow.png b/Skins/boblowedit/spinner-glow.png new file mode 100644 index 00000000..27dfebe6 --- /dev/null +++ b/Skins/boblowedit/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beca027a9e8ccae72b4dde4be32b6fef240f1160778784d81a7445a2a62b451e +size 6797 diff --git a/Skins/boblowedit/spinner-middle.png b/Skins/boblowedit/spinner-middle.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/boblowedit/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/boblowedit/spinner-middle2.png b/Skins/boblowedit/spinner-middle2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/boblowedit/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/boblowedit/spinner-middle2@2x.png b/Skins/boblowedit/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/boblowedit/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/boblowedit/spinner-osu.png b/Skins/boblowedit/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/spinner-rpm.png b/Skins/boblowedit/spinner-rpm.png new file mode 100644 index 00000000..86438355 --- /dev/null +++ b/Skins/boblowedit/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a646e288115d63542d8519ed537d729b33ff1a4458fcbd1e3a045dbae93f0f +size 2696 diff --git a/Skins/boblowedit/spinner-spin.png b/Skins/boblowedit/spinner-spin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/spinner-top.png b/Skins/boblowedit/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/boblowedit/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/boblowedit/spinnerbonus.ogg b/Skins/boblowedit/spinnerbonus.ogg new file mode 100644 index 00000000..a4d98537 --- /dev/null +++ b/Skins/boblowedit/spinnerbonus.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126fd1e1a9d458d234d043d8fa9d853c9f98c2008a78d579e2a4c6973138c1b1 +size 22527 diff --git a/Skins/boblowedit/spinnerbonus.wav b/Skins/boblowedit/spinnerbonus.wav new file mode 100644 index 00000000..b2358efd --- /dev/null +++ b/Skins/boblowedit/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f946b259aa2996f975343653b7b5efd8c2942a4983af8814b1c1e5a1e753682 +size 151102 diff --git a/Skins/boblowedit/spinnerspin.ogg b/Skins/boblowedit/spinnerspin.ogg new file mode 100644 index 00000000..c67e2d8b --- /dev/null +++ b/Skins/boblowedit/spinnerspin.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0672286c726bf25bee248c8c909a2874d502bd109a830c4c672088dffa1b946 +size 7084 diff --git a/Skins/boblowedit/star.png b/Skins/boblowedit/star.png new file mode 100644 index 00000000..57cc86e3 --- /dev/null +++ b/Skins/boblowedit/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0923dba4b00cd7e9a694d731db281bf87da06a8a5bb51c7bf59f889c630f69 +size 17316 diff --git a/Skins/boblowedit/star2.png b/Skins/boblowedit/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/boblowedit/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/boblowedit/welcome.mp3 b/Skins/boblowedit/welcome.mp3 new file mode 100644 index 00000000..f6535be4 --- /dev/null +++ b/Skins/boblowedit/welcome.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8d5c7c6405abe9c66be32e905642060693345b49fa875ea43fc8103cbd7cb3 +size 92926 diff --git a/Skins/boblowedit/welcome_text@2x.png b/Skins/boblowedit/welcome_text@2x.png new file mode 100644 index 00000000..eff65549 --- /dev/null +++ b/Skins/boblowedit/welcome_text@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be60a22fb5cf27778701cd768c4d29518d131a8d8dfbd1c728c6770706751ef4 +size 483476 diff --git a/Skins/boop ts/applause.ogg b/Skins/boop ts/applause.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/approachcircle@2x.png b/Skins/boop ts/approachcircle@2x.png new file mode 100644 index 00000000..8737fd3b --- /dev/null +++ b/Skins/boop ts/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ea51175b51f5c02d313da296e234ca21a89f1f482513b13d1e520cb12b85e4 +size 3895 diff --git a/Skins/boop ts/back-button-click.ogg b/Skins/boop ts/back-button-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/back-button-hover.ogg b/Skins/boop ts/back-button-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/button-left.png b/Skins/boop ts/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/button-middle.png b/Skins/boop ts/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/button-right.png b/Skins/boop ts/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/check-off.ogg b/Skins/boop ts/check-off.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/check-on.ogg b/Skins/boop ts/check-on.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/click-close.ogg b/Skins/boop ts/click-close.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/click-short-confirm.ogg b/Skins/boop ts/click-short-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/click-short.ogg b/Skins/boop ts/click-short.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/comboburst.ogg b/Skins/boop ts/comboburst.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/count.ogg b/Skins/boop ts/count.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/count1.png b/Skins/boop ts/count1.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/count1s.ogg b/Skins/boop ts/count1s.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/count2.png b/Skins/boop ts/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/count2s.ogg b/Skins/boop ts/count2s.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/count3.png b/Skins/boop ts/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/count3s.ogg b/Skins/boop ts/count3s.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/cursor@2x.png b/Skins/boop ts/cursor@2x.png new file mode 100644 index 00000000..fc0483ce --- /dev/null +++ b/Skins/boop ts/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f291be017597ccbbe6ef917f5e598f4f753374a755a8d11fe1127ef2be1180a5 +size 2375 diff --git a/Skins/boop ts/cursortrail.png b/Skins/boop ts/cursortrail.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/cursortrail@2x.png b/Skins/boop ts/cursortrail@2x.png new file mode 100644 index 00000000..5c8e1ecc --- /dev/null +++ b/Skins/boop ts/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02de9bbf57762a8aa0f295bda321d4cdf1ff8a37d96cd2c9a4a06ab9da257c8 +size 2379 diff --git a/Skins/boop ts/default-0@2x.png b/Skins/boop ts/default-0@2x.png new file mode 100644 index 00000000..0340126a --- /dev/null +++ b/Skins/boop ts/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebcbf794e74b6ebb73c47aec82e1d487dc2ae82e40b8eecf6a188db99e79157 +size 7936 diff --git a/Skins/boop ts/default-1@2x.png b/Skins/boop ts/default-1@2x.png new file mode 100644 index 00000000..f5e86ec2 --- /dev/null +++ b/Skins/boop ts/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c76f8e353b5e2d79833f2924e69b2339cfc869b1e6481b9dcc9b7ecd5933e1c +size 7374 diff --git a/Skins/boop ts/default-2@2x.png b/Skins/boop ts/default-2@2x.png new file mode 100644 index 00000000..57072d17 --- /dev/null +++ b/Skins/boop ts/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fabf28ed1cf9e18079727fa9669975727d137688e4c72449c6511dd20c0962fb +size 8341 diff --git a/Skins/boop ts/default-3@2x.png b/Skins/boop ts/default-3@2x.png new file mode 100644 index 00000000..e52b04af --- /dev/null +++ b/Skins/boop ts/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef7e0b78438a35c1979085735583406647e9591f5b4a2a156895f47ab32050e +size 8489 diff --git a/Skins/boop ts/default-4@2x.png b/Skins/boop ts/default-4@2x.png new file mode 100644 index 00000000..d5872e4c --- /dev/null +++ b/Skins/boop ts/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a4aca6aef8768cb2ec856c3b50cdd5a7086ad1c8e635f0b4c25402cd332d0c +size 8082 diff --git a/Skins/boop ts/default-5@2x.png b/Skins/boop ts/default-5@2x.png new file mode 100644 index 00000000..0f780d33 --- /dev/null +++ b/Skins/boop ts/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a60a12e08659394bd1afdab731bfc6ba71aee44d1daae871ee4b36f717ab7e +size 8321 diff --git a/Skins/boop ts/default-6@2x.png b/Skins/boop ts/default-6@2x.png new file mode 100644 index 00000000..32916418 --- /dev/null +++ b/Skins/boop ts/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1bdbb8a525e86af154c94c5b3c43afbe5eda7c6ae7989a16f1f9d0322006a25 +size 8631 diff --git a/Skins/boop ts/default-7@2x.png b/Skins/boop ts/default-7@2x.png new file mode 100644 index 00000000..c9584384 --- /dev/null +++ b/Skins/boop ts/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7ff46576ae82a66327a6ca40d0f8124749b97b7d4d23ed9b8fceb75e7d441e +size 8064 diff --git a/Skins/boop ts/default-8@2x.png b/Skins/boop ts/default-8@2x.png new file mode 100644 index 00000000..90cebc1c --- /dev/null +++ b/Skins/boop ts/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faca90012677963d887dc560470f359ca9efadb5566626ecf89751c9eafedb9c +size 8552 diff --git a/Skins/boop ts/default-9@2x.png b/Skins/boop ts/default-9@2x.png new file mode 100644 index 00000000..75f220ff --- /dev/null +++ b/Skins/boop ts/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:187e7bdea8a050891bd2d3369c884b2b6f66402c13191793ec07a52c762f490f +size 8696 diff --git a/Skins/boop ts/drum-hitclap.wav b/Skins/boop ts/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/boop ts/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/boop ts/drum-hitfinish.wav b/Skins/boop ts/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/boop ts/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/boop ts/drum-hitnormal.wav b/Skins/boop ts/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/boop ts/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/boop ts/drum-hitwhistle.ogg b/Skins/boop ts/drum-hitwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/drum-sliderslide.ogg b/Skins/boop ts/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/drum-slidertick.ogg b/Skins/boop ts/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/drum-sliderwhistle.ogg b/Skins/boop ts/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/failsound.ogg b/Skins/boop ts/failsound.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/followpoint-0.png b/Skins/boop ts/followpoint-0.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/followpoint-1.png b/Skins/boop ts/followpoint-1.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/followpoint-2.png b/Skins/boop ts/followpoint-2.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/followpoint-3@2x.png b/Skins/boop ts/followpoint-3@2x.png new file mode 100644 index 00000000..c39abd23 --- /dev/null +++ b/Skins/boop ts/followpoint-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee72b25afd2b7cee1602f3669850ca193de2a8e9978daa2d6b1c3d25f5484757 +size 816 diff --git a/Skins/boop ts/followpoint-4@2x.png b/Skins/boop ts/followpoint-4@2x.png new file mode 100644 index 00000000..c39abd23 --- /dev/null +++ b/Skins/boop ts/followpoint-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee72b25afd2b7cee1602f3669850ca193de2a8e9978daa2d6b1c3d25f5484757 +size 816 diff --git a/Skins/boop ts/followpoint-5@2x.png b/Skins/boop ts/followpoint-5@2x.png new file mode 100644 index 00000000..c39abd23 --- /dev/null +++ b/Skins/boop ts/followpoint-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee72b25afd2b7cee1602f3669850ca193de2a8e9978daa2d6b1c3d25f5484757 +size 816 diff --git a/Skins/boop ts/followpoint-6.png b/Skins/boop ts/followpoint-6.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/followpoint-7.png b/Skins/boop ts/followpoint-7.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/followpoint-8.png b/Skins/boop ts/followpoint-8.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/followpoint-9.png b/Skins/boop ts/followpoint-9.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/go.png b/Skins/boop ts/go.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/gos.ogg b/Skins/boop ts/gos.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/heartbeat.ogg b/Skins/boop ts/heartbeat.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/hit0-0@2x.png b/Skins/boop ts/hit0-0@2x.png new file mode 100644 index 00000000..b010c8cd --- /dev/null +++ b/Skins/boop ts/hit0-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1a1bf1d464421e79caebb9ffd69ff2869b984c4d535c542d9a12822c3d3d9c +size 2181 diff --git a/Skins/boop ts/hit0.png b/Skins/boop ts/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/hit100-0@2x.png b/Skins/boop ts/hit100-0@2x.png new file mode 100644 index 00000000..e8c17bb9 --- /dev/null +++ b/Skins/boop ts/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faebacd34574fb34463decbfa3b6a33ae98ff7dca06e4d37fa38b5b3526b8d1b +size 4506 diff --git a/Skins/boop ts/hit100.png b/Skins/boop ts/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/hit100k-0@2x.png b/Skins/boop ts/hit100k-0@2x.png new file mode 100644 index 00000000..e8c17bb9 --- /dev/null +++ b/Skins/boop ts/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faebacd34574fb34463decbfa3b6a33ae98ff7dca06e4d37fa38b5b3526b8d1b +size 4506 diff --git a/Skins/boop ts/hit100k.png b/Skins/boop ts/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/hit300.png b/Skins/boop ts/hit300.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/hit300g.png b/Skins/boop ts/hit300g.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/hit300k.png b/Skins/boop ts/hit300k.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/hit50-0@2x.png b/Skins/boop ts/hit50-0@2x.png new file mode 100644 index 00000000..b041c1a7 --- /dev/null +++ b/Skins/boop ts/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856e173a946a297d4f98328d2464abd7efafca18dede0dbcbd0dcb2e3d4613c1 +size 3869 diff --git a/Skins/boop ts/hit50.png b/Skins/boop ts/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/hitcircle@2x.png b/Skins/boop ts/hitcircle@2x.png new file mode 100644 index 00000000..1868d053 --- /dev/null +++ b/Skins/boop ts/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf1ee5555e52cfde17e45c4a7af44ef9725ad8844b1afd0d60b60d3194c1d37 +size 14036 diff --git a/Skins/boop ts/hitcircleoverlay@2x.png b/Skins/boop ts/hitcircleoverlay@2x.png new file mode 100644 index 00000000..4106d0ec --- /dev/null +++ b/Skins/boop ts/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c1fdcb2b7f783a517c36189e942d32a142892b6ff530ce78e8be6286a5e75f +size 11884 diff --git a/Skins/boop ts/inputoverlay-background.png b/Skins/boop ts/inputoverlay-background.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/inputoverlay-key@2x.png b/Skins/boop ts/inputoverlay-key@2x.png new file mode 100644 index 00000000..b4bff0db --- /dev/null +++ b/Skins/boop ts/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519c7167d4fc6ec46c19be88344c059419f6510ddba0146b1f7e53f4df5ee64c +size 303 diff --git a/Skins/boop ts/key-confirm.ogg b/Skins/boop ts/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/key-delete.ogg b/Skins/boop ts/key-delete.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/key-movement.ogg b/Skins/boop ts/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/key-press-1.ogg b/Skins/boop ts/key-press-1.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/key-press-2.ogg b/Skins/boop ts/key-press-2.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/key-press-3.ogg b/Skins/boop ts/key-press-3.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/key-press-4.ogg b/Skins/boop ts/key-press-4.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/match-confirm.ogg b/Skins/boop ts/match-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/match-join.ogg b/Skins/boop ts/match-join.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/match-leave.ogg b/Skins/boop ts/match-leave.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/match-notready.ogg b/Skins/boop ts/match-notready.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/match-ready.ogg b/Skins/boop ts/match-ready.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/match-start.ogg b/Skins/boop ts/match-start.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-back-click.ogg b/Skins/boop ts/menu-back-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-back-hover.ogg b/Skins/boop ts/menu-back-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-back.png b/Skins/boop ts/menu-back.png new file mode 100644 index 00000000..60b2f556 --- /dev/null +++ b/Skins/boop ts/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b498f8a2ba0bdbf48de66753b3cfaa1c8bcfe4b7327d3abd149c6e15ffef47d1 +size 109 diff --git a/Skins/boop ts/menu-background.jpg b/Skins/boop ts/menu-background.jpg new file mode 100644 index 00000000..ff10a8fe --- /dev/null +++ b/Skins/boop ts/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1d5ebe3d6060fb26c98c3b2ff1ec9808529686a28ec4a685e126934e1e35e96 +size 154 diff --git a/Skins/boop ts/menu-button-background.png b/Skins/boop ts/menu-button-background.png new file mode 100644 index 00000000..84f15e87 --- /dev/null +++ b/Skins/boop ts/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:779b1904fb26470c230a882d6d063c05dc3519d9a5904b7cf6dc90618eb2ff03 +size 143 diff --git a/Skins/boop ts/menu-direct-click.ogg b/Skins/boop ts/menu-direct-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-direct-hover.ogg b/Skins/boop ts/menu-direct-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-edit-click.ogg b/Skins/boop ts/menu-edit-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-edit-hover.ogg b/Skins/boop ts/menu-edit-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-exit-click.ogg b/Skins/boop ts/menu-exit-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-exit-hover.ogg b/Skins/boop ts/menu-exit-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-freeplay-click.ogg b/Skins/boop ts/menu-freeplay-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-freeplay-hover.ogg b/Skins/boop ts/menu-freeplay-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-multiplayer-click.ogg b/Skins/boop ts/menu-multiplayer-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-multiplayer-hover.ogg b/Skins/boop ts/menu-multiplayer-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-options-click.ogg b/Skins/boop ts/menu-options-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-options-hover.ogg b/Skins/boop ts/menu-options-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-play-click.ogg b/Skins/boop ts/menu-play-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menu-play-hover.ogg b/Skins/boop ts/menu-play-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menuback.ogg b/Skins/boop ts/menuback.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menuclick.ogg b/Skins/boop ts/menuclick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/menuhit.ogg b/Skins/boop ts/menuhit.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/mode-osu-small.png b/Skins/boop ts/mode-osu-small.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/mode-osu.png b/Skins/boop ts/mode-osu.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/multi-skipped.png b/Skins/boop ts/multi-skipped.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/multi-skipped.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/nightcore-clap.ogg b/Skins/boop ts/nightcore-clap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/nightcore-finish.ogg b/Skins/boop ts/nightcore-finish.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/nightcore-hat.ogg b/Skins/boop ts/nightcore-hat.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/nightcore-kick.ogg b/Skins/boop ts/nightcore-kick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/normal-hitclap.wav b/Skins/boop ts/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/boop ts/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/boop ts/normal-hitfinish.wav b/Skins/boop ts/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/boop ts/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/boop ts/normal-hitnormal.wav b/Skins/boop ts/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/boop ts/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/boop ts/normal-hitwhistle.ogg b/Skins/boop ts/normal-hitwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/normal-sliderslide.ogg b/Skins/boop ts/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/normal-slidertick.ogg b/Skins/boop ts/normal-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/normal-sliderwhistle.ogg b/Skins/boop ts/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/pause-back-click.ogg b/Skins/boop ts/pause-back-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/pause-back-hover.ogg b/Skins/boop ts/pause-back-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/pause-back@2x.png b/Skins/boop ts/pause-back@2x.png new file mode 100644 index 00000000..7f89a933 --- /dev/null +++ b/Skins/boop ts/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac91edf200e9960b691134acdb6d9f53eab482a89115065bc8448a75dcfa8265 +size 3178 diff --git a/Skins/boop ts/pause-continue-click.ogg b/Skins/boop ts/pause-continue-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/pause-continue-hover.ogg b/Skins/boop ts/pause-continue-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/pause-continue@2x.png b/Skins/boop ts/pause-continue@2x.png new file mode 100644 index 00000000..10bd5eda --- /dev/null +++ b/Skins/boop ts/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502dbe1621e7d2a7396196b12e000beddcc1edbc5f3ab027aba160b023729a66 +size 3712 diff --git a/Skins/boop ts/pause-hover.ogg b/Skins/boop ts/pause-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/pause-loop.ogg b/Skins/boop ts/pause-loop.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/pause-replay@2x.png b/Skins/boop ts/pause-replay@2x.png new file mode 100644 index 00000000..3057cb20 --- /dev/null +++ b/Skins/boop ts/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e7007579cba881cd942b5d5f42bfc5a927cb6801d7da66aeac1c319ae5d086 +size 3818 diff --git a/Skins/boop ts/pause-retry-click.ogg b/Skins/boop ts/pause-retry-click.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/pause-retry-hover.ogg b/Skins/boop ts/pause-retry-hover.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/pause-retry@2x.png b/Skins/boop ts/pause-retry@2x.png new file mode 100644 index 00000000..577004f5 --- /dev/null +++ b/Skins/boop ts/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce68471b938dc2beb953ac239e957b99e92e73a012d78b340d573555807f7063 +size 3024 diff --git a/Skins/boop ts/play-skip.png b/Skins/boop ts/play-skip.png new file mode 100644 index 00000000..3f90fa9b --- /dev/null +++ b/Skins/boop ts/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c96d6c807403acb3d2d61d8608831a122d1139d06878791c3a7b97a50bc3a09 +size 359 diff --git a/Skins/boop ts/play-unranked.png b/Skins/boop ts/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/play-warningarrow@2x.png b/Skins/boop ts/play-warningarrow@2x.png new file mode 100644 index 00000000..f8e6c3db --- /dev/null +++ b/Skins/boop ts/play-warningarrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0475c4075db86b6ca8a3c68aaeb7515710eaaf70ed4fd9d0c9e6f203d22606 +size 418 diff --git a/Skins/boop ts/ranking-A-Small@2x.png b/Skins/boop ts/ranking-A-Small@2x.png new file mode 100644 index 00000000..1ad566f2 --- /dev/null +++ b/Skins/boop ts/ranking-A-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1808f58820d80fe745b51ebc903091b2cffa33bf2fc2f3db497fcb1be908975c +size 604 diff --git a/Skins/boop ts/ranking-A@2x.png b/Skins/boop ts/ranking-A@2x.png new file mode 100644 index 00000000..7429b243 --- /dev/null +++ b/Skins/boop ts/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6e7328fd9d78c7d457fdd974c60c5ffb6e314d531632326c4f33e7e4e77987 +size 3774 diff --git a/Skins/boop ts/ranking-B-Small@2x.png b/Skins/boop ts/ranking-B-Small@2x.png new file mode 100644 index 00000000..b7b2f72f --- /dev/null +++ b/Skins/boop ts/ranking-B-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5970d27c0844af5acb6d624304a206302f7a659732bb9fbf77822209bf847d8 +size 528 diff --git a/Skins/boop ts/ranking-B@2x.png b/Skins/boop ts/ranking-B@2x.png new file mode 100644 index 00000000..5d5fc646 --- /dev/null +++ b/Skins/boop ts/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:067d3e519dbd3b2ee929e2308fb33c236a0f5dd592db25bd32b95943f722a8f1 +size 3203 diff --git a/Skins/boop ts/ranking-C-Small@2x.png b/Skins/boop ts/ranking-C-Small@2x.png new file mode 100644 index 00000000..88affe74 --- /dev/null +++ b/Skins/boop ts/ranking-C-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c906ac64bf9479c39ef34186d2032b7a09987f96505519836eb0328a4260cb6e +size 692 diff --git a/Skins/boop ts/ranking-C@2x.png b/Skins/boop ts/ranking-C@2x.png new file mode 100644 index 00000000..f1bbf90e --- /dev/null +++ b/Skins/boop ts/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec27c59f77eb330e7d7df94eae323201232f40aa4a1e4188753aa5ff82a9efa +size 4558 diff --git a/Skins/boop ts/ranking-D-Small@2x.png b/Skins/boop ts/ranking-D-Small@2x.png new file mode 100644 index 00000000..85247fa9 --- /dev/null +++ b/Skins/boop ts/ranking-D-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972ee47799aa46b6be0e3e1415feb40fa50622ecb63e410cf37f055bb821618d +size 512 diff --git a/Skins/boop ts/ranking-D@2x.png b/Skins/boop ts/ranking-D@2x.png new file mode 100644 index 00000000..6bee68aa --- /dev/null +++ b/Skins/boop ts/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7670a8941897a20cf2da07b1915bb219653cfc4fcb25760bf82cc8633c240975 +size 3104 diff --git a/Skins/boop ts/ranking-S-Small@2x.png b/Skins/boop ts/ranking-S-Small@2x.png new file mode 100644 index 00000000..ce8f71e9 --- /dev/null +++ b/Skins/boop ts/ranking-S-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5f1a18f239647ab53b8ab7dd9e94bfa407d877595f2f751304791ae99f21bf +size 706 diff --git a/Skins/boop ts/ranking-S@2x.png b/Skins/boop ts/ranking-S@2x.png new file mode 100644 index 00000000..3e3876e1 --- /dev/null +++ b/Skins/boop ts/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0d6d31c8972cdb4469dd55b0a25930b9a8cd76510c7167788295f94a3a9c2d +size 4561 diff --git a/Skins/boop ts/ranking-SH-Small@2x.png b/Skins/boop ts/ranking-SH-Small@2x.png new file mode 100644 index 00000000..ce8f71e9 --- /dev/null +++ b/Skins/boop ts/ranking-SH-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5f1a18f239647ab53b8ab7dd9e94bfa407d877595f2f751304791ae99f21bf +size 706 diff --git a/Skins/boop ts/ranking-SH@2x.png b/Skins/boop ts/ranking-SH@2x.png new file mode 100644 index 00000000..3e3876e1 --- /dev/null +++ b/Skins/boop ts/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0d6d31c8972cdb4469dd55b0a25930b9a8cd76510c7167788295f94a3a9c2d +size 4561 diff --git a/Skins/boop ts/ranking-X-small@2x.png b/Skins/boop ts/ranking-X-small@2x.png new file mode 100644 index 00000000..3b97da2d --- /dev/null +++ b/Skins/boop ts/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fcc738be321be41b11c793b54ba3262e25629b0efb4dc8ea07954005264ae9b +size 608 diff --git a/Skins/boop ts/ranking-X@2x.png b/Skins/boop ts/ranking-X@2x.png new file mode 100644 index 00000000..f0744962 --- /dev/null +++ b/Skins/boop ts/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28f4b4f0b8ae3fea3a7230e075272e48b40bbd4ec7d772daea0da57fb7dac78 +size 3825 diff --git a/Skins/boop ts/ranking-XH-small@2x.png b/Skins/boop ts/ranking-XH-small@2x.png new file mode 100644 index 00000000..3b97da2d --- /dev/null +++ b/Skins/boop ts/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fcc738be321be41b11c793b54ba3262e25629b0efb4dc8ea07954005264ae9b +size 608 diff --git a/Skins/boop ts/ranking-XH@2x.png b/Skins/boop ts/ranking-XH@2x.png new file mode 100644 index 00000000..f0744962 --- /dev/null +++ b/Skins/boop ts/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28f4b4f0b8ae3fea3a7230e075272e48b40bbd4ec7d772daea0da57fb7dac78 +size 3825 diff --git a/Skins/boop ts/ranking-accuracy.png b/Skins/boop ts/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/ranking-graph.png b/Skins/boop ts/ranking-graph.png new file mode 100644 index 00000000..8385b95b --- /dev/null +++ b/Skins/boop ts/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4a31aaeeec103c310997bf43a8dd836001dca8a0ef3b79d177d225951d39c1 +size 114 diff --git a/Skins/boop ts/ranking-maxcombo.png b/Skins/boop ts/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/ranking-panel.png b/Skins/boop ts/ranking-panel.png new file mode 100644 index 00000000..4882c486 --- /dev/null +++ b/Skins/boop ts/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c740a039b639e2186e2190f57a4b10124f4f60f7a2690a080c2b99d4d07abc50 +size 146 diff --git a/Skins/boop ts/ranking-perfect.png b/Skins/boop ts/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/ranking-title.png b/Skins/boop ts/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/ranking-winner.png b/Skins/boop ts/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/ready.png b/Skins/boop ts/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/readys.ogg b/Skins/boop ts/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/reversearrow@2x.png b/Skins/boop ts/reversearrow@2x.png new file mode 100644 index 00000000..a4950615 --- /dev/null +++ b/Skins/boop ts/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88853bb2ac50b3e236183c44245588883c33732986576e8d31b94efcc08719d9 +size 3970 diff --git a/Skins/boop ts/score-0@2x.png b/Skins/boop ts/score-0@2x.png new file mode 100644 index 00000000..f58d33a9 --- /dev/null +++ b/Skins/boop ts/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62851df0dc9f2cffbb70ce8124b0a8809ee1455f9c3fe3531c4c09d226e386d8 +size 2834 diff --git a/Skins/boop ts/score-1@2x.png b/Skins/boop ts/score-1@2x.png new file mode 100644 index 00000000..f10fda81 --- /dev/null +++ b/Skins/boop ts/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cce7a9e91d190cca9360dfef0cb3bea276dc2a54761d203542d770174ee0e9e +size 1737 diff --git a/Skins/boop ts/score-2@2x.png b/Skins/boop ts/score-2@2x.png new file mode 100644 index 00000000..1dfaf0a8 --- /dev/null +++ b/Skins/boop ts/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e439a1b6f306aa50a59bee6602eafe0a61f4d0f10ddeff85df4888717976175 +size 2517 diff --git a/Skins/boop ts/score-3@2x.png b/Skins/boop ts/score-3@2x.png new file mode 100644 index 00000000..6f64767f --- /dev/null +++ b/Skins/boop ts/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fbd4cc8f3d98f7be0645c9b7eaa44d291015ec2aee4349ab5f0faa4895e0e77 +size 2826 diff --git a/Skins/boop ts/score-4@2x.png b/Skins/boop ts/score-4@2x.png new file mode 100644 index 00000000..22e553bb --- /dev/null +++ b/Skins/boop ts/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5265ab78cc2c2ea98207f173abf6f44a310a594380f85cb965596f86a6bd9381 +size 2030 diff --git a/Skins/boop ts/score-5@2x.png b/Skins/boop ts/score-5@2x.png new file mode 100644 index 00000000..ebab2214 --- /dev/null +++ b/Skins/boop ts/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d08b407f0c1fc2a348cc494cb7232b6814b1863b519b67bf3b9973b5afece0a3 +size 2601 diff --git a/Skins/boop ts/score-6@2x.png b/Skins/boop ts/score-6@2x.png new file mode 100644 index 00000000..120190e0 --- /dev/null +++ b/Skins/boop ts/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f24a2375e25e6cf3cf1c8420e6aa4f03d225cd143fd924e64403e64b26aeb556 +size 2523 diff --git a/Skins/boop ts/score-7@2x.png b/Skins/boop ts/score-7@2x.png new file mode 100644 index 00000000..364bf3ae --- /dev/null +++ b/Skins/boop ts/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed6e7489aee62d9eede709f34642d0acdb56d3f263b37bc3f7480701b09f24d +size 1958 diff --git a/Skins/boop ts/score-8@2x.png b/Skins/boop ts/score-8@2x.png new file mode 100644 index 00000000..842be9c2 --- /dev/null +++ b/Skins/boop ts/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12176f541318d730272a543f19af613e37532522832786a5312875eeb913c247 +size 2701 diff --git a/Skins/boop ts/score-9@2x.png b/Skins/boop ts/score-9@2x.png new file mode 100644 index 00000000..b45b2000 --- /dev/null +++ b/Skins/boop ts/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff73a3c1ba8d958c5f2a2bfcc8e2f32207a78b6b1015de6e6c4e690a0daa9d3 +size 2506 diff --git a/Skins/boop ts/score-comma.png b/Skins/boop ts/score-comma.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/score-comma@2x.png b/Skins/boop ts/score-comma@2x.png new file mode 100644 index 00000000..386979af --- /dev/null +++ b/Skins/boop ts/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:675c4beed2c4274c841f9798f49fc718199883c71859a349f3038bc549238ca2 +size 850 diff --git a/Skins/boop ts/score-dot@2x.png b/Skins/boop ts/score-dot@2x.png new file mode 100644 index 00000000..386979af --- /dev/null +++ b/Skins/boop ts/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:675c4beed2c4274c841f9798f49fc718199883c71859a349f3038bc549238ca2 +size 850 diff --git a/Skins/boop ts/score-percent.png b/Skins/boop ts/score-percent.png new file mode 100644 index 00000000..33363d6a --- /dev/null +++ b/Skins/boop ts/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1c43cb4352ce807c1404350db1f31a1c555010129390009e6a5b362d5851926 +size 96 diff --git a/Skins/boop ts/score-x.png b/Skins/boop ts/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/scorebar-bg@2x.png b/Skins/boop ts/scorebar-bg@2x.png new file mode 100644 index 00000000..984d5959 --- /dev/null +++ b/Skins/boop ts/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc04571738d6404ce7b545f331c9f47071e007c248d12e482ff2293703ab0b7 +size 618 diff --git a/Skins/boop ts/scorebar-colour.png b/Skins/boop ts/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/scoreentry-percent.png b/Skins/boop ts/scoreentry-percent.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/scoreentry-x.png b/Skins/boop ts/scoreentry-x.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/sectionfail.ogg b/Skins/boop ts/sectionfail.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/sectionpass.ogg b/Skins/boop ts/sectionpass.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/seeya.ogg b/Skins/boop ts/seeya.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/select-difficulty.ogg b/Skins/boop ts/select-difficulty.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/select-expand.ogg b/Skins/boop ts/select-expand.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/selection-mod-autoplay@2x.png b/Skins/boop ts/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..2b70fd8d --- /dev/null +++ b/Skins/boop ts/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c330d74413cbd4107aade4bf75f69bdac6c26f96c030c5aac9fb909d1f445e +size 983 diff --git a/Skins/boop ts/selection-mod-cinema@2x.png b/Skins/boop ts/selection-mod-cinema@2x.png new file mode 100644 index 00000000..2faeab82 --- /dev/null +++ b/Skins/boop ts/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61c5afca67a9acc534e691df83990bf1b6434ec10ef1bcaef66d83b989ceb921 +size 1193 diff --git a/Skins/boop ts/selection-mod-doubletime@2x.png b/Skins/boop ts/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..fe36225d --- /dev/null +++ b/Skins/boop ts/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb43f7a9d0147c63f283febd7dbffe0043ba05a81b05f4642419fb9ad1de61fe +size 1015 diff --git a/Skins/boop ts/selection-mod-easy@2x.png b/Skins/boop ts/selection-mod-easy@2x.png new file mode 100644 index 00000000..7d2df9f4 --- /dev/null +++ b/Skins/boop ts/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2d19bbba2250fa3add6200d5c2f769cfe79797b0191e35f07a7a08bdb6a96b +size 998 diff --git a/Skins/boop ts/selection-mod-flashlight@2x.png b/Skins/boop ts/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..8a4d656c --- /dev/null +++ b/Skins/boop ts/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312fd1d8a866cd09d2e2d84cb0d7f688dc4920bad0b70186ce2b9edc73e7069b +size 553 diff --git a/Skins/boop ts/selection-mod-halftime@2x.png b/Skins/boop ts/selection-mod-halftime@2x.png new file mode 100644 index 00000000..6785b87c --- /dev/null +++ b/Skins/boop ts/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b248846efa2477e4f9e5a5a660f8a3bda409ff8be0e60643ce4b73881edb12bb +size 841 diff --git a/Skins/boop ts/selection-mod-hardrock@2x.png b/Skins/boop ts/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..9b9d2898 --- /dev/null +++ b/Skins/boop ts/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:922d091dbb804dee3fc7d32385ddbef8645f854613896920d8233a62edd81240 +size 758 diff --git a/Skins/boop ts/selection-mod-hidden@2x.png b/Skins/boop ts/selection-mod-hidden@2x.png new file mode 100644 index 00000000..976126a1 --- /dev/null +++ b/Skins/boop ts/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:444598d5c4b969f46f4e80c92cb84566e1f7682daf0caf302c00ba41690c42e8 +size 994 diff --git a/Skins/boop ts/selection-mod-nightcore@2x.png b/Skins/boop ts/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..326219cb --- /dev/null +++ b/Skins/boop ts/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b3d3768df725534829059cf32f1ee71eb516ce4c76c039c61ea186b5b2a9846 +size 1008 diff --git a/Skins/boop ts/selection-mod-nofail@2x.png b/Skins/boop ts/selection-mod-nofail@2x.png new file mode 100644 index 00000000..118fc743 --- /dev/null +++ b/Skins/boop ts/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35e8356266cce81fbc471306cb09e4f5dbe02c34c706d55f694752b493c135d1 +size 795 diff --git a/Skins/boop ts/selection-mod-perfect@2x.png b/Skins/boop ts/selection-mod-perfect@2x.png new file mode 100644 index 00000000..87d1a32d --- /dev/null +++ b/Skins/boop ts/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365365173b99f1852bfaf2a8ee711d8f32795cd4840e892aac09d993c8cf89bc +size 942 diff --git a/Skins/boop ts/selection-mod-relax2@2x.png b/Skins/boop ts/selection-mod-relax2@2x.png new file mode 100644 index 00000000..e8301231 --- /dev/null +++ b/Skins/boop ts/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93333a02d2526709215ba5c213383e5a8fde002b78e9ad45efd771da80b3a396 +size 1091 diff --git a/Skins/boop ts/selection-mod-relax@2x.png b/Skins/boop ts/selection-mod-relax@2x.png new file mode 100644 index 00000000..aaadb08b --- /dev/null +++ b/Skins/boop ts/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ca55ff55640726f04baa336b3c603da6c2e3605a6bc8fa7ce068c78f40798b +size 483 diff --git a/Skins/boop ts/selection-mod-scorev2@2x.png b/Skins/boop ts/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..f89ed037 --- /dev/null +++ b/Skins/boop ts/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a436e9f8fe01e0118f7e1dd0d31c31d182f58d9bf87b8022cf9708e11d15691b +size 1126 diff --git a/Skins/boop ts/selection-mod-spunout@2x.png b/Skins/boop ts/selection-mod-spunout@2x.png new file mode 100644 index 00000000..faf9f2fa --- /dev/null +++ b/Skins/boop ts/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622fc466d7fa7a4642bf954122482c43bd854e98318ca53d71bedc5a1b0a2fd2 +size 1097 diff --git a/Skins/boop ts/selection-mod-suddendeath@2x.png b/Skins/boop ts/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..e62316f7 --- /dev/null +++ b/Skins/boop ts/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa76fce1590565297a656e3260c06c50199589fc5d78b270cdc5e386d0f2cdf2 +size 1187 diff --git a/Skins/boop ts/selection-mod-target@2x.png b/Skins/boop ts/selection-mod-target@2x.png new file mode 100644 index 00000000..d3622d0b --- /dev/null +++ b/Skins/boop ts/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1faed5051e375cf4218145bad0ca42853fbf1f5fde767b1bdb9fd355c6dbda2a +size 965 diff --git a/Skins/boop ts/selection-mode-over.png b/Skins/boop ts/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/selection-mode.png b/Skins/boop ts/selection-mode.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/selection-mods-over.png b/Skins/boop ts/selection-mods-over.png new file mode 100644 index 00000000..e1d51441 --- /dev/null +++ b/Skins/boop ts/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:729c19ca550ea02c05f80cc35b9c157cceb71f43c9bb576670ec33c5308892c5 +size 111 diff --git a/Skins/boop ts/selection-mods.png b/Skins/boop ts/selection-mods.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/selection-options-over.png b/Skins/boop ts/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/selection-options.png b/Skins/boop ts/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/selection-random-over.png b/Skins/boop ts/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/selection-random.png b/Skins/boop ts/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/selection-tab.png b/Skins/boop ts/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/boop ts/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/boop ts/shutter.ogg b/Skins/boop ts/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/skin.ini b/Skins/boop ts/skin.ini new file mode 100644 index 00000000..b6df3bf9 --- /dev/null +++ b/Skins/boop ts/skin.ini @@ -0,0 +1,20 @@ +[General] +Name:boop ts +Author:ieth +Version:latest +CursorRotate:0 +CursorCentre:1 +CursorExpand:0 +CursorTrailRotate:0 +AllowSliderBallTint:1 +HitCircleOverlayAboveNumber:0 +[Colours] +Combo1:255,255,255 +SliderBorder:255,255,255 +SliderTrackOverride:0,0,0 +SongSelectActiveText:255,255,255 +SongSelectInactiveText:255,255,255 +[Fonts] +HitCircleOverlap:160 +ScoreOverlap:8 +ComboOverlap:8 \ No newline at end of file diff --git a/Skins/boop ts/sliderb@2x.png b/Skins/boop ts/sliderb@2x.png new file mode 100644 index 00000000..24f5f981 --- /dev/null +++ b/Skins/boop ts/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb7291d4cbd1c61bb0154ead22b1f85908f662fad04370b4fb9c2f80e088d91 +size 1714 diff --git a/Skins/boop ts/sliderbar.ogg b/Skins/boop ts/sliderbar.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/sliderendcircle.png b/Skins/boop ts/sliderendcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/sliderfollowcircle.png b/Skins/boop ts/sliderfollowcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/sliderfollowcircle@2x.png b/Skins/boop ts/sliderfollowcircle@2x.png new file mode 100644 index 00000000..f62044b1 --- /dev/null +++ b/Skins/boop ts/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7c57c82ade67f48e4f90da9d0561464b31236d812b72d97f79a0616812de07 +size 7906 diff --git a/Skins/boop ts/sliderscorepoint@2x.png b/Skins/boop ts/sliderscorepoint@2x.png new file mode 100644 index 00000000..7a72138e --- /dev/null +++ b/Skins/boop ts/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6ec5c0f06a788b02673a8895d62ed39c748bc6502e728de02560acc9740c3b8 +size 1224 diff --git a/Skins/boop ts/sliderstartcircle@2x.png b/Skins/boop ts/sliderstartcircle@2x.png new file mode 100644 index 00000000..1868d053 --- /dev/null +++ b/Skins/boop ts/sliderstartcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf1ee5555e52cfde17e45c4a7af44ef9725ad8844b1afd0d60b60d3194c1d37 +size 14036 diff --git a/Skins/boop ts/soft-hitclap.wav b/Skins/boop ts/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/boop ts/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/boop ts/soft-hitfinish.wav b/Skins/boop ts/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/boop ts/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/boop ts/soft-hitnormal.wav b/Skins/boop ts/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/boop ts/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/boop ts/soft-hitwhistle.ogg b/Skins/boop ts/soft-hitwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/soft-sliderslide.ogg b/Skins/boop ts/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/soft-slidertick.ogg b/Skins/boop ts/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/soft-sliderwhistle.ogg b/Skins/boop ts/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/spinner-approachcircle.png b/Skins/boop ts/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/spinner-background.png b/Skins/boop ts/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/spinner-bottom.png b/Skins/boop ts/spinner-bottom.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/spinner-circle@2x.png b/Skins/boop ts/spinner-circle@2x.png new file mode 100644 index 00000000..dda2cf4e --- /dev/null +++ b/Skins/boop ts/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3f38697d8081159c7e9633017b1851c59bb722c800805c102116e2944b043b +size 10917 diff --git a/Skins/boop ts/spinner-clear.png b/Skins/boop ts/spinner-clear.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/spinner-glow.png b/Skins/boop ts/spinner-glow.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/spinner-metre.png b/Skins/boop ts/spinner-metre.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/spinner-middle.png b/Skins/boop ts/spinner-middle.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/spinner-osu.png b/Skins/boop ts/spinner-osu.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/spinner-rpm.png b/Skins/boop ts/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/boop ts/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/boop ts/spinner-spin.png b/Skins/boop ts/spinner-spin.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/spinner-top.png b/Skins/boop ts/spinner-top.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/boop ts/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/boop ts/spinnerbonus.ogg b/Skins/boop ts/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/spinnerspin.ogg b/Skins/boop ts/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/boop ts/star.png b/Skins/boop ts/star.png new file mode 100644 index 00000000..f972718c --- /dev/null +++ b/Skins/boop ts/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09cbf07221eae6f3fb81fb8a45d7be1da01c8b4f45ed0fc0663fa59082a532e +size 107 diff --git a/Skins/boop ts/star2.png b/Skins/boop ts/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/boop ts/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/boop ts/welcome.ogg b/Skins/boop ts/welcome.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/fukari alt/Extras/2.png b/Skins/fukari alt/Extras/2.png new file mode 100644 index 00000000..11a8f642 --- /dev/null +++ b/Skins/fukari alt/Extras/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0276dd72fd480afda354e4d6ffcf56d588d6c036f4acabc02a97c56e828742 +size 1275 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300-0.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-0.png new file mode 100644 index 00000000..28f3d90e --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343e5cf08b0bae1fffcc0ae4c444ddfe014ef6e89a45851a40376ed16f428dd5 +size 6752 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300-1.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-1.png new file mode 100644 index 00000000..6ddbddc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b35408acf4108560730f7a3e4662d144623862ecf42f2e18e489c31b17fc131 +size 7088 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300-2.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-2.png new file mode 100644 index 00000000..e1bf1fba --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e47846c2d737e2c8acb3ccc65a29128f4386ebb49978fca0337e2db6f1bac2b +size 7421 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300-3.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-3.png new file mode 100644 index 00000000..bc7aebbd --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b159f470df4240e668ac470a158f3838040bade4b035a6fa7c7399f920e0a38 +size 7457 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300-4.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-4.png new file mode 100644 index 00000000..828ad124 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8c8c6ccd03700a3884e41141a985588ee816a2aad30221f6eef9e102d5cb92 +size 7156 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300-5.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-5.png new file mode 100644 index 00000000..a384854c --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6961aad8381954841253547fcf47412a0b56c498126813e948dfbe91175e457 +size 6659 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300-6.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-6.png new file mode 100644 index 00000000..ce260dc2 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7336f154cea8dc0ba6afb21d24edfa5b27a9261542f7441f7c3baf37c12413 +size 5988 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300-7.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-7.png new file mode 100644 index 00000000..8bc2122d --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb48311c728c179f4db624518bc5f9d691d30a5f14677d3e91d00527c49d4d3 +size 5026 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300-8.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-8.png new file mode 100644 index 00000000..dab46e4d --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f28dfdb5dcb8098825e06be10ecc7e298e5bcdbb2af986dcd222125dfc8b5c7 +size 497 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300@2x.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300@2x.png new file mode 100644 index 00000000..c942ce70 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc4c46b869eb477dd862787dc4efff6e38419ed38976c823ce24fbb1db775760 +size 1309 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-0.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-0.png new file mode 100644 index 00000000..28f3d90e --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343e5cf08b0bae1fffcc0ae4c444ddfe014ef6e89a45851a40376ed16f428dd5 +size 6752 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-1.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-1.png new file mode 100644 index 00000000..6ddbddc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b35408acf4108560730f7a3e4662d144623862ecf42f2e18e489c31b17fc131 +size 7088 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-2.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-2.png new file mode 100644 index 00000000..e1bf1fba --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e47846c2d737e2c8acb3ccc65a29128f4386ebb49978fca0337e2db6f1bac2b +size 7421 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-3.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-3.png new file mode 100644 index 00000000..bc7aebbd --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b159f470df4240e668ac470a158f3838040bade4b035a6fa7c7399f920e0a38 +size 7457 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-4.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-4.png new file mode 100644 index 00000000..828ad124 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8c8c6ccd03700a3884e41141a985588ee816a2aad30221f6eef9e102d5cb92 +size 7156 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-5.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-5.png new file mode 100644 index 00000000..a384854c --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6961aad8381954841253547fcf47412a0b56c498126813e948dfbe91175e457 +size 6659 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-6.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-6.png new file mode 100644 index 00000000..ce260dc2 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7336f154cea8dc0ba6afb21d24edfa5b27a9261542f7441f7c3baf37c12413 +size 5988 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-7.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-7.png new file mode 100644 index 00000000..8bc2122d --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb48311c728c179f4db624518bc5f9d691d30a5f14677d3e91d00527c49d4d3 +size 5026 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-8.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-8.png new file mode 100644 index 00000000..65c03efa --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e535c7058681bdaf4e0565b5f3434262e4bb36b3d4ba2e0e0d6ab090a30c8d8 +size 3088 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300g@2x.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g@2x.png new file mode 100644 index 00000000..64cb42a0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c434de2bb23e7bcd15555dd4d5eef7477cc05d705e4c884736a7c48117522b +size 1344 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-0.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-0.png new file mode 100644 index 00000000..28f3d90e --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343e5cf08b0bae1fffcc0ae4c444ddfe014ef6e89a45851a40376ed16f428dd5 +size 6752 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-1.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-1.png new file mode 100644 index 00000000..6ddbddc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b35408acf4108560730f7a3e4662d144623862ecf42f2e18e489c31b17fc131 +size 7088 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-2.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-2.png new file mode 100644 index 00000000..e1bf1fba --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e47846c2d737e2c8acb3ccc65a29128f4386ebb49978fca0337e2db6f1bac2b +size 7421 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-3.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-3.png new file mode 100644 index 00000000..bc7aebbd --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b159f470df4240e668ac470a158f3838040bade4b035a6fa7c7399f920e0a38 +size 7457 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-4.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-4.png new file mode 100644 index 00000000..828ad124 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8c8c6ccd03700a3884e41141a985588ee816a2aad30221f6eef9e102d5cb92 +size 7156 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-5.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-5.png new file mode 100644 index 00000000..a384854c --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6961aad8381954841253547fcf47412a0b56c498126813e948dfbe91175e457 +size 6659 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-6.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-6.png new file mode 100644 index 00000000..ce260dc2 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7336f154cea8dc0ba6afb21d24edfa5b27a9261542f7441f7c3baf37c12413 +size 5988 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-7.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-7.png new file mode 100644 index 00000000..8bc2122d --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb48311c728c179f4db624518bc5f9d691d30a5f14677d3e91d00527c49d4d3 +size 5026 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-8.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-8.png new file mode 100644 index 00000000..65c03efa --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e535c7058681bdaf4e0565b5f3434262e4bb36b3d4ba2e0e0d6ab090a30c8d8 +size 3088 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/fukari alt/Extras/300s/fukari 300s/hit300k@2x.png b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k@2x.png new file mode 100644 index 00000000..ebaa9596 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/fukari 300s/hit300k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3460d0e93d590d5c1548c68620fd66dae604d9e9b19679aa8d1a6ededeaef090 +size 1330 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300-0.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300-0.png new file mode 100644 index 00000000..72dad3d8 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4093953b96872fc1ea231911b2e2afeb130c281a477c7bd11cc5b480bdc122e +size 4116 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300-1.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300-1.png new file mode 100644 index 00000000..72dad3d8 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4093953b96872fc1ea231911b2e2afeb130c281a477c7bd11cc5b480bdc122e +size 4116 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300-2.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300-2.png new file mode 100644 index 00000000..72dad3d8 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4093953b96872fc1ea231911b2e2afeb130c281a477c7bd11cc5b480bdc122e +size 4116 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300-3.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300-3.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300@2x.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300@2x.png new file mode 100644 index 00000000..c942ce70 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc4c46b869eb477dd862787dc4efff6e38419ed38976c823ce24fbb1db775760 +size 1309 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300g-0.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300g-0.png new file mode 100644 index 00000000..72dad3d8 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4093953b96872fc1ea231911b2e2afeb130c281a477c7bd11cc5b480bdc122e +size 4116 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300g-1.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300g-1.png new file mode 100644 index 00000000..72dad3d8 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4093953b96872fc1ea231911b2e2afeb130c281a477c7bd11cc5b480bdc122e +size 4116 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300g-2.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300g-2.png new file mode 100644 index 00000000..72dad3d8 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300g-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4093953b96872fc1ea231911b2e2afeb130c281a477c7bd11cc5b480bdc122e +size 4116 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300g-3.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300g-3.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300g-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300g.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300g.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300g@2x.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300g@2x.png new file mode 100644 index 00000000..64cb42a0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c434de2bb23e7bcd15555dd4d5eef7477cc05d705e4c884736a7c48117522b +size 1344 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300k-0.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300k-0.png new file mode 100644 index 00000000..72dad3d8 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4093953b96872fc1ea231911b2e2afeb130c281a477c7bd11cc5b480bdc122e +size 4116 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300k-1.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300k-1.png new file mode 100644 index 00000000..72dad3d8 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4093953b96872fc1ea231911b2e2afeb130c281a477c7bd11cc5b480bdc122e +size 4116 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300k-2.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300k-2.png new file mode 100644 index 00000000..72dad3d8 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4093953b96872fc1ea231911b2e2afeb130c281a477c7bd11cc5b480bdc122e +size 4116 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300k-3.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300k-3.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300k.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300k.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/gn 300s/hit300k@2x.png b/Skins/fukari alt/Extras/300s/gn 300s/hit300k@2x.png new file mode 100644 index 00000000..ebaa9596 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/gn 300s/hit300k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3460d0e93d590d5c1548c68620fd66dae604d9e9b19679aa8d1a6ededeaef090 +size 1330 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100-0.png b/Skins/fukari alt/Extras/300s/instafade/hit100-0.png new file mode 100644 index 00000000..489a4fc0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400c1418d514983f95bafdd0ab53ddafae427e39bbe4ef258c86fce71892b717 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100-1.png b/Skins/fukari alt/Extras/300s/instafade/hit100-1.png new file mode 100644 index 00000000..489a4fc0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400c1418d514983f95bafdd0ab53ddafae427e39bbe4ef258c86fce71892b717 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100-2.png b/Skins/fukari alt/Extras/300s/instafade/hit100-2.png new file mode 100644 index 00000000..489a4fc0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400c1418d514983f95bafdd0ab53ddafae427e39bbe4ef258c86fce71892b717 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100-3.png b/Skins/fukari alt/Extras/300s/instafade/hit100-3.png new file mode 100644 index 00000000..489a4fc0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400c1418d514983f95bafdd0ab53ddafae427e39bbe4ef258c86fce71892b717 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100-4.png b/Skins/fukari alt/Extras/300s/instafade/hit100-4.png new file mode 100644 index 00000000..eea47d6f --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c226980527bf2786a556724c99d5b8417975054260b375e7afe630f94b9c5d +size 1857 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100-5.png b/Skins/fukari alt/Extras/300s/instafade/hit100-5.png new file mode 100644 index 00000000..79a68df7 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960774dcd88119d5450258dec28b12ea5cef4f6a588e2a93b3f0fc71c2619ce9 +size 1861 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100-6.png b/Skins/fukari alt/Extras/300s/instafade/hit100-6.png new file mode 100644 index 00000000..9b8fe8fe --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9166066a8abfa44b9855bbf68a440e6e1b1541c8d515420ca8741f7cfda38690 +size 1851 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100-7.png b/Skins/fukari alt/Extras/300s/instafade/hit100-7.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100.png b/Skins/fukari alt/Extras/300s/instafade/hit100.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100k-0.png b/Skins/fukari alt/Extras/300s/instafade/hit100k-0.png new file mode 100644 index 00000000..489a4fc0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400c1418d514983f95bafdd0ab53ddafae427e39bbe4ef258c86fce71892b717 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100k-1.png b/Skins/fukari alt/Extras/300s/instafade/hit100k-1.png new file mode 100644 index 00000000..489a4fc0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400c1418d514983f95bafdd0ab53ddafae427e39bbe4ef258c86fce71892b717 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100k-2.png b/Skins/fukari alt/Extras/300s/instafade/hit100k-2.png new file mode 100644 index 00000000..489a4fc0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400c1418d514983f95bafdd0ab53ddafae427e39bbe4ef258c86fce71892b717 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100k-3.png b/Skins/fukari alt/Extras/300s/instafade/hit100k-3.png new file mode 100644 index 00000000..489a4fc0 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400c1418d514983f95bafdd0ab53ddafae427e39bbe4ef258c86fce71892b717 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100k-4.png b/Skins/fukari alt/Extras/300s/instafade/hit100k-4.png new file mode 100644 index 00000000..eea47d6f --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c226980527bf2786a556724c99d5b8417975054260b375e7afe630f94b9c5d +size 1857 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100k-5.png b/Skins/fukari alt/Extras/300s/instafade/hit100k-5.png new file mode 100644 index 00000000..79a68df7 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960774dcd88119d5450258dec28b12ea5cef4f6a588e2a93b3f0fc71c2619ce9 +size 1861 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100k-6.png b/Skins/fukari alt/Extras/300s/instafade/hit100k-6.png new file mode 100644 index 00000000..9b8fe8fe --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9166066a8abfa44b9855bbf68a440e6e1b1541c8d515420ca8741f7cfda38690 +size 1851 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100k-7.png b/Skins/fukari alt/Extras/300s/instafade/hit100k-7.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit100k.png b/Skins/fukari alt/Extras/300s/instafade/hit100k.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50-0.png b/Skins/fukari alt/Extras/300s/instafade/hit50-0.png new file mode 100644 index 00000000..df5a9cc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d693a517b30a9c5c2edeeab11999061f86186d5ab4d185b78e97ae11a5a4dd5f +size 1859 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50-1.png b/Skins/fukari alt/Extras/300s/instafade/hit50-1.png new file mode 100644 index 00000000..df5a9cc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d693a517b30a9c5c2edeeab11999061f86186d5ab4d185b78e97ae11a5a4dd5f +size 1859 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50-2.png b/Skins/fukari alt/Extras/300s/instafade/hit50-2.png new file mode 100644 index 00000000..df5a9cc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d693a517b30a9c5c2edeeab11999061f86186d5ab4d185b78e97ae11a5a4dd5f +size 1859 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50-3.png b/Skins/fukari alt/Extras/300s/instafade/hit50-3.png new file mode 100644 index 00000000..df5a9cc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d693a517b30a9c5c2edeeab11999061f86186d5ab4d185b78e97ae11a5a4dd5f +size 1859 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50-4.png b/Skins/fukari alt/Extras/300s/instafade/hit50-4.png new file mode 100644 index 00000000..bb9c35af --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d826c0b157d53f92ff4de87d2ce29dcd6e0a60c99d225b756944769baff09671 +size 1863 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50-5.png b/Skins/fukari alt/Extras/300s/instafade/hit50-5.png new file mode 100644 index 00000000..9f50255e --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28bf81cb8ab9dd748233830628c6f454eb7be2e32ac1e0898f3b6166b4f0810b +size 1878 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50-6.png b/Skins/fukari alt/Extras/300s/instafade/hit50-6.png new file mode 100644 index 00000000..0866931c --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96d7adee6bd578d7e5886d72033e1b288ced36fd4b36498cd9838e1beb52c69 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50-7.png b/Skins/fukari alt/Extras/300s/instafade/hit50-7.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50.png b/Skins/fukari alt/Extras/300s/instafade/hit50.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50k-0.png b/Skins/fukari alt/Extras/300s/instafade/hit50k-0.png new file mode 100644 index 00000000..df5a9cc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d693a517b30a9c5c2edeeab11999061f86186d5ab4d185b78e97ae11a5a4dd5f +size 1859 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50k-1.png b/Skins/fukari alt/Extras/300s/instafade/hit50k-1.png new file mode 100644 index 00000000..df5a9cc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d693a517b30a9c5c2edeeab11999061f86186d5ab4d185b78e97ae11a5a4dd5f +size 1859 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50k-2.png b/Skins/fukari alt/Extras/300s/instafade/hit50k-2.png new file mode 100644 index 00000000..df5a9cc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d693a517b30a9c5c2edeeab11999061f86186d5ab4d185b78e97ae11a5a4dd5f +size 1859 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50k-3.png b/Skins/fukari alt/Extras/300s/instafade/hit50k-3.png new file mode 100644 index 00000000..df5a9cc4 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d693a517b30a9c5c2edeeab11999061f86186d5ab4d185b78e97ae11a5a4dd5f +size 1859 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50k-4.png b/Skins/fukari alt/Extras/300s/instafade/hit50k-4.png new file mode 100644 index 00000000..bb9c35af --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d826c0b157d53f92ff4de87d2ce29dcd6e0a60c99d225b756944769baff09671 +size 1863 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50k-5.png b/Skins/fukari alt/Extras/300s/instafade/hit50k-5.png new file mode 100644 index 00000000..9f50255e --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28bf81cb8ab9dd748233830628c6f454eb7be2e32ac1e0898f3b6166b4f0810b +size 1878 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50k-6.png b/Skins/fukari alt/Extras/300s/instafade/hit50k-6.png new file mode 100644 index 00000000..0866931c --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96d7adee6bd578d7e5886d72033e1b288ced36fd4b36498cd9838e1beb52c69 +size 1862 diff --git a/Skins/fukari alt/Extras/300s/instafade/hit50k.png b/Skins/fukari alt/Extras/300s/instafade/hit50k.png new file mode 100644 index 00000000..80043b34 --- /dev/null +++ b/Skins/fukari alt/Extras/300s/instafade/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdb0afb682bd9ad89e45f514d3933e773862413133f08e9d6f1a0c15b7f8cbf +size 1882 diff --git a/Skins/fukari alt/Extras/HDtoSD.exe b/Skins/fukari alt/Extras/HDtoSD.exe new file mode 100644 index 00000000..83674c9d --- /dev/null +++ b/Skins/fukari alt/Extras/HDtoSD.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac9ddc32adddb698bd1e5a2f5c4a994ae918ff6673b6783280240aa9d414b133 +size 10240 diff --git a/Skins/fukari alt/Extras/approachcircle no.png b/Skins/fukari alt/Extras/approachcircle no.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/approachcircle no.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/approachcircle colored.png b/Skins/fukari alt/Extras/approachcircle colored.png new file mode 100644 index 00000000..0b2baae8 --- /dev/null +++ b/Skins/fukari alt/Extras/approachcircle colored.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac9052a330f8660b19c602bf626dbfaadab3004825ecadf2b74cdaf2e0b0761 +size 4469 diff --git a/Skins/fukari alt/Extras/approachcircle123.png b/Skins/fukari alt/Extras/approachcircle123.png new file mode 100644 index 00000000..c69197c4 --- /dev/null +++ b/Skins/fukari alt/Extras/approachcircle123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35889ff6c795e468d743bb5771ff4ea31de6694fcbdfac33e7cd0338dd012dfc +size 11301 diff --git a/Skins/fukari alt/Extras/approachcircle@2x glow.png b/Skins/fukari alt/Extras/approachcircle@2x glow.png new file mode 100644 index 00000000..1af7c878 --- /dev/null +++ b/Skins/fukari alt/Extras/approachcircle@2x glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865d4ab9a37758fd2df9b1cebdf6d5cf4cac4339186d165bf2df1e5bc210ad0d +size 14869 diff --git a/Skins/fukari alt/Extras/approachcircle@2xx faded.png b/Skins/fukari alt/Extras/approachcircle@2xx faded.png new file mode 100644 index 00000000..deccab32 --- /dev/null +++ b/Skins/fukari alt/Extras/approachcircle@2xx faded.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e7c1b66d80d6845291a8fb74aeeab265f163a8d7fd1259dee11e5ad00cd884 +size 4480 diff --git a/Skins/fukari alt/Extras/approachcircle├⌐P.png b/Skins/fukari alt/Extras/approachcircle├⌐P.png new file mode 100644 index 00000000..4e01eed1 --- /dev/null +++ b/Skins/fukari alt/Extras/approachcircle├⌐P.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bcf2418526ce921cc372130e0398b04481ec9b22630438857a6a3a951525fde +size 1103 diff --git a/Skins/fukari alt/Extras/cursors/aery/cursor.png b/Skins/fukari alt/Extras/cursors/aery/cursor.png new file mode 100644 index 00000000..3ceff967 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/aery/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec190c6d88b510566bf0e66302abbc4d556ed245e1fabbd02dc8710d8149440 +size 13160 diff --git a/Skins/fukari alt/Extras/cursors/aery/cursormiddle.png b/Skins/fukari alt/Extras/cursors/aery/cursormiddle.png new file mode 100644 index 00000000..36b72520 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/aery/cursormiddle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344592392f6c063698981ad387911c360fcffe1870a0dc2db24a60f52697bb01 +size 18564 diff --git a/Skins/fukari alt/Extras/cursors/aery/cursortrail.png b/Skins/fukari alt/Extras/cursors/aery/cursortrail.png new file mode 100644 index 00000000..a8c6b913 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/aery/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38cd2289ea98d6e1921cee57cb919ed2ce9c5e1e95c474d03901d233814d5ba3 +size 4896 diff --git a/Skins/fukari alt/Extras/cursors/fukari new/cursor.png b/Skins/fukari alt/Extras/cursors/fukari new/cursor.png new file mode 100644 index 00000000..9b1e438b --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/fukari new/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02804ec951660a23c6f7de4ab6e46fe0f94944409b9d980d7c553bd48590f6dc +size 3141 diff --git a/Skins/fukari alt/Extras/cursors/fukari new/cursormiddle.png b/Skins/fukari alt/Extras/cursors/fukari new/cursormiddle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/fukari new/cursormiddle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/Extras/cursors/fukari new/cursortrail.png b/Skins/fukari alt/Extras/cursors/fukari new/cursortrail.png new file mode 100644 index 00000000..f5fede09 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/fukari new/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6026753d294612b16227e3bbea3b40356622d6951d4db075bec59d809cb3708a +size 309 diff --git a/Skins/fukari alt/Extras/cursors/haga-fukari/cursor.png b/Skins/fukari alt/Extras/cursors/haga-fukari/cursor.png new file mode 100644 index 00000000..8b9523a4 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/haga-fukari/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd7740792d576ac6ac44123be3c8e55eefc605903c676035dbb2a8c5c30c841 +size 10798 diff --git a/Skins/fukari alt/Extras/cursors/haga-fukari/cursor@2x.png b/Skins/fukari alt/Extras/cursors/haga-fukari/cursor@2x.png new file mode 100644 index 00000000..c2885d21 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/haga-fukari/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77331b2c98963a3c29fb7823b2248fcb8fdff1f8f35084606035a961456ca1b2 +size 16304 diff --git a/Skins/fukari alt/Extras/cursors/haga-fukari/cursortrail.png b/Skins/fukari alt/Extras/cursors/haga-fukari/cursortrail.png new file mode 100644 index 00000000..d1e45241 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/haga-fukari/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d12eff9f2d4a9467449c267baa28b7d4766e39e30ed9ab9498b531acf0c7a6a +size 19191 diff --git a/Skins/fukari alt/Extras/cursors/kamui/cursor.png b/Skins/fukari alt/Extras/cursors/kamui/cursor.png new file mode 100644 index 00000000..ed94c85d --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/kamui/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafbd0b660c9f63f711c206aacac6610d5db98198a0011896936ef9bc74481ff +size 8089 diff --git a/Skins/fukari alt/Extras/cursors/kamui/cursortrail.png b/Skins/fukari alt/Extras/cursors/kamui/cursortrail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/kamui/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/Extras/cursors/lemon/cursor.png b/Skins/fukari alt/Extras/cursors/lemon/cursor.png new file mode 100644 index 00000000..960620d8 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/lemon/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f80f4de8124993e84e66d337640c705855c5f6e491c9f9dc0689b1d942e202 +size 7027 diff --git a/Skins/fukari alt/Extras/cursors/lemon/cursor@2x.png b/Skins/fukari alt/Extras/cursors/lemon/cursor@2x.png new file mode 100644 index 00000000..a409f1fd --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/lemon/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0675c6f3cabc4b742ffd3d813603ef22be83eb17d4dbff571a0627ef20f3b571 +size 15462 diff --git a/Skins/fukari alt/Extras/cursors/lemon/cursortrail.png b/Skins/fukari alt/Extras/cursors/lemon/cursortrail.png new file mode 100644 index 00000000..81a42dc1 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/lemon/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f2cc7b4fedd8701e754edc4e71098aaeb617add79f86acdb6c69248a932e53 +size 289 diff --git a/Skins/fukari alt/Extras/cursors/naruto/cursor.png b/Skins/fukari alt/Extras/cursors/naruto/cursor.png new file mode 100644 index 00000000..5c3c18e4 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/naruto/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1223e2dd86ed01e7ac74588d31189496deb9792440548f7957206de9ef3f7f +size 3868 diff --git a/Skins/fukari alt/Extras/cursors/naruto/cursor@2x.png b/Skins/fukari alt/Extras/cursors/naruto/cursor@2x.png new file mode 100644 index 00000000..998edce7 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/naruto/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c6e4044716392dc47bface23820cd73cd9ffe2cb40f79ddd4b7454bb74a5a9 +size 10112 diff --git a/Skins/fukari alt/Extras/cursors/naruto/cursortrail.png b/Skins/fukari alt/Extras/cursors/naruto/cursortrail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/naruto/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/Extras/cursors/num/cursor.png b/Skins/fukari alt/Extras/cursors/num/cursor.png new file mode 100644 index 00000000..b26d49e7 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/num/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d606df474f52f53f9a8ec24e06f54982975e27b75269bbf92bbd9e551c16c2b5 +size 22154 diff --git a/Skins/fukari alt/Extras/cursors/num/cursortrail.png b/Skins/fukari alt/Extras/cursors/num/cursortrail.png new file mode 100644 index 00000000..e0fa1fdd --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/num/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf61c8feff7fe73f0d6dc586b83ace67c859cb2d74e9545dd9919350e5891e11 +size 18616 diff --git a/Skins/fukari alt/Extras/cursors/skin.ini b/Skins/fukari alt/Extras/cursors/skin.ini new file mode 100644 index 00000000..66275268 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/skin.ini @@ -0,0 +1,84 @@ +[General] +Name:fukari +Author:Fukari-tan +Version:latest + +SliderStyle:2 +AllowSliderBallTint:0 +CursorRotate: 0 +CursorTrailRotate: 1 +CursorExpand: 0 +CursorCentre: 1 +HitCircleOverlayAboveNumber:1 +LayeredHitSounds:1 +SliderBallFlip:1 +SpinnerFadePlayfield:0 +SpinnerFrequencyModulate:1 +SpinnerNoBlink:0 + +[Colours] +Combo1 : 70,255,255 +Combo2 : 255,255,128 +Combo3 : 255,151,203 + +SliderBorder: 240, 250, 240 +SliderTrackOverride: 0,0,0 + + +MenuGlow: 0,0,0 +SongSelectActiveText: 255,255,255 +SongSelectInactiveText: 255,255,255 +SpinnerBackground:100,100,100 +StarBreakAdditive:255,182,193 + +[Fonts] +HitCirclePrefix:default +ScorePrefix:score +ComboPrefix:score +HitCircleOverlap:-2 +ComboOverlap:-2 + +[Mania] +Keys: 4 +//Mania skin config +KeysUnderNotes: 1 +HitPosition: 417 +ScorePosition: 195 +ComboPosition: 150 +ColumnStart: 294 +ColumnLineWidth: 0,0,0,0,0 +ColumnWidth: 66,66,66,66 +ColumnSpacing: 0,0,0,0 +JudgementLine: 0 +UpsideDown: 0 +ColourHold: 255,255,255,255 +ColourBarline: 255,85,20,85 +LightingN: none +LightingL: none +//keys +KeyImage0: Orbs\key +KeyImage1: Orbs\key +KeyImage2: Orbs\key +KeyImage3: Orbs\key +KeyImage0D: Orbs\keyD +KeyImage1D: Orbs\keyD +KeyImage2D: Orbs\keyD +KeyImage3D: Orbs\keyD +//images +NoteImage0: Orbs\left2 +NoteImage1: Orbs\left2 +NoteImage2: Orbs\left2 +NoteImage3: Orbs\left2 +NoteImage0H: Orbs\left2 +NoteImage1H: Orbs\left2 +NoteImage2H: Orbs\left2 +NoteImage3H: Orbs\left2 + +NoteImage0L: Orbs\noteL +NoteImage1L: Orbs\noteL +NoteImage2L: Orbs\noteL +NoteImage3L: Orbs\noteL +NoteImage0T: Orbs\noteT +NoteImage1T: Orbs\noteT +NoteImage2T: Orbs\noteT +NoteImage3T: Orbs\noteT \ No newline at end of file diff --git a/Skins/fukari alt/Extras/cursors/white/cursor.png b/Skins/fukari alt/Extras/cursors/white/cursor.png new file mode 100644 index 00000000..9260bf14 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/white/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511fea2c34e747da43f5008d2c775afdeba7b7244de90b529edd3da97de6ab57 +size 12735 diff --git a/Skins/fukari alt/Extras/cursors/white/cursortrail.png b/Skins/fukari alt/Extras/cursors/white/cursortrail.png new file mode 100644 index 00000000..338c93f1 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/white/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ef13495c8af2fa195bb2c3d358e4352929dd77d1d7251408975f33d342dd7e +size 4215 diff --git a/Skins/fukari alt/Extras/cursors/yellow/cursor.png b/Skins/fukari alt/Extras/cursors/yellow/cursor.png new file mode 100644 index 00000000..f37bb3d5 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/yellow/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eedab27e3029eda49159c9d610cc720070e40cd902cfb8c71e17d00482c51f87 +size 1581 diff --git a/Skins/fukari alt/Extras/cursors/yellow/cursortrail.png b/Skins/fukari alt/Extras/cursors/yellow/cursortrail.png new file mode 100644 index 00000000..276144f0 --- /dev/null +++ b/Skins/fukari alt/Extras/cursors/yellow/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87423a15c91901d6f348b117f302d0d43c168ab7950d84f920e077c1fa3bd528 +size 1198 diff --git a/Skins/fukari alt/Extras/default-0.png b/Skins/fukari alt/Extras/default-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/default-1.png b/Skins/fukari alt/Extras/default-1.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/default-2.png b/Skins/fukari alt/Extras/default-2.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/default-3.png b/Skins/fukari alt/Extras/default-3.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/default-4.png b/Skins/fukari alt/Extras/default-4.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/default-5.png b/Skins/fukari alt/Extras/default-5.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/default-6.png b/Skins/fukari alt/Extras/default-6.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/default-7.png b/Skins/fukari alt/Extras/default-7.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/default-8.png b/Skins/fukari alt/Extras/default-8.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/default-9.png b/Skins/fukari alt/Extras/default-9.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/Extras/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/Extras/main credits.txt b/Skins/fukari alt/Extras/main credits.txt new file mode 100644 index 00000000..763ae631 --- /dev/null +++ b/Skins/fukari alt/Extras/main credits.txt @@ -0,0 +1,6 @@ +hitcircle from pinkout skin +sliderb from chiya :pleading_face: +mania skin by crewk +ranking panel and score numbers from my haga remake, edited with nanami + +the rest are by me, most of it atleast \ No newline at end of file diff --git a/Skins/fukari alt/Extras/normal hs/drum--hitwhistle.wav b/Skins/fukari alt/Extras/normal hs/drum--hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/drum--hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/normal hs/drum-hitClap.wav b/Skins/fukari alt/Extras/normal hs/drum-hitClap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/drum-hitClap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/fukari alt/Extras/normal hs/drum-hitFinish.wav b/Skins/fukari alt/Extras/normal hs/drum-hitFinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/drum-hitFinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/fukari alt/Extras/normal hs/drum-hitNormal.wav b/Skins/fukari alt/Extras/normal hs/drum-hitNormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/drum-hitNormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/fukari alt/Extras/normal hs/drum-hitWhistle.wav b/Skins/fukari alt/Extras/normal hs/drum-hitWhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/drum-hitWhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/fukari alt/Extras/normal hs/drum-sliderslide.wav b/Skins/fukari alt/Extras/normal hs/drum-sliderslide.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/fukari alt/Extras/normal hs/drum-slidertick.wav b/Skins/fukari alt/Extras/normal hs/drum-slidertick.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/fukari alt/Extras/normal hs/drum-sliderwhistle.wav b/Skins/fukari alt/Extras/normal hs/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/normal hs/normal-hitClap.wav b/Skins/fukari alt/Extras/normal hs/normal-hitClap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/normal-hitClap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/fukari alt/Extras/normal hs/normal-hitFinish.wav b/Skins/fukari alt/Extras/normal hs/normal-hitFinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/normal-hitFinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/fukari alt/Extras/normal hs/normal-hitNormal.wav b/Skins/fukari alt/Extras/normal hs/normal-hitNormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/normal-hitNormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/fukari alt/Extras/normal hs/normal-hitWhistle.wav b/Skins/fukari alt/Extras/normal hs/normal-hitWhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/normal-hitWhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/fukari alt/Extras/normal hs/normal-sliderSlide.wav b/Skins/fukari alt/Extras/normal hs/normal-sliderSlide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/normal-sliderSlide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/normal hs/normal-sliderWhistle.wav b/Skins/fukari alt/Extras/normal hs/normal-sliderWhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/normal-sliderWhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/normal hs/normal-slidertick.wav b/Skins/fukari alt/Extras/normal hs/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/fukari alt/Extras/normal hs/soft-hitClap.wav b/Skins/fukari alt/Extras/normal hs/soft-hitClap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/soft-hitClap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/fukari alt/Extras/normal hs/soft-hitFinish.wav b/Skins/fukari alt/Extras/normal hs/soft-hitFinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/soft-hitFinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/fukari alt/Extras/normal hs/soft-hitNormal.wav b/Skins/fukari alt/Extras/normal hs/soft-hitNormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/soft-hitNormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/fukari alt/Extras/normal hs/soft-hitWhistle.wav b/Skins/fukari alt/Extras/normal hs/soft-hitWhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/soft-hitWhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/fukari alt/Extras/normal hs/soft-hitsoft.wav b/Skins/fukari alt/Extras/normal hs/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/fukari alt/Extras/normal hs/soft-sliderSlide.wav b/Skins/fukari alt/Extras/normal hs/soft-sliderSlide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/soft-sliderSlide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/normal hs/soft-sliderWhistle.wav b/Skins/fukari alt/Extras/normal hs/soft-sliderWhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/soft-sliderWhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/normal hs/soft-slidertick.wav b/Skins/fukari alt/Extras/normal hs/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/normal hs/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/drum--hitwhistle.wav b/Skins/fukari alt/Extras/siae hs/drum--hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum--hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/drum-hitclap.wav b/Skins/fukari alt/Extras/siae hs/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/fukari alt/Extras/siae hs/drum-hitclap2.wav b/Skins/fukari alt/Extras/siae hs/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/fukari alt/Extras/siae hs/drum-hitfinish.wav b/Skins/fukari alt/Extras/siae hs/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/fukari alt/Extras/siae hs/drum-hitnormal.wav b/Skins/fukari alt/Extras/siae hs/drum-hitnormal.wav new file mode 100644 index 00000000..8539bb99 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f162995ef70c9944c11b6f01c36a56addcbea5cdfbacb7a67b9732d1a5eb2f +size 396476 diff --git a/Skins/fukari alt/Extras/siae hs/drum-hitnormal2.wav b/Skins/fukari alt/Extras/siae hs/drum-hitnormal2.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/fukari alt/Extras/siae hs/drum-hitnormalh.wav b/Skins/fukari alt/Extras/siae hs/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/fukari alt/Extras/siae hs/drum-hitwhistle.wav b/Skins/fukari alt/Extras/siae hs/drum-hitwhistle.wav new file mode 100644 index 00000000..9b6d9d3e --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4b86bb3a6f0dc9d708fbb34321e7fe0de7aea767d0e5305ecd97f580ea77a8a +size 70316 diff --git a/Skins/fukari alt/Extras/siae hs/drum-hitwhistle2.wav b/Skins/fukari alt/Extras/siae hs/drum-hitwhistle2.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/fukari alt/Extras/siae hs/drum-sliderslide.wav b/Skins/fukari alt/Extras/siae hs/drum-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/drum-sliderslide2.wav b/Skins/fukari alt/Extras/siae hs/drum-sliderslide2.wav new file mode 100644 index 00000000..1e3ce6de --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/drum-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed0124d2cb24c524ac61555e4ecffbdbee12641f54d8497e93495b411c476b2 +size 223744 diff --git a/Skins/fukari alt/Extras/siae hs/drum-slidertick.wav b/Skins/fukari alt/Extras/siae hs/drum-slidertick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/fukari alt/Extras/siae hs/drum-sliderwhistle.wav b/Skins/fukari alt/Extras/siae hs/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/fukari alt/Extras/siae hs/nightcore-clap.mp3 b/Skins/fukari alt/Extras/siae hs/nightcore-clap.mp3 new file mode 100644 index 00000000..3cfb6a43 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/nightcore-clap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50807579c1d8bf8d291e50dca896694d6e054d8cf225930b5f598ed3f7b79fd +size 2153 diff --git a/Skins/fukari alt/Extras/siae hs/nightcore-finish.mp3 b/Skins/fukari alt/Extras/siae hs/nightcore-finish.mp3 new file mode 100644 index 00000000..3cfb6a43 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/nightcore-finish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50807579c1d8bf8d291e50dca896694d6e054d8cf225930b5f598ed3f7b79fd +size 2153 diff --git a/Skins/fukari alt/Extras/siae hs/nightcore-hat.mp3 b/Skins/fukari alt/Extras/siae hs/nightcore-hat.mp3 new file mode 100644 index 00000000..3cfb6a43 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/nightcore-hat.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50807579c1d8bf8d291e50dca896694d6e054d8cf225930b5f598ed3f7b79fd +size 2153 diff --git a/Skins/fukari alt/Extras/siae hs/nightcore-kick.mp3 b/Skins/fukari alt/Extras/siae hs/nightcore-kick.mp3 new file mode 100644 index 00000000..3cfb6a43 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/nightcore-kick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50807579c1d8bf8d291e50dca896694d6e054d8cf225930b5f598ed3f7b79fd +size 2153 diff --git a/Skins/fukari alt/Extras/siae hs/nomal-sliderslide.wav b/Skins/fukari alt/Extras/siae hs/nomal-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/nomal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/fukari alt/Extras/siae hs/none.png b/Skins/fukari alt/Extras/siae hs/none.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/none.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitclap.wav b/Skins/fukari alt/Extras/siae hs/normal-hitclap.wav new file mode 100644 index 00000000..77bee509 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:979b67df9a77eef21eb0bc352d60838168041b387e3e0b9c32caf194fdf72260 +size 45580 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitclap2.wav b/Skins/fukari alt/Extras/siae hs/normal-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitclap3.wav b/Skins/fukari alt/Extras/siae hs/normal-hitclap3.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitclap3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitfinish.wav b/Skins/fukari alt/Extras/siae hs/normal-hitfinish.wav new file mode 100644 index 00000000..de268703 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab111811f6f6c1aa0f9f8391feac6a0118d09327abe9439c308332a4270cbaf +size 107634 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitfinish2.wav b/Skins/fukari alt/Extras/siae hs/normal-hitfinish2.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitnormal.wav b/Skins/fukari alt/Extras/siae hs/normal-hitnormal.wav new file mode 100644 index 00000000..8539bb99 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f162995ef70c9944c11b6f01c36a56addcbea5cdfbacb7a67b9732d1a5eb2f +size 396476 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitnormal1.wav b/Skins/fukari alt/Extras/siae hs/normal-hitnormal1.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitnormal2.wav b/Skins/fukari alt/Extras/siae hs/normal-hitnormal2.wav new file mode 100644 index 00000000..8d1bb6df --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f5522ffa67692394509eaa54e47261b703a17ce75b9cec9b122433ea9fef6b +size 54196 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitnormalh.wav b/Skins/fukari alt/Extras/siae hs/normal-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitwhistle.wav b/Skins/fukari alt/Extras/siae hs/normal-hitwhistle.wav new file mode 100644 index 00000000..1eeb8490 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe6820ec5a96d32ba79a1f805a01323f767cda6ef624f2f0c9dd7680653f07b +size 68500 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitwhistle1.wav b/Skins/fukari alt/Extras/siae hs/normal-hitwhistle1.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitwhistle1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitwhistle2.wav b/Skins/fukari alt/Extras/siae hs/normal-hitwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/normal-hitwistle.wav b/Skins/fukari alt/Extras/siae hs/normal-hitwistle.wav new file mode 100644 index 00000000..7ca41433 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-hitwistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f770d06b30853c8ed6b25464af6cf7b7f3f68c332dc8bcfa4ea23076f5445965 +size 13185 diff --git a/Skins/fukari alt/Extras/siae hs/normal-sliderslide.wav b/Skins/fukari alt/Extras/siae hs/normal-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/fukari alt/Extras/siae hs/normal-sliderslide2.wav b/Skins/fukari alt/Extras/siae hs/normal-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/normal-slidertick.wav b/Skins/fukari alt/Extras/siae hs/normal-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/fukari alt/Extras/siae hs/normal-slidertick2.wav b/Skins/fukari alt/Extras/siae hs/normal-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/normal-sliderwhistle.wav b/Skins/fukari alt/Extras/siae hs/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/fukari alt/Extras/siae hs/normal-sliderwhistle2.wav b/Skins/fukari alt/Extras/siae hs/normal-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/normal-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitclap.wav b/Skins/fukari alt/Extras/siae hs/soft-hitclap.wav new file mode 100644 index 00000000..77bee509 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:979b67df9a77eef21eb0bc352d60838168041b387e3e0b9c32caf194fdf72260 +size 45580 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitclap2.wav b/Skins/fukari alt/Extras/siae hs/soft-hitclap2.wav new file mode 100644 index 00000000..c4349bac --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a819053f9963d9e877ab6aa811e21d91960d5ba2d8b9cf097e9d674636c045f3 +size 129736 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitfinish.wav b/Skins/fukari alt/Extras/siae hs/soft-hitfinish.wav new file mode 100644 index 00000000..de268703 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab111811f6f6c1aa0f9f8391feac6a0118d09327abe9439c308332a4270cbaf +size 107634 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitfinish2.wav b/Skins/fukari alt/Extras/siae hs/soft-hitfinish2.wav new file mode 100644 index 00000000..12b65e74 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:615c84d90ceb7bd5fdbf826803a33a3f717f8b550bec4718b38d00d07b6b31c3 +size 303364 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitfinish222.wav b/Skins/fukari alt/Extras/siae hs/soft-hitfinish222.wav new file mode 100644 index 00000000..958a9d0b --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitfinish222.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48cfe4e7181a51e1e2db1b0b0f939a92a915200738aca02eb1d6ee380dc239ee +size 105884 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitnormal.wav b/Skins/fukari alt/Extras/siae hs/soft-hitnormal.wav new file mode 100644 index 00000000..8539bb99 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f162995ef70c9944c11b6f01c36a56addcbea5cdfbacb7a67b9732d1a5eb2f +size 396476 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitnormal1.wav b/Skins/fukari alt/Extras/siae hs/soft-hitnormal1.wav new file mode 100644 index 00000000..138c614d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ddd85be838217c26525d61be66bb41df700a5a14dcab000a59c4b47b262efa +size 145508 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitnormal2.wav b/Skins/fukari alt/Extras/siae hs/soft-hitnormal2.wav new file mode 100644 index 00000000..b2ead5b1 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0bf4803858de71662a0d497d789a4d24d5c3cee7d0976377abf47156578018 +size 20428 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitnormalh.wav b/Skins/fukari alt/Extras/siae hs/soft-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitnormalhh.wav b/Skins/fukari alt/Extras/siae hs/soft-hitnormalhh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitnormalhh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitsoft.wav b/Skins/fukari alt/Extras/siae hs/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitwhistle.wav b/Skins/fukari alt/Extras/siae hs/soft-hitwhistle.wav new file mode 100644 index 00000000..9b6d9d3e --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4b86bb3a6f0dc9d708fbb34321e7fe0de7aea767d0e5305ecd97f580ea77a8a +size 70316 diff --git a/Skins/fukari alt/Extras/siae hs/soft-hitwhistle2.wav b/Skins/fukari alt/Extras/siae hs/soft-hitwhistle2.wav new file mode 100644 index 00000000..86912e0b --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f792422a6f778a8c21667bb6cee8f4c3f996fb4b8bbc2c1340ae7000bcefba +size 354434 diff --git a/Skins/fukari alt/Extras/siae hs/soft-sliderslide.wav b/Skins/fukari alt/Extras/siae hs/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/soft-sliderslide2.wav b/Skins/fukari alt/Extras/siae hs/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/soft-slidertick.wav b/Skins/fukari alt/Extras/siae hs/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/fukari alt/Extras/siae hs/soft-slidertick2.wav b/Skins/fukari alt/Extras/siae hs/soft-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/soft-sliderwhistle.wav b/Skins/fukari alt/Extras/siae hs/soft-sliderwhistle.wav new file mode 100644 index 00000000..ca81266f --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e9fc47debfdff56028ea82a0de24403187ddd7e3cccd61c538ca20ba81f427 +size 47580 diff --git a/Skins/fukari alt/Extras/siae hs/soft-sliderwhistle2.wav b/Skins/fukari alt/Extras/siae hs/soft-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/soft-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/Extras/siae hs/softl-hitclap2.wav b/Skins/fukari alt/Extras/siae hs/softl-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/softl-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/fukari alt/Extras/siae hs/softl-hitfinish.wav b/Skins/fukari alt/Extras/siae hs/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/fukari alt/Extras/siae hs/softl-hitwhistle.wav b/Skins/fukari alt/Extras/siae hs/softl-hitwhistle.wav new file mode 100644 index 00000000..b2ead5b1 --- /dev/null +++ b/Skins/fukari alt/Extras/siae hs/softl-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0bf4803858de71662a0d497d789a4d24d5c3cee7d0976377abf47156578018 +size 20428 diff --git a/Skins/fukari alt/approachcircle.png b/Skins/fukari alt/approachcircle.png new file mode 100644 index 00000000..c69197c4 --- /dev/null +++ b/Skins/fukari alt/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35889ff6c795e468d743bb5771ff4ea31de6694fcbdfac33e7cd0338dd012dfc +size 11301 diff --git a/Skins/fukari alt/combobreak.wav b/Skins/fukari alt/combobreak.wav new file mode 100644 index 00000000..943b0881 --- /dev/null +++ b/Skins/fukari alt/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ae4fe0d665752ac8b9fb5851378cc113880b3743992af7a8bfaacd24ffa08f +size 621324 diff --git a/Skins/fukari alt/combobreak1.mp3 b/Skins/fukari alt/combobreak1.mp3 new file mode 100644 index 00000000..74045d8a --- /dev/null +++ b/Skins/fukari alt/combobreak1.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec5dcfedab9baca357442d02df218709cdc20fb029341faa8ad0ad66b475f6d5 +size 34471 diff --git a/Skins/fukari alt/cursor.png b/Skins/fukari alt/cursor.png new file mode 100644 index 00000000..9b1e438b --- /dev/null +++ b/Skins/fukari alt/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02804ec951660a23c6f7de4ab6e46fe0f94944409b9d980d7c553bd48590f6dc +size 3141 diff --git a/Skins/fukari alt/cursormiddle.png b/Skins/fukari alt/cursormiddle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/cursormiddle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/cursortrail.png b/Skins/fukari alt/cursortrail.png new file mode 100644 index 00000000..f5fede09 --- /dev/null +++ b/Skins/fukari alt/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6026753d294612b16227e3bbea3b40356622d6951d4db075bec59d809cb3708a +size 309 diff --git a/Skins/fukari alt/default-0.png b/Skins/fukari alt/default-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/default-1.png b/Skins/fukari alt/default-1.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/default-2.png b/Skins/fukari alt/default-2.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/default-3.png b/Skins/fukari alt/default-3.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/default-4.png b/Skins/fukari alt/default-4.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/default-5.png b/Skins/fukari alt/default-5.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/default-6.png b/Skins/fukari alt/default-6.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/default-7.png b/Skins/fukari alt/default-7.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/default-8.png b/Skins/fukari alt/default-8.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/default-9.png b/Skins/fukari alt/default-9.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/drum--hitwhistle.wav b/Skins/fukari alt/drum--hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/drum--hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/drum-hitClap.wav b/Skins/fukari alt/drum-hitClap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/fukari alt/drum-hitClap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/fukari alt/drum-hitFinish.wav b/Skins/fukari alt/drum-hitFinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/fukari alt/drum-hitFinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/fukari alt/drum-hitNormal.wav b/Skins/fukari alt/drum-hitNormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/fukari alt/drum-hitNormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/fukari alt/drum-hitWhistle.wav b/Skins/fukari alt/drum-hitWhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/fukari alt/drum-hitWhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/fukari alt/drum-sliderslide.wav b/Skins/fukari alt/drum-sliderslide.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/fukari alt/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/fukari alt/drum-slidertick.wav b/Skins/fukari alt/drum-slidertick.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/fukari alt/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/fukari alt/drum-sliderwhistle.wav b/Skins/fukari alt/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/followpoint-0.png b/Skins/fukari alt/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/hit0-0.png b/Skins/fukari alt/hit0-0.png new file mode 100644 index 00000000..64f5277e --- /dev/null +++ b/Skins/fukari alt/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a5a209229ebcc5acd9fe31f218cdb9250560b8871ee3586bb3169fcd84273a +size 1283 diff --git a/Skins/fukari alt/hit0.png b/Skins/fukari alt/hit0.png new file mode 100644 index 00000000..b48aa1af --- /dev/null +++ b/Skins/fukari alt/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e27d56efdd49ea0bb53edbfc6879003194eb876dae28adbbcb50aae0bbece21 +size 3719 diff --git a/Skins/fukari alt/hit100-0.png b/Skins/fukari alt/hit100-0.png new file mode 100644 index 00000000..ff02499d --- /dev/null +++ b/Skins/fukari alt/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877671686025797d028cafc90906930d4166e479393536b710c6552410e3b830 +size 1675 diff --git a/Skins/fukari alt/hit100.png b/Skins/fukari alt/hit100.png new file mode 100644 index 00000000..6577939c --- /dev/null +++ b/Skins/fukari alt/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:810f2596b389cea0290a393cedf7885b0495a54bdd8150238ed6277f39a4af17 +size 4062 diff --git a/Skins/fukari alt/hit100k-0.png b/Skins/fukari alt/hit100k-0.png new file mode 100644 index 00000000..ff02499d --- /dev/null +++ b/Skins/fukari alt/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877671686025797d028cafc90906930d4166e479393536b710c6552410e3b830 +size 1675 diff --git a/Skins/fukari alt/hit100k.png b/Skins/fukari alt/hit100k.png new file mode 100644 index 00000000..c012cd6c --- /dev/null +++ b/Skins/fukari alt/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe21f1f3989442c962376706a8a0c99f92d7e4e8497c6a57ba0dbca54950ffcb +size 4062 diff --git a/Skins/fukari alt/hit300.png b/Skins/fukari alt/hit300.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/hit300g.png b/Skins/fukari alt/hit300g.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/hit300k.png b/Skins/fukari alt/hit300k.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/fukari alt/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/fukari alt/hit50-0.png b/Skins/fukari alt/hit50-0.png new file mode 100644 index 00000000..0065ec24 --- /dev/null +++ b/Skins/fukari alt/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab9e45e122f9afe5ee85919e3bb88542babf553100cc2e249b999cdedd766cb6 +size 1684 diff --git a/Skins/fukari alt/hit50.png b/Skins/fukari alt/hit50.png new file mode 100644 index 00000000..a7cacee9 --- /dev/null +++ b/Skins/fukari alt/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483896ef92c86e76714f7beee7a01c4113ea63ca216aeafbb53fa7458c30a01e +size 4473 diff --git a/Skins/fukari alt/hit50k-0.png b/Skins/fukari alt/hit50k-0.png new file mode 100644 index 00000000..0065ec24 --- /dev/null +++ b/Skins/fukari alt/hit50k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab9e45e122f9afe5ee85919e3bb88542babf553100cc2e249b999cdedd766cb6 +size 1684 diff --git a/Skins/fukari alt/hitcircle.png b/Skins/fukari alt/hitcircle.png new file mode 100644 index 00000000..2937038b --- /dev/null +++ b/Skins/fukari alt/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:830fa234ab26efacad79d4fe3a35e9a9a7ca9b3713a8577c90b96a32e3894d48 +size 11784 diff --git a/Skins/fukari alt/hitcircle@2x.png b/Skins/fukari alt/hitcircle@2x.png new file mode 100644 index 00000000..851b04f3 --- /dev/null +++ b/Skins/fukari alt/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd061b889ed4a21ea25ee7b96e1dfdb8be743821fc24cdfb30c3a45dda0cab2 +size 32726 diff --git a/Skins/fukari alt/hitcircleoverlay.png b/Skins/fukari alt/hitcircleoverlay.png new file mode 100644 index 00000000..afd8280b --- /dev/null +++ b/Skins/fukari alt/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94fdbde834d43f72a246acea15889290e14a99cd96315e059e203d6f4985c10c +size 172 diff --git a/Skins/fukari alt/lighting.png b/Skins/fukari alt/lighting.png new file mode 100644 index 00000000..575539b7 --- /dev/null +++ b/Skins/fukari alt/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87149ab7b5f6b17e746c45e7d15888c6d01447979887d4b95e41dd15b5b51d58 +size 6738 diff --git a/Skins/fukari alt/mania-hit0-0.png b/Skins/fukari alt/mania-hit0-0.png new file mode 100644 index 00000000..9ad3004e --- /dev/null +++ b/Skins/fukari alt/mania-hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce1a6ed550fab722937411532df5bdf2e2ec7a802c67d4a5443414ccb2a532c +size 6532 diff --git a/Skins/fukari alt/mania-hit0.png b/Skins/fukari alt/mania-hit0.png new file mode 100644 index 00000000..62444b2b --- /dev/null +++ b/Skins/fukari alt/mania-hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34a684f485748d0f4891bea0421cf0dd7f8596857126db37d4c0c42f8a3554d +size 23177 diff --git a/Skins/fukari alt/mania-hit100-0.png b/Skins/fukari alt/mania-hit100-0.png new file mode 100644 index 00000000..7865e515 --- /dev/null +++ b/Skins/fukari alt/mania-hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cc33749c6f72b61819a469bf1a6b73456e8964019876ec1f291c03de01bbedd +size 6529 diff --git a/Skins/fukari alt/mania-hit100.png b/Skins/fukari alt/mania-hit100.png new file mode 100644 index 00000000..b1d6747b --- /dev/null +++ b/Skins/fukari alt/mania-hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cea3a31a07310eb1bb2ce7bbe748b59cea729f20802811b5701cc5e463a166e +size 23177 diff --git a/Skins/fukari alt/mania-hit200-0.png b/Skins/fukari alt/mania-hit200-0.png new file mode 100644 index 00000000..f4d0d0e9 --- /dev/null +++ b/Skins/fukari alt/mania-hit200-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43445f18958cea538684f7b6a487de0d838e91ec97ec79e3b1c52d0bf05b39e +size 6498 diff --git a/Skins/fukari alt/mania-hit200.png b/Skins/fukari alt/mania-hit200.png new file mode 100644 index 00000000..a638ef05 --- /dev/null +++ b/Skins/fukari alt/mania-hit200.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e685e562ff4d826b685aaf8a2ccfd78b6d85456a343262ddef4677296a5417b1 +size 23177 diff --git a/Skins/fukari alt/mania-hit300-0.png b/Skins/fukari alt/mania-hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/mania-hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/mania-hit300.png b/Skins/fukari alt/mania-hit300.png new file mode 100644 index 00000000..62513db6 --- /dev/null +++ b/Skins/fukari alt/mania-hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28319881d9e36a88723dbddf2a7b723d66754262c4ed7783cb12e7640beead71 +size 23177 diff --git a/Skins/fukari alt/mania-hit300g-0.png b/Skins/fukari alt/mania-hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/fukari alt/mania-hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/fukari alt/mania-hit300g.png b/Skins/fukari alt/mania-hit300g.png new file mode 100644 index 00000000..c14c2d4a --- /dev/null +++ b/Skins/fukari alt/mania-hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa3f85287bfef1a3dd40da0a0bd58f45a93006c1e6d7a3feb43c96fd904e040 +size 23177 diff --git a/Skins/fukari alt/mania-hit50-0.png b/Skins/fukari alt/mania-hit50-0.png new file mode 100644 index 00000000..98f908b3 --- /dev/null +++ b/Skins/fukari alt/mania-hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1550181182db497696ad0467004ed98715e557ab9f761b049262cf89e3040083 +size 6531 diff --git a/Skins/fukari alt/mania-hit50.png b/Skins/fukari alt/mania-hit50.png new file mode 100644 index 00000000..d60e9b8e --- /dev/null +++ b/Skins/fukari alt/mania-hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f43e8bdab56f1a723375b6d56ce9d7baed808c3d00f6c49148fff344a0ab0a0 +size 23177 diff --git a/Skins/fukari alt/mania-stage-bottom.png b/Skins/fukari alt/mania-stage-bottom.png new file mode 100644 index 00000000..be57ddac --- /dev/null +++ b/Skins/fukari alt/mania-stage-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeaddd6710db28f9169673ef250d12370c424b0820b673285f4e58a96c39a5b4 +size 748 diff --git a/Skins/fukari alt/mania-stage-hint.png b/Skins/fukari alt/mania-stage-hint.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/fukari alt/mania-stage-hint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/fukari alt/mania-stage-light.png b/Skins/fukari alt/mania-stage-light.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/fukari alt/mania-stage-light.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/fukari alt/mania/LN.png b/Skins/fukari alt/mania/LN.png new file mode 100644 index 00000000..462b5bb5 --- /dev/null +++ b/Skins/fukari alt/mania/LN.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5500eb7f5c9eafdc5850a9ad50deb4dd628990162c308b4fd0fa66f5eb9f44a +size 43091 diff --git a/Skins/fukari alt/mania/lncrewk.png b/Skins/fukari alt/mania/lncrewk.png new file mode 100644 index 00000000..3c7bf1ae --- /dev/null +++ b/Skins/fukari alt/mania/lncrewk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb7ace27a7bf5f8fc755d307cdf6717fbc98152541eed249a807ddb2ee32c3d +size 62579 diff --git a/Skins/fukari alt/mania/lnlong.png b/Skins/fukari alt/mania/lnlong.png new file mode 100644 index 00000000..8202fb82 --- /dev/null +++ b/Skins/fukari alt/mania/lnlong.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c343e61b6a4c4f559e833c0371f975add941fa9c549269f996619c52b338b074 +size 45901 diff --git a/Skins/fukari alt/mania/note - ├óR├ós├╝[ (2).png b/Skins/fukari alt/mania/note - ├óR├ós├╝[ (2).png new file mode 100644 index 00000000..ce5e2964 --- /dev/null +++ b/Skins/fukari alt/mania/note - ├óR├ós├╝[ (2).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70512195fc925ecaa72db3ef099e28026db54e503aec7676b9776dd9dae1b9e +size 314311 diff --git a/Skins/fukari alt/mania/note.png b/Skins/fukari alt/mania/note.png new file mode 100644 index 00000000..55750f0a --- /dev/null +++ b/Skins/fukari alt/mania/note.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c714f11c6f3077be81f42afa383d89ab357aceb8562662a877a5a5e97438c4e +size 321751 diff --git a/Skins/fukari alt/mania/noteT.png b/Skins/fukari alt/mania/noteT.png new file mode 100644 index 00000000..fd85a79f --- /dev/null +++ b/Skins/fukari alt/mania/noteT.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3ee4f069adfb9f7b76f941dec3ab6621b17cd55255822e89c84e2b1efba417 +size 148 diff --git a/Skins/fukari alt/mania/notev.png b/Skins/fukari alt/mania/notev.png new file mode 100644 index 00000000..e3671818 --- /dev/null +++ b/Skins/fukari alt/mania/notev.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72c04d8e636e32a709903f742a111d30fdea7a593b80200a4e7a7d0d7f2e7a1 +size 334012 diff --git a/Skins/fukari alt/mania/receptor.png b/Skins/fukari alt/mania/receptor.png new file mode 100644 index 00000000..c195823e --- /dev/null +++ b/Skins/fukari alt/mania/receptor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd003ef8a4f453f1b2aecb259a1697e6ecd10f22f2967276efa79a8d5d49775 +size 3918 diff --git a/Skins/fukari alt/mania/receptor2.png b/Skins/fukari alt/mania/receptor2.png new file mode 100644 index 00000000..c195823e --- /dev/null +++ b/Skins/fukari alt/mania/receptor2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd003ef8a4f453f1b2aecb259a1697e6ecd10f22f2967276efa79a8d5d49775 +size 3918 diff --git a/Skins/fukari alt/mania/receptor3.png b/Skins/fukari alt/mania/receptor3.png new file mode 100644 index 00000000..8e0a4bbe --- /dev/null +++ b/Skins/fukari alt/mania/receptor3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb42d3f64b7fd45a5c85b68b31c819ffcc184603fb051738887e78da7e8f847f +size 3931 diff --git a/Skins/fukari alt/menu-back.png b/Skins/fukari alt/menu-back.png new file mode 100644 index 00000000..eefa656e --- /dev/null +++ b/Skins/fukari alt/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ff6db86a29fbbeedef771fed5f030e5e36580a70190ebdb73e3859d1ac918a +size 20547 diff --git a/Skins/fukari alt/menu-background.jpg b/Skins/fukari alt/menu-background.jpg new file mode 100644 index 00000000..419d499f --- /dev/null +++ b/Skins/fukari alt/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc12ea0dce8df797407ecf6153dd739957fca20a6d09c9f865cac6eff9674359 +size 377430 diff --git a/Skins/fukari alt/menu-button-background.png b/Skins/fukari alt/menu-button-background.png new file mode 100644 index 00000000..0faff988 --- /dev/null +++ b/Skins/fukari alt/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ebe474e212e8811e931f8f5f14a8457c4bd042ef770c7c800b5b6171bb77c4 +size 3577 diff --git a/Skins/fukari alt/mode-osu.png b/Skins/fukari alt/mode-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/nightcore-clap.wav b/Skins/fukari alt/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/fukari alt/nightcore-finish.wav b/Skins/fukari alt/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/fukari alt/nightcore-hat.wav b/Skins/fukari alt/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/fukari alt/nightcore-kick.wav b/Skins/fukari alt/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/fukari alt/nomal-sliderslide.wav b/Skins/fukari alt/nomal-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/fukari alt/nomal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/fukari alt/none.png b/Skins/fukari alt/none.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/none.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/normal-hitclap.wav b/Skins/fukari alt/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/fukari alt/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/fukari alt/normal-hitclap2.wav b/Skins/fukari alt/normal-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/fukari alt/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/fukari alt/normal-hitclap3.wav b/Skins/fukari alt/normal-hitclap3.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/fukari alt/normal-hitclap3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/fukari alt/normal-hitfinish.wav b/Skins/fukari alt/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/fukari alt/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/fukari alt/normal-hitfinish2.wav b/Skins/fukari alt/normal-hitfinish2.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/fukari alt/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/fukari alt/normal-hitnormal.wav b/Skins/fukari alt/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/fukari alt/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/fukari alt/normal-hitnormal1.wav b/Skins/fukari alt/normal-hitnormal1.wav new file mode 100644 index 00000000..07a92cfd --- /dev/null +++ b/Skins/fukari alt/normal-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f79c0b24fa17ae18f3b3e96f8393d6ce704dbdc07b2b5612fd6065dcf3cdbe +size 43246 diff --git a/Skins/fukari alt/normal-hitnormal2.wav b/Skins/fukari alt/normal-hitnormal2.wav new file mode 100644 index 00000000..8d1bb6df --- /dev/null +++ b/Skins/fukari alt/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f5522ffa67692394509eaa54e47261b703a17ce75b9cec9b122433ea9fef6b +size 54196 diff --git a/Skins/fukari alt/normal-hitnormalh.wav b/Skins/fukari alt/normal-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/fukari alt/normal-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/fukari alt/normal-hitwhistle.wav b/Skins/fukari alt/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/fukari alt/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/fukari alt/normal-hitwhistle1.wav b/Skins/fukari alt/normal-hitwhistle1.wav new file mode 100644 index 00000000..d2c998e9 --- /dev/null +++ b/Skins/fukari alt/normal-hitwhistle1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce070c61405932deab438eeece4753784363cf005e5b76f811b79e09c0bbab1 +size 141564 diff --git a/Skins/fukari alt/normal-sliderSlide.wav b/Skins/fukari alt/normal-sliderSlide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/normal-sliderSlide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/normal-sliderWhistle.wav b/Skins/fukari alt/normal-sliderWhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/normal-sliderWhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/normal-slidertick.wav b/Skins/fukari alt/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/fukari alt/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/fukari alt/pause-back.png b/Skins/fukari alt/pause-back.png new file mode 100644 index 00000000..a36b6893 --- /dev/null +++ b/Skins/fukari alt/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc4ef9b7756f6d7b3dcbc18ee9897a0dfa0f39aa5efc20a34f11e37e79804b0 +size 12992 diff --git a/Skins/fukari alt/pause-back@2x.png b/Skins/fukari alt/pause-back@2x.png new file mode 100644 index 00000000..05fbe96c --- /dev/null +++ b/Skins/fukari alt/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b32e24bfdd59a4a6d8c428a41afccc301e742e785fb366c6583a7674fa0157 +size 32679 diff --git a/Skins/fukari alt/pause-continue.png b/Skins/fukari alt/pause-continue.png new file mode 100644 index 00000000..ef444308 --- /dev/null +++ b/Skins/fukari alt/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4a09d7fdfc89b46af1741e642795e51ff1a504f211f158709dfb4db18ccb7f +size 10125 diff --git a/Skins/fukari alt/pause-continue@2x.png b/Skins/fukari alt/pause-continue@2x.png new file mode 100644 index 00000000..833cf502 --- /dev/null +++ b/Skins/fukari alt/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf44a70ec39212129bf34846b43f4fc31998085beebc2f666441ad277826ea3b +size 21112 diff --git a/Skins/fukari alt/pause-replay.png b/Skins/fukari alt/pause-replay.png new file mode 100644 index 00000000..07519197 --- /dev/null +++ b/Skins/fukari alt/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b974208d757e38082d02f2e27926a698244d3bba10b81ff59ede70acca4dc3a +size 14929 diff --git a/Skins/fukari alt/pause-replay@2x.png b/Skins/fukari alt/pause-replay@2x.png new file mode 100644 index 00000000..875020ec --- /dev/null +++ b/Skins/fukari alt/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c59f5dd4052503cf75a29b99dce7a64b1542e7619643c01b4b95c336f2d357a +size 33799 diff --git a/Skins/fukari alt/pause-retry.png b/Skins/fukari alt/pause-retry.png new file mode 100644 index 00000000..8672f9c0 --- /dev/null +++ b/Skins/fukari alt/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7c017b70784b20d4944b0bc1f8ca1be98921484ba9f772ebcaad55fb482fed +size 7630 diff --git a/Skins/fukari alt/pause-retry@2x.png b/Skins/fukari alt/pause-retry@2x.png new file mode 100644 index 00000000..43c79235 --- /dev/null +++ b/Skins/fukari alt/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c68802b7772b5c5fe5e9ccb9f9281d996c3a5a45ced9159bba406b8dd4d33c6d +size 17017 diff --git a/Skins/fukari alt/ranking-accuracy.png b/Skins/fukari alt/ranking-accuracy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/ranking-graph.png b/Skins/fukari alt/ranking-graph.png new file mode 100644 index 00000000..4836ccd7 --- /dev/null +++ b/Skins/fukari alt/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed21032e6501ffc5fbf65008587ac900ef9b4510a00c4213b7f2bd4458c2d76f +size 313 diff --git a/Skins/fukari alt/ranking-maxcombo.png b/Skins/fukari alt/ranking-maxcombo.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/ranking-panel.png b/Skins/fukari alt/ranking-panel.png new file mode 100644 index 00000000..65b7106b --- /dev/null +++ b/Skins/fukari alt/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5804b805f0039e75bcbd2f4c595bd699b375481109e86d1ae7b6dd22d6c9e8 +size 22003 diff --git a/Skins/fukari alt/ranking-panel@2x.png b/Skins/fukari alt/ranking-panel@2x.png new file mode 100644 index 00000000..64431061 --- /dev/null +++ b/Skins/fukari alt/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe783fd927bbde96da6ff8aa7e0516599ff7d23be0d125354a0c5ac7b92fbf36 +size 802791 diff --git a/Skins/fukari alt/ranking-perfect.png b/Skins/fukari alt/ranking-perfect.png new file mode 100644 index 00000000..efa5ec3d --- /dev/null +++ b/Skins/fukari alt/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217e31a657c6f1305f888c52c2e044dea068f92ec3d82f5e7f79d4678479ac8f +size 63235 diff --git a/Skins/fukari alt/ranking-title.png b/Skins/fukari alt/ranking-title.png new file mode 100644 index 00000000..526d85d8 --- /dev/null +++ b/Skins/fukari alt/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404324247a7c62acb1a10710cd29aca12537494c678dc21970522b1bbcd37ff6 +size 27110 diff --git a/Skins/fukari alt/reversearrow.png b/Skins/fukari alt/reversearrow.png new file mode 100644 index 00000000..2270754e --- /dev/null +++ b/Skins/fukari alt/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54baa6bccd009b9438b245fadc7a1b04c290d035b12fbf9c77b53eb355e189b1 +size 2116 diff --git a/Skins/fukari alt/reversearrow@2x.png b/Skins/fukari alt/reversearrow@2x.png new file mode 100644 index 00000000..16b61a3b --- /dev/null +++ b/Skins/fukari alt/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604b13ef87207ab44fe78e47636803552056117f1b496070f7f088e43ce83547 +size 3509 diff --git a/Skins/fukari alt/score-0.png b/Skins/fukari alt/score-0.png new file mode 100644 index 00000000..bfde042c --- /dev/null +++ b/Skins/fukari alt/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:265e556825c0d5bcfbeb018c4b3312f697d73dddf4daecef9caa07534c25f49c +size 1487 diff --git a/Skins/fukari alt/score-0@2x.png b/Skins/fukari alt/score-0@2x.png new file mode 100644 index 00000000..59e9f83c --- /dev/null +++ b/Skins/fukari alt/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96be419eb5649fc359e05f710b8908b5865c78473e7fedc4d1d585a5ce5b3c66 +size 6081 diff --git a/Skins/fukari alt/score-1.png b/Skins/fukari alt/score-1.png new file mode 100644 index 00000000..cd6fb2b5 --- /dev/null +++ b/Skins/fukari alt/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c5b273ec5727863940acc70b11979e48fa82ff7e7f3392aff2bb52253178d1 +size 763 diff --git a/Skins/fukari alt/score-1@2x.png b/Skins/fukari alt/score-1@2x.png new file mode 100644 index 00000000..f3d13ce8 --- /dev/null +++ b/Skins/fukari alt/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eecf62d4f01e6c0e2dd2f15369f441e9fb1474d253748eaf1e71f92329564a8c +size 3877 diff --git a/Skins/fukari alt/score-2.png b/Skins/fukari alt/score-2.png new file mode 100644 index 00000000..850e9562 --- /dev/null +++ b/Skins/fukari alt/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f51a8199a2209620a4f169d7f1d6cf78cb06333fa49d33f9b3067464b26b5c11 +size 1212 diff --git a/Skins/fukari alt/score-2@2x.png b/Skins/fukari alt/score-2@2x.png new file mode 100644 index 00000000..c2a0fa8c --- /dev/null +++ b/Skins/fukari alt/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd00c718b578a4d1ca35b06f033daf44d2a1c268313eb722f496406af6a05c9 +size 5243 diff --git a/Skins/fukari alt/score-3.png b/Skins/fukari alt/score-3.png new file mode 100644 index 00000000..1e482276 --- /dev/null +++ b/Skins/fukari alt/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634e58ef5324c1c077ed98b3a68ec33ab83ce274cf7067132206f8ebc8bafb3b +size 1293 diff --git a/Skins/fukari alt/score-3@2x.png b/Skins/fukari alt/score-3@2x.png new file mode 100644 index 00000000..efd26511 --- /dev/null +++ b/Skins/fukari alt/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51e6e2a0b7ba0252d97a2f54138029d4b94cadbfb021139c45ffe78232a375cf +size 5446 diff --git a/Skins/fukari alt/score-4.png b/Skins/fukari alt/score-4.png new file mode 100644 index 00000000..f201e988 --- /dev/null +++ b/Skins/fukari alt/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853b5af3ee0d957f8743f5ac464c9ef45c58d40558463e3afd2965563579458e +size 1173 diff --git a/Skins/fukari alt/score-4@2x.png b/Skins/fukari alt/score-4@2x.png new file mode 100644 index 00000000..5927e9d4 --- /dev/null +++ b/Skins/fukari alt/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1845dc86360c04bf4e5181d2c37ee517639f13f029102c89e892e8e61b6de508 +size 4786 diff --git a/Skins/fukari alt/score-5.png b/Skins/fukari alt/score-5.png new file mode 100644 index 00000000..f45d46d1 --- /dev/null +++ b/Skins/fukari alt/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6196d367d0e1b8730fc1a33bdcb9e2ca7f7ade25f1fa2e794e78b0cffbf563 +size 1234 diff --git a/Skins/fukari alt/score-5@2x.png b/Skins/fukari alt/score-5@2x.png new file mode 100644 index 00000000..d874deb3 --- /dev/null +++ b/Skins/fukari alt/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db8ac0a35d6587a5ec834cdc7d460ea3d39724db75f593d2c77bf6f47eaa94d +size 5178 diff --git a/Skins/fukari alt/score-6.png b/Skins/fukari alt/score-6.png new file mode 100644 index 00000000..c722afd8 --- /dev/null +++ b/Skins/fukari alt/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43255be4ebdd8b8cc6f472bdb819a0c0dc774ce25009aca03d63754b7d84fc3 +size 1570 diff --git a/Skins/fukari alt/score-6@2x.png b/Skins/fukari alt/score-6@2x.png new file mode 100644 index 00000000..ce3ef6ad --- /dev/null +++ b/Skins/fukari alt/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7ce36f2e6b07999882238ad5231ba3109dd12aa5f772025e817bd5219edbb9 +size 6304 diff --git a/Skins/fukari alt/score-7.png b/Skins/fukari alt/score-7.png new file mode 100644 index 00000000..f5eae9f8 --- /dev/null +++ b/Skins/fukari alt/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b24b0ae58f8c411dc3f9f65ce2e31240fadf2d72b0341dc37736e485c15f4e +size 1031 diff --git a/Skins/fukari alt/score-7@2x.png b/Skins/fukari alt/score-7@2x.png new file mode 100644 index 00000000..05d2089a --- /dev/null +++ b/Skins/fukari alt/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d149c1fa9ec717ad1fa3e3171adc960deba044bc0a1a978d197884350576d26 +size 4534 diff --git a/Skins/fukari alt/score-8.png b/Skins/fukari alt/score-8.png new file mode 100644 index 00000000..3bb13104 --- /dev/null +++ b/Skins/fukari alt/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2344b638a114dbf02fd624475bb2ccee1599795a145032365e87d37e356b39e4 +size 1721 diff --git a/Skins/fukari alt/score-8@2x.png b/Skins/fukari alt/score-8@2x.png new file mode 100644 index 00000000..c78f1dd1 --- /dev/null +++ b/Skins/fukari alt/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aae4b9067a1312e55b1ac6447677a49e79437a0255da4d33b6d5b94e32664b3 +size 6659 diff --git a/Skins/fukari alt/score-9.png b/Skins/fukari alt/score-9.png new file mode 100644 index 00000000..465017e6 --- /dev/null +++ b/Skins/fukari alt/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f4326f73f9559112b5d387033d65805d61f84d9f8ec9c15df0f65246d28be9 +size 1583 diff --git a/Skins/fukari alt/score-9@2x.png b/Skins/fukari alt/score-9@2x.png new file mode 100644 index 00000000..635de575 --- /dev/null +++ b/Skins/fukari alt/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:500d6536f5c9c12ff6cbdeb8f3863703aecd02b4a968acd4bce297d1375755a7 +size 6420 diff --git a/Skins/fukari alt/score-comma.png b/Skins/fukari alt/score-comma.png new file mode 100644 index 00000000..e05784a8 --- /dev/null +++ b/Skins/fukari alt/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd99335d6ec72abf4a47f162971302c1c5636556874af85e6ba2ce91b7ada3ac +size 547 diff --git a/Skins/fukari alt/score-comma@2x.png b/Skins/fukari alt/score-comma@2x.png new file mode 100644 index 00000000..97f5a165 --- /dev/null +++ b/Skins/fukari alt/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423fb42d5f4852c40a8213a91fd1903e057b969eeb69a16d4b06ebc1f9d7804e +size 3423 diff --git a/Skins/fukari alt/score-dot.png b/Skins/fukari alt/score-dot.png new file mode 100644 index 00000000..f6377b3f --- /dev/null +++ b/Skins/fukari alt/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c537b964a2d8d6805119c7f839e068db837d7f21ffc4fe6307f51e56b78b283e +size 460 diff --git a/Skins/fukari alt/score-dot@2x.png b/Skins/fukari alt/score-dot@2x.png new file mode 100644 index 00000000..aa446652 --- /dev/null +++ b/Skins/fukari alt/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636fcd30fbcd37cbd028fe65107e8653467dd1af90f2cc28b5ec3d5491218569 +size 3209 diff --git a/Skins/fukari alt/score-percent.png b/Skins/fukari alt/score-percent.png new file mode 100644 index 00000000..de8c69fd --- /dev/null +++ b/Skins/fukari alt/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6218e57c163ba04d45b535c8efa8149c88b83a4564ca6b46f9d54e8757e6cfc +size 1934 diff --git a/Skins/fukari alt/score-percent@2x.png b/Skins/fukari alt/score-percent@2x.png new file mode 100644 index 00000000..f119fa8c --- /dev/null +++ b/Skins/fukari alt/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee3f0746dee7e3a3d8484ce2adcb88785ea7b7b6c94ae21a5794c8b464617a3 +size 7002 diff --git a/Skins/fukari alt/score-x.png b/Skins/fukari alt/score-x.png new file mode 100644 index 00000000..232e195c --- /dev/null +++ b/Skins/fukari alt/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2eaf71f7fce8808cd04b9484218efbd0d65b7c4346d09add5c014f8f250160 +size 870 diff --git a/Skins/fukari alt/score-x@2x.png b/Skins/fukari alt/score-x@2x.png new file mode 100644 index 00000000..fdd846e4 --- /dev/null +++ b/Skins/fukari alt/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de385ca30ef5c64d53d75b1ffca85d5c87430a69984c18dccafb77447a9b437 +size 4077 diff --git a/Skins/fukari alt/scorebar-colour.png b/Skins/fukari alt/scorebar-colour.png new file mode 100644 index 00000000..b25b5773 --- /dev/null +++ b/Skins/fukari alt/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547a4c197afb2b306c2dcd73f36360255feff91794ec9189e277356a007defc3 +size 2505 diff --git a/Skins/fukari alt/section-pass.png b/Skins/fukari alt/section-pass.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/sectionfail.wav b/Skins/fukari alt/sectionfail.wav new file mode 100644 index 00000000..8fede87b --- /dev/null +++ b/Skins/fukari alt/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5344e88de42969b59270c96a075f1c49f772c93bd553c1eade6a2e239303608e +size 133974 diff --git a/Skins/fukari alt/sectionpass.wav b/Skins/fukari alt/sectionpass.wav new file mode 100644 index 00000000..e4f44365 --- /dev/null +++ b/Skins/fukari alt/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf6d8c989486225c5aa8ff446915f3b4cf887a107ceae1c1d1457418beecdb5 +size 113872 diff --git a/Skins/fukari alt/selection-mod-easy.png b/Skins/fukari alt/selection-mod-easy.png new file mode 100644 index 00000000..752feda3 --- /dev/null +++ b/Skins/fukari alt/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3af77b6e0fc6770a8ccc02425ca3cd8b671710a87f3e8dd98244432029a68e +size 4047 diff --git a/Skins/fukari alt/selection-mod-hardrock.png b/Skins/fukari alt/selection-mod-hardrock.png new file mode 100644 index 00000000..42186288 --- /dev/null +++ b/Skins/fukari alt/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612f383a280982346678b696d8410fd47a122cac916df7472515ebabc9231eed +size 9220 diff --git a/Skins/fukari alt/selection-mod-hardrock@2x.png b/Skins/fukari alt/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..7e24be2e --- /dev/null +++ b/Skins/fukari alt/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cce42903eeabfaa2d7fc35d151c295782672be93fe403c6ad7edacb4949c411a +size 18228 diff --git a/Skins/fukari alt/selection-mode-over.png b/Skins/fukari alt/selection-mode-over.png new file mode 100644 index 00000000..b3c00434 --- /dev/null +++ b/Skins/fukari alt/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c018f0ac91cfc0e9804b19a2488fa4f5cad6a96866c217036ca0f68cfa31d0 +size 2799 diff --git a/Skins/fukari alt/selection-mode.png b/Skins/fukari alt/selection-mode.png new file mode 100644 index 00000000..fcac5688 --- /dev/null +++ b/Skins/fukari alt/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f00435dfd61f4cb9faaf5e936432fa0a260ffc7364f173ad784bd24a67395f +size 122521 diff --git a/Skins/fukari alt/selection-mode@2x.png b/Skins/fukari alt/selection-mode@2x.png new file mode 100644 index 00000000..62e26a9e --- /dev/null +++ b/Skins/fukari alt/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b198b4bae61fcb73f1ace9aac24fae184215c97772a7f5f4d7283f34dae6ee6 +size 393349 diff --git a/Skins/fukari alt/selection-mods-over.png b/Skins/fukari alt/selection-mods-over.png new file mode 100644 index 00000000..90741572 --- /dev/null +++ b/Skins/fukari alt/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a97cd33c41c1d22d9e91c0433a996f22d077d50af45d0828f9660490531e061 +size 253 diff --git a/Skins/fukari alt/selection-mods.png b/Skins/fukari alt/selection-mods.png new file mode 100644 index 00000000..b3c00434 --- /dev/null +++ b/Skins/fukari alt/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c018f0ac91cfc0e9804b19a2488fa4f5cad6a96866c217036ca0f68cfa31d0 +size 2799 diff --git a/Skins/fukari alt/selection-options-over.png b/Skins/fukari alt/selection-options-over.png new file mode 100644 index 00000000..b3c00434 --- /dev/null +++ b/Skins/fukari alt/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c018f0ac91cfc0e9804b19a2488fa4f5cad6a96866c217036ca0f68cfa31d0 +size 2799 diff --git a/Skins/fukari alt/selection-options.png b/Skins/fukari alt/selection-options.png new file mode 100644 index 00000000..b3c00434 --- /dev/null +++ b/Skins/fukari alt/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c018f0ac91cfc0e9804b19a2488fa4f5cad6a96866c217036ca0f68cfa31d0 +size 2799 diff --git a/Skins/fukari alt/selection-random-over.png b/Skins/fukari alt/selection-random-over.png new file mode 100644 index 00000000..b3c00434 --- /dev/null +++ b/Skins/fukari alt/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c018f0ac91cfc0e9804b19a2488fa4f5cad6a96866c217036ca0f68cfa31d0 +size 2799 diff --git a/Skins/fukari alt/selection-random.png b/Skins/fukari alt/selection-random.png new file mode 100644 index 00000000..b3c00434 --- /dev/null +++ b/Skins/fukari alt/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c018f0ac91cfc0e9804b19a2488fa4f5cad6a96866c217036ca0f68cfa31d0 +size 2799 diff --git a/Skins/fukari alt/skin.ini b/Skins/fukari alt/skin.ini new file mode 100644 index 00000000..22418a43 --- /dev/null +++ b/Skins/fukari alt/skin.ini @@ -0,0 +1,91 @@ +[General] +Name: fukari alt +Author: Fukari-tan +Version: latest + +SliderStyle: 2 +AllowSliderBallTint: 0 +CursorRotate: 0 +CursorTrailRotate: 0 +CursorExpand: 1 +CursorCentre: 1 +HitCircleOverlayAboveNumber: 1 +LayeredHitSounds: 1 +SliderBallFlip: 1 +SpinnerFadePlayfield: 0 +SpinnerFrequencyModulate: 1 +SpinnerNoBlink: 0 + +[Colours] +Combo1: 70,255,255 +Combo2: 255,255,128 +Combo3: 255,151,203 + +SliderBorder: 20,20,20 +SliderTrackOverride: 5, 5, 5 + +MenuGlow: 0,0,0 +SongSelectActiveText: 255,255,255 +SongSelectInactiveText: 255,255,255 +SpinnerBackground: 100,100,100 +StarBreakAdditive: 255,182,193 + +[Fonts] +HitCirclePrefix: default +ScorePrefix: score +ComboPrefix: score +HitCircleOverlap: -2 +ComboOverlap: -2 + +[Mania] +Keys: 4 +ColumnStart: 300 +HitPosition: 431 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 110 +ComboPosition: 110 +LightFramePerSecond: 48 +ColumnWidth: 63,63,63,63 +ColumnSpacing: 0,0,0 +LightingNWidth: 45,45,45,45 +LightingLWidth: 45,45,45,45 +Colour1: 0,0,0,255 +Colour2: 0,0,0,255 +Colour3: 0,0,0,255 +Colour4: 0,0,0,255 +ColourBreak: 0,0,0,0 +ColourHold: 255,255,255,255 +KeyImage0: mania/receptor +KeyImage1: mania/receptor +KeyImage2: mania/receptor +KeyImage3: mania/receptor +KeyImage0D: mania/receptor2 +KeyImage1D: mania/receptor2 +KeyImage2D: mania/receptor2 +KeyImage3D: mania/receptor2 +NoteImage0: mania/note +NoteImage0H: mania/note +NoteImage0L: mania/ln +NoteImage1: mania/note +NoteImage1H: mania/note +NoteImage1L: mania/ln +NoteImage2: mania/note +NoteImage2H: mania/note +NoteImage2L: mania/ln +NoteImage3: mania/note +NoteImage3H: mania/note +NoteImage3L: mania/ln +NoteImage0T: none +NoteImage1T: none +NoteImage2T: none +NoteImage3T: none +StageRight: mania/stage/stageright +StageLeft: mania/stage/stageleft +StageLight: none +StageHint: none +LightingN: none +LightingL: none +BarlineHeight: 0 +ColumnLineWidth: 0,0,0,0,0 diff --git a/Skins/fukari alt/sliderb0.png b/Skins/fukari alt/sliderb0.png new file mode 100644 index 00000000..2813ba37 --- /dev/null +++ b/Skins/fukari alt/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e7be6beeca27dc1a6d364ff730ff370f9ccf5b1399f5f19af96c744d13911a +size 1942 diff --git a/Skins/fukari alt/sliderb0@2x.png b/Skins/fukari alt/sliderb0@2x.png new file mode 100644 index 00000000..c008f784 --- /dev/null +++ b/Skins/fukari alt/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fba32168480becc7ca37ed790b3bc7815404ae5ce4184ce9f0bf5b88c9c295e +size 13101 diff --git a/Skins/fukari alt/sliderendcircle.png b/Skins/fukari alt/sliderendcircle.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/fukari alt/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/fukari alt/sliderfollowcircle.png b/Skins/fukari alt/sliderfollowcircle.png new file mode 100644 index 00000000..f0a6e4de --- /dev/null +++ b/Skins/fukari alt/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5f7a9c0415d54753bb7957ba4747b397288b96122dc1cda0afde276f0820da +size 3793 diff --git a/Skins/fukari alt/sliderfollowcircle@2x.png b/Skins/fukari alt/sliderfollowcircle@2x.png new file mode 100644 index 00000000..f8dfcda0 --- /dev/null +++ b/Skins/fukari alt/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d7ab953116444beb8a9ca19f0e0429f4335975bb4bcc9bc130a1463ad0c7b7 +size 3772 diff --git a/Skins/fukari alt/soft-hitClap.wav b/Skins/fukari alt/soft-hitClap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/fukari alt/soft-hitClap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/fukari alt/soft-hitFinish.wav b/Skins/fukari alt/soft-hitFinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/fukari alt/soft-hitFinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/fukari alt/soft-hitNormal.wav b/Skins/fukari alt/soft-hitNormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/fukari alt/soft-hitNormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/fukari alt/soft-hitWhistle.wav b/Skins/fukari alt/soft-hitWhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/fukari alt/soft-hitWhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/fukari alt/soft-hitsoft.wav b/Skins/fukari alt/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/fukari alt/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/fukari alt/soft-sliderSlide.wav b/Skins/fukari alt/soft-sliderSlide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/soft-sliderSlide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/soft-sliderWhistle.wav b/Skins/fukari alt/soft-sliderWhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/soft-sliderWhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/soft-slidertick.wav b/Skins/fukari alt/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/fukari alt/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/fukari alt/songselect-bottom.png b/Skins/fukari alt/songselect-bottom.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/fukari alt/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/fukari alt/spinner-bottom.png b/Skins/fukari alt/spinner-bottom.png new file mode 100644 index 00000000..8c8c622f --- /dev/null +++ b/Skins/fukari alt/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b05b7482c8d2a97fc592b887a02e97cb313996835cac64fb40e092819650f0 +size 1855 diff --git a/Skins/fukari alt/spinner-clear.png b/Skins/fukari alt/spinner-clear.png new file mode 100644 index 00000000..3c6bfd10 --- /dev/null +++ b/Skins/fukari alt/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acec0e7c0f199367afa8398ad0b49a8a4a8a5706925d1f2410b593a7b7dda9b1 +size 2737 diff --git a/Skins/fukari alt/spinner-glow.png b/Skins/fukari alt/spinner-glow.png new file mode 100644 index 00000000..6c10c66a --- /dev/null +++ b/Skins/fukari alt/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff93751a57dad9a40fa5d71c3aeb462add04a1a69ef34fbba5c9448520b7e9d +size 2945 diff --git a/Skins/fukari alt/spinner-spin.png b/Skins/fukari alt/spinner-spin.png new file mode 100644 index 00000000..d210b60f --- /dev/null +++ b/Skins/fukari alt/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84803dcd04958d9b763420abd6ec35fb468f9425c11cf8e185083ae0249b7952 +size 4874 diff --git a/Skins/fukari alt/spinner-top.png b/Skins/fukari alt/spinner-top.png new file mode 100644 index 00000000..8c8c622f --- /dev/null +++ b/Skins/fukari alt/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b05b7482c8d2a97fc592b887a02e97cb313996835cac64fb40e092819650f0 +size 1855 diff --git a/Skins/fukari alt/star2.png b/Skins/fukari alt/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/fukari alt/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/fukari alt/welcome.wav b/Skins/fukari alt/welcome.wav new file mode 100644 index 00000000..bf76dd80 --- /dev/null +++ b/Skins/fukari alt/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:267062614c8f8aa7fcb454300f541d0efe53f6634d94895bae839229878cb136 +size 197638 diff --git a/Skins/fukari alt/white.png b/Skins/fukari alt/white.png new file mode 100644 index 00000000..352dfe81 --- /dev/null +++ b/Skins/fukari alt/white.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5377e91bd2befa05d41e230ee158442c29b050e6dc8e01e014b39e06d54fed4 +size 6491 diff --git a/Skins/hddthr_aristia/applause.mp3 b/Skins/hddthr_aristia/applause.mp3 new file mode 100644 index 00000000..8b07f54a --- /dev/null +++ b/Skins/hddthr_aristia/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a63f9a8746fe7d97c94080f716be2f79883f77cd3b012cbdcead1599ad2ef4 +size 581610 diff --git a/Skins/hddthr_aristia/applause_apple.mp3 b/Skins/hddthr_aristia/applause_apple.mp3 new file mode 100644 index 00000000..7f1658dd --- /dev/null +++ b/Skins/hddthr_aristia/applause_apple.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7c4bb66b69e12aed35ebe54615e8ead20c2d3e544882f17ac4e2442a5584ae +size 61891 diff --git a/Skins/hddthr_aristia/approachcircle.png b/Skins/hddthr_aristia/approachcircle.png new file mode 100644 index 00000000..9fb6c6ae --- /dev/null +++ b/Skins/hddthr_aristia/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb434dc285c3a64a44da60b396363030f71427381e23070121abd5afb56e9c4 +size 4504 diff --git a/Skins/hddthr_aristia/button-left.png b/Skins/hddthr_aristia/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/button-middle.png b/Skins/hddthr_aristia/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/button-right.png b/Skins/hddthr_aristia/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/combo/tako/combo-0.png b/Skins/hddthr_aristia/combo/tako/combo-0.png new file mode 100644 index 00000000..718d32d9 --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89de823660790004e0c92bfc5ffe6d54f590c2a4de1e8c207e108fae8b59584 +size 131 diff --git a/Skins/hddthr_aristia/combo/tako/combo-0_.png b/Skins/hddthr_aristia/combo/tako/combo-0_.png new file mode 100644 index 00000000..d642824e --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-0_.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d54c6ee8ead75358ba66341a034a1ddb8ca8c866dcdd33ea2271019dbb43da +size 1471 diff --git a/Skins/hddthr_aristia/combo/tako/combo-1.png b/Skins/hddthr_aristia/combo/tako/combo-1.png new file mode 100644 index 00000000..1280ad3b --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9d2cf47aa26990ed02362da91c9f0fef88fa57841a3be0159ce07cfad9b804 +size 1491 diff --git a/Skins/hddthr_aristia/combo/tako/combo-2.png b/Skins/hddthr_aristia/combo/tako/combo-2.png new file mode 100644 index 00000000..d642824e --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d54c6ee8ead75358ba66341a034a1ddb8ca8c866dcdd33ea2271019dbb43da +size 1471 diff --git a/Skins/hddthr_aristia/combo/tako/combo-3.png b/Skins/hddthr_aristia/combo/tako/combo-3.png new file mode 100644 index 00000000..1280ad3b --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9d2cf47aa26990ed02362da91c9f0fef88fa57841a3be0159ce07cfad9b804 +size 1491 diff --git a/Skins/hddthr_aristia/combo/tako/combo-4.png b/Skins/hddthr_aristia/combo/tako/combo-4.png new file mode 100644 index 00000000..d642824e --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d54c6ee8ead75358ba66341a034a1ddb8ca8c866dcdd33ea2271019dbb43da +size 1471 diff --git a/Skins/hddthr_aristia/combo/tako/combo-5.png b/Skins/hddthr_aristia/combo/tako/combo-5.png new file mode 100644 index 00000000..1280ad3b --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9d2cf47aa26990ed02362da91c9f0fef88fa57841a3be0159ce07cfad9b804 +size 1491 diff --git a/Skins/hddthr_aristia/combo/tako/combo-6.png b/Skins/hddthr_aristia/combo/tako/combo-6.png new file mode 100644 index 00000000..d642824e --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d54c6ee8ead75358ba66341a034a1ddb8ca8c866dcdd33ea2271019dbb43da +size 1471 diff --git a/Skins/hddthr_aristia/combo/tako/combo-7.png b/Skins/hddthr_aristia/combo/tako/combo-7.png new file mode 100644 index 00000000..1280ad3b --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9d2cf47aa26990ed02362da91c9f0fef88fa57841a3be0159ce07cfad9b804 +size 1491 diff --git a/Skins/hddthr_aristia/combo/tako/combo-8.png b/Skins/hddthr_aristia/combo/tako/combo-8.png new file mode 100644 index 00000000..d642824e --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d54c6ee8ead75358ba66341a034a1ddb8ca8c866dcdd33ea2271019dbb43da +size 1471 diff --git a/Skins/hddthr_aristia/combo/tako/combo-9.png b/Skins/hddthr_aristia/combo/tako/combo-9.png new file mode 100644 index 00000000..1280ad3b --- /dev/null +++ b/Skins/hddthr_aristia/combo/tako/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9d2cf47aa26990ed02362da91c9f0fef88fa57841a3be0159ce07cfad9b804 +size 1491 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-0.png b/Skins/hddthr_aristia/combo/yerincat/combo-0.png new file mode 100644 index 00000000..718d32d9 --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89de823660790004e0c92bfc5ffe6d54f590c2a4de1e8c207e108fae8b59584 +size 131 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-1.png b/Skins/hddthr_aristia/combo/yerincat/combo-1.png new file mode 100644 index 00000000..bb52d7a0 --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304a159254cbc83100e9abc639c39ceea6f4bfd6750da20294cf0d7913eb7b21 +size 715 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-2.png b/Skins/hddthr_aristia/combo/yerincat/combo-2.png new file mode 100644 index 00000000..9ff2c59a --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb85bdd9056eea34881710e4c9c6fd6271acc8288b1b750211caf369b6a06b4f +size 741 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-3.png b/Skins/hddthr_aristia/combo/yerincat/combo-3.png new file mode 100644 index 00000000..9c6aaacb --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6004ba0de499b4c8ca1a4b15d171e746d46f7b81d44ed110a2a3de885b489f8 +size 720 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-4.png b/Skins/hddthr_aristia/combo/yerincat/combo-4.png new file mode 100644 index 00000000..9ff2c59a --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb85bdd9056eea34881710e4c9c6fd6271acc8288b1b750211caf369b6a06b4f +size 741 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-5.png b/Skins/hddthr_aristia/combo/yerincat/combo-5.png new file mode 100644 index 00000000..bb52d7a0 --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304a159254cbc83100e9abc639c39ceea6f4bfd6750da20294cf0d7913eb7b21 +size 715 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-6.png b/Skins/hddthr_aristia/combo/yerincat/combo-6.png new file mode 100644 index 00000000..9ff2c59a --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb85bdd9056eea34881710e4c9c6fd6271acc8288b1b750211caf369b6a06b4f +size 741 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-7.png b/Skins/hddthr_aristia/combo/yerincat/combo-7.png new file mode 100644 index 00000000..9c6aaacb --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6004ba0de499b4c8ca1a4b15d171e746d46f7b81d44ed110a2a3de885b489f8 +size 720 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-8.png b/Skins/hddthr_aristia/combo/yerincat/combo-8.png new file mode 100644 index 00000000..9ff2c59a --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb85bdd9056eea34881710e4c9c6fd6271acc8288b1b750211caf369b6a06b4f +size 741 diff --git a/Skins/hddthr_aristia/combo/yerincat/combo-9.png b/Skins/hddthr_aristia/combo/yerincat/combo-9.png new file mode 100644 index 00000000..bb52d7a0 --- /dev/null +++ b/Skins/hddthr_aristia/combo/yerincat/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304a159254cbc83100e9abc639c39ceea6f4bfd6750da20294cf0d7913eb7b21 +size 715 diff --git a/Skins/hddthr_aristia/combobreak.wav b/Skins/hddthr_aristia/combobreak.wav new file mode 100644 index 00000000..207e4366 --- /dev/null +++ b/Skins/hddthr_aristia/combobreak.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c78fd56564bf8a107ea0988df13a7a75520192471f5bff1fa05bd9f20e6590 +size 147476 diff --git a/Skins/hddthr_aristia/count.ogg b/Skins/hddthr_aristia/count.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/hddthr_aristia/count1.png b/Skins/hddthr_aristia/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/count2.png b/Skins/hddthr_aristia/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/count3.png b/Skins/hddthr_aristia/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/cursor.png b/Skins/hddthr_aristia/cursor.png new file mode 100644 index 00000000..dcdef170 --- /dev/null +++ b/Skins/hddthr_aristia/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1aded5a0c34e02a836da68abb50f63fd48e05a51a88ece52998aa204632b36e +size 4486 diff --git a/Skins/hddthr_aristia/cursor@2x_karcher.png b/Skins/hddthr_aristia/cursor@2x_karcher.png new file mode 100644 index 00000000..5b2ffeb9 --- /dev/null +++ b/Skins/hddthr_aristia/cursor@2x_karcher.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf102794a85b85d942ce6593ad227c61edae23568453841722da0d38b584fcd +size 16079 diff --git a/Skins/hddthr_aristia/cursor_.png b/Skins/hddthr_aristia/cursor_.png new file mode 100644 index 00000000..6dcb987b --- /dev/null +++ b/Skins/hddthr_aristia/cursor_.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cfe5842972ba44d97e7179a77e9cf0ea4f0805e73fee18c56ab7116b160c314 +size 12515 diff --git a/Skins/hddthr_aristia/cursortrail.png b/Skins/hddthr_aristia/cursortrail.png new file mode 100644 index 00000000..e5f3e23f --- /dev/null +++ b/Skins/hddthr_aristia/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf92aeb64af70d57efd1eb0c32a624aa47fce8a3290f122eb851e1b6d9e38ec +size 4386 diff --git a/Skins/hddthr_aristia/cursortrail_.png b/Skins/hddthr_aristia/cursortrail_.png new file mode 100644 index 00000000..0b75725e --- /dev/null +++ b/Skins/hddthr_aristia/cursortrail_.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53627af6edc5dc9a4b5005ef87202a252891c891aaf009c77b8562dda4cb01de +size 2229 diff --git a/Skins/hddthr_aristia/cursortrail_karcher.png b/Skins/hddthr_aristia/cursortrail_karcher.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/cursortrail_karcher.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/default-0.png b/Skins/hddthr_aristia/default-0.png new file mode 100644 index 00000000..a61777a1 --- /dev/null +++ b/Skins/hddthr_aristia/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6b7df920a123e0b9a870fc3e0a33270bdce3746fbfd0b35d86a7c4f57e7c10 +size 3246 diff --git a/Skins/hddthr_aristia/default-1.png b/Skins/hddthr_aristia/default-1.png new file mode 100644 index 00000000..ab46ca40 --- /dev/null +++ b/Skins/hddthr_aristia/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:151b25835e09b415ba5612c5126f8bc78a48dadd9c8495fac7370a608fe4be93 +size 2930 diff --git a/Skins/hddthr_aristia/default-2.png b/Skins/hddthr_aristia/default-2.png new file mode 100644 index 00000000..b9603e73 --- /dev/null +++ b/Skins/hddthr_aristia/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fea0a33627eb21802644196290f5207d4a2dd0b987394252fb2786611eff5d +size 3231 diff --git a/Skins/hddthr_aristia/default-3.png b/Skins/hddthr_aristia/default-3.png new file mode 100644 index 00000000..1a05c5cd --- /dev/null +++ b/Skins/hddthr_aristia/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a373e3862ba0aed230225a3134f7ecd4c16ac05716a3350e5017929d5f651c +size 3333 diff --git a/Skins/hddthr_aristia/default-4.png b/Skins/hddthr_aristia/default-4.png new file mode 100644 index 00000000..7c8a0039 --- /dev/null +++ b/Skins/hddthr_aristia/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62330bee27ba4a2087561c88b569670853bfeafdb6b674c61b6a9c9bc623a12 +size 3100 diff --git a/Skins/hddthr_aristia/default-5.png b/Skins/hddthr_aristia/default-5.png new file mode 100644 index 00000000..efe958d8 --- /dev/null +++ b/Skins/hddthr_aristia/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086608ef7910df03dae7575d2054f750f6b3f4af32817b91735ddd2fd62dfdfc +size 3230 diff --git a/Skins/hddthr_aristia/default-6.png b/Skins/hddthr_aristia/default-6.png new file mode 100644 index 00000000..9db04f8c --- /dev/null +++ b/Skins/hddthr_aristia/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b4ca287bc4494dc2f125db0749bb4f951a4bc356b965feac6c77193e8a021ec +size 3343 diff --git a/Skins/hddthr_aristia/default-7.png b/Skins/hddthr_aristia/default-7.png new file mode 100644 index 00000000..3346ed38 --- /dev/null +++ b/Skins/hddthr_aristia/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e56a533aef9f877bfa0b719bbcd36c832509a9de0e8a2e42ff585f8c81168f51 +size 3158 diff --git a/Skins/hddthr_aristia/default-8.png b/Skins/hddthr_aristia/default-8.png new file mode 100644 index 00000000..0113de53 --- /dev/null +++ b/Skins/hddthr_aristia/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd83d68ac31f788a90779f5faba23e455967b7fc19fb02540bd23ce2395985d +size 3296 diff --git a/Skins/hddthr_aristia/default-9.png b/Skins/hddthr_aristia/default-9.png new file mode 100644 index 00000000..4636c2bc --- /dev/null +++ b/Skins/hddthr_aristia/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3916d227305193e2cb9c3e2653c527017768a25a0c16d50ead1fb3f8e0d98495 +size 3331 diff --git a/Skins/hddthr_aristia/drum-hitclap.ogg b/Skins/hddthr_aristia/drum-hitclap.ogg new file mode 100644 index 00000000..f72b6ba6 --- /dev/null +++ b/Skins/hddthr_aristia/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b855f7affaa94ea029d9244089de243682c5e670b34b2a8ea3a0f7e899db8fe +size 5151 diff --git a/Skins/hddthr_aristia/drum-hitfinish.ogg b/Skins/hddthr_aristia/drum-hitfinish.ogg new file mode 100644 index 00000000..f320932f --- /dev/null +++ b/Skins/hddthr_aristia/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd88f8b4502908cff6252307a3952e8c908daa49cbcea95f5bbc48d28df7c4c +size 5763 diff --git a/Skins/hddthr_aristia/drum-hitnormal.ogg b/Skins/hddthr_aristia/drum-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/hddthr_aristia/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/hddthr_aristia/drum-hitwhistle.wav b/Skins/hddthr_aristia/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/hddthr_aristia/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/hddthr_aristia/drum-sliderslide.wav b/Skins/hddthr_aristia/drum-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/hddthr_aristia/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/hddthr_aristia/drum-slidertick.wav b/Skins/hddthr_aristia/drum-slidertick.wav new file mode 100644 index 00000000..0b8d0a91 --- /dev/null +++ b/Skins/hddthr_aristia/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf6236c05fb4ea09d20913c599afb441c02b2ef143401354726037e5e350c10 +size 86070 diff --git a/Skins/hddthr_aristia/drum-sliderwhistle.wav b/Skins/hddthr_aristia/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/hddthr_aristia/failsound.mp3 b/Skins/hddthr_aristia/failsound.mp3 new file mode 100644 index 00000000..f13fc152 --- /dev/null +++ b/Skins/hddthr_aristia/failsound.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6957e8f9c739973c99f221cca8ee30fe72f36a37841bf2b2b066147e1b19747 +size 1132168 diff --git a/Skins/hddthr_aristia/followpoint-0.png b/Skins/hddthr_aristia/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/followpoint-1.png b/Skins/hddthr_aristia/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/followpoint-11.png b/Skins/hddthr_aristia/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/hddthr_aristia/followpoint-12.png b/Skins/hddthr_aristia/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/hddthr_aristia/followpoint-13.png b/Skins/hddthr_aristia/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/hddthr_aristia/followpoint-14.png b/Skins/hddthr_aristia/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/hddthr_aristia/followpoint-15.png b/Skins/hddthr_aristia/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/hddthr_aristia/followpoint-16.png b/Skins/hddthr_aristia/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/hddthr_aristia/followpoint-17.png b/Skins/hddthr_aristia/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/hddthr_aristia/followpoint-18.png b/Skins/hddthr_aristia/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/hddthr_aristia/followpoint-19.png b/Skins/hddthr_aristia/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/hddthr_aristia/followpoint-2.png b/Skins/hddthr_aristia/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/followpoint-20.png b/Skins/hddthr_aristia/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/hddthr_aristia/followpoint-21.png b/Skins/hddthr_aristia/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/hddthr_aristia/followpoint-22.png b/Skins/hddthr_aristia/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/hddthr_aristia/followpoint-23.png b/Skins/hddthr_aristia/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/hddthr_aristia/followpoint-3.png b/Skins/hddthr_aristia/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/hddthr_aristia/followpoint-4.png b/Skins/hddthr_aristia/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoint-5.png b/Skins/hddthr_aristia/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoint-6.png b/Skins/hddthr_aristia/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoint-7.png b/Skins/hddthr_aristia/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoint-8.png b/Skins/hddthr_aristia/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoint-9.png b/Skins/hddthr_aristia/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoint.png b/Skins/hddthr_aristia/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/hddthr_aristia/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-0.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-0.png new file mode 100644 index 00000000..b30a8129 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b735e9181ceeeac7a79ad4751a7b120cb1106379e2e73a96857c180efcea7bb0 +size 128 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-1.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-1.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-10.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-10.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-11.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-11.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-12.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-12.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-13.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-13.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-14.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-14.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-15.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-15.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-16.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-16.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-17.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-17.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-18.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-18.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-19.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-19.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-2.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-2.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-20.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-20.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-21.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-21.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-22.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-22.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-23.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-23.png new file mode 100644 index 00000000..cf40d472 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e19a4a4d69df25460126b25f23184534a9a30edace128db43650fac5e027f4 +size 247 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-23@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-23@2x.png new file mode 100644 index 00000000..c46b27ed --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b328b3e9ea0a97925335ab3f0ff08245fcf6458bd680693a800d1bbf4cc15d62 +size 16612 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-24.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-24.png new file mode 100644 index 00000000..329696d2 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dde834d56cc427787ef459f73d4be61277e8297c8c16b761b2e5cf0519ce775 +size 296 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-24@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-24@2x.png new file mode 100644 index 00000000..ee376c9b --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cd133bd762b13ab91927ffd524a00cda24e9a2f40382ef17164b5127b0d1be5 +size 17104 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-25.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-25.png new file mode 100644 index 00000000..7c969aa9 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a1c8ec7e08cae61ea7e1f70149b447e68e90b33de033cbca482aac89ee21ec +size 308 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-25@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-25@2x.png new file mode 100644 index 00000000..2487f391 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29d2e110170e3a27b85dc54bc34d24c4e42a3ad9104d4423dc79a94996473bb +size 17485 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-26.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-26.png new file mode 100644 index 00000000..937d047e --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00a1520a06b8200a1b960a6ef152b8442e2cc391da65f363ee4bc3ef9c3d29d +size 321 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-26@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-26@2x.png new file mode 100644 index 00000000..fdcb5fe6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74200f22eb3b2f9c35c70648e026b7a337d77eb4251a1c51aaf79ac8478e894e +size 17766 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-27.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-27.png new file mode 100644 index 00000000..36955315 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e39e62739b6bb1a7d987036565067d07bbabd781748a9e4f093f47951272914 +size 333 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-27@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-27@2x.png new file mode 100644 index 00000000..e73a1b97 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c929d5e31217319001f4a1fee225f986b4a4659ce4bb67052b4573b2c93209 +size 17932 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-28.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-28.png new file mode 100644 index 00000000..3e2232e7 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ae286acdd1f9dcb988eca206d6c7dbb8e4afc75794f8acaf62eb6f0396ea57 +size 341 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-28@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-28@2x.png new file mode 100644 index 00000000..fa401efa --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c672c8226a9eaf4efff5df044be7c64233daa28b6d7b2595f219f98f89c56df +size 17953 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-29.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-29.png new file mode 100644 index 00000000..45f31000 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d992b61a62a4b6ce835dffb10cd88fd22df419e48f7acb1ba6e334673ec4b51b +size 349 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-29@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-29@2x.png new file mode 100644 index 00000000..4c2bac64 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbec349971d17081ebafa86c378c139e466329f70a0c840aa219618e1705df96 +size 18002 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-3.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-3.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-30.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-30.png new file mode 100644 index 00000000..b643dc4c --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740b3cd4413a8f4b24a63adec8c6b29ee3b69950acab53a9a980a5364f8fe404 +size 350 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-30@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-30@2x.png new file mode 100644 index 00000000..3e099536 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923748e2c9c7562f4cf323d8ad30056f5bcdb9222231afd79fb745dee33b0349 +size 18009 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-31.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-31.png new file mode 100644 index 00000000..e0d7fd6b --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b272a190c01b8c6dd9ca8da4f8f2b897541c5c179c393168c4d67027e86488 +size 352 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-31@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-31@2x.png new file mode 100644 index 00000000..200758f8 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb978f13d3178d9d503c24271c6067deff366d5ad5ac0ce139394ab3aee1ddd +size 18084 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-32.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-32.png new file mode 100644 index 00000000..105ac2ce --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cddb382bf9212c89db1b247b6b0dee68e4df226c11b95e5b7e38baffb5cfab +size 355 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-32@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-32@2x.png new file mode 100644 index 00000000..28409531 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def162fef72a5a8e0478b0209c4e6e6d01ac8e6e4e37d808489e6beee6686b7b +size 18138 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-33.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-33.png new file mode 100644 index 00000000..105ac2ce --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cddb382bf9212c89db1b247b6b0dee68e4df226c11b95e5b7e38baffb5cfab +size 355 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-33@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-33@2x.png new file mode 100644 index 00000000..5b8eb9f5 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a4680c541e2fad4fb282205ef0785a7650a8f4e9be94997d0e82e2f3abfd80 +size 18138 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-34.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-34.png new file mode 100644 index 00000000..105ac2ce --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cddb382bf9212c89db1b247b6b0dee68e4df226c11b95e5b7e38baffb5cfab +size 355 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-34@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-34@2x.png new file mode 100644 index 00000000..ddd66d2c --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22de87c7695143826c5847ff221b2d02604a24107994acf993b63f07973a274b +size 18138 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-35.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-35.png new file mode 100644 index 00000000..105ac2ce --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cddb382bf9212c89db1b247b6b0dee68e4df226c11b95e5b7e38baffb5cfab +size 355 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-35@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-35@2x.png new file mode 100644 index 00000000..403ac1c2 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5ba7e84646c02d7e6d50ab56684bd0f263766cf9081669053ad04c33382d68 +size 18138 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-36.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-36.png new file mode 100644 index 00000000..105ac2ce --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cddb382bf9212c89db1b247b6b0dee68e4df226c11b95e5b7e38baffb5cfab +size 355 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-36@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-36@2x.png new file mode 100644 index 00000000..06ad58f1 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3498f826999af07f887412c3ab010a20dcf8f94fdb1d19dd4bcb7eb3d79949 +size 18138 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-37.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-37.png new file mode 100644 index 00000000..105ac2ce --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cddb382bf9212c89db1b247b6b0dee68e4df226c11b95e5b7e38baffb5cfab +size 355 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-37@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-37@2x.png new file mode 100644 index 00000000..c8e41325 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9de658057dad03cd96413d11d20827ed2d90c9c481c1d5376560449333cc7ce +size 20201 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-38.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-38.png new file mode 100644 index 00000000..105ac2ce --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cddb382bf9212c89db1b247b6b0dee68e4df226c11b95e5b7e38baffb5cfab +size 355 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-38@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-38@2x.png new file mode 100644 index 00000000..62606199 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2e41734e29473f2bde6e554fd1c72dc2e8a631ea3efa53a4f6acf5e4f3eda2 +size 20201 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-39.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-39.png new file mode 100644 index 00000000..105ac2ce --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cddb382bf9212c89db1b247b6b0dee68e4df226c11b95e5b7e38baffb5cfab +size 355 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-39@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-39@2x.png new file mode 100644 index 00000000..2c9933fb --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df82605671ad87175050ac865ab9ef8f2d3ca8a3abee282947f95326a8a39e2 +size 20201 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-4.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-4.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-40.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-40.png new file mode 100644 index 00000000..e0d7fd6b --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b272a190c01b8c6dd9ca8da4f8f2b897541c5c179c393168c4d67027e86488 +size 352 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-40@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-40@2x.png new file mode 100644 index 00000000..eeecaa0b --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a33e060c2e2aaf4c21d48949b0a6470de894e189a167a8637f7193c8aa271338 +size 18084 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-41.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-41.png new file mode 100644 index 00000000..b643dc4c --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740b3cd4413a8f4b24a63adec8c6b29ee3b69950acab53a9a980a5364f8fe404 +size 350 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-41@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-41@2x.png new file mode 100644 index 00000000..28272e2b --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd85e31586cf8416060c32852e835d64174961f23b745b59bfe35408d4952467 +size 18009 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-42.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-42.png new file mode 100644 index 00000000..45f31000 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d992b61a62a4b6ce835dffb10cd88fd22df419e48f7acb1ba6e334673ec4b51b +size 349 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-42@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-42@2x.png new file mode 100644 index 00000000..1ae1575f --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf31e1f57a4693ec893b5512eacaf2ed3af86e6cf666d898e2743e98630c815 +size 18002 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-43.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-43.png new file mode 100644 index 00000000..3e2232e7 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ae286acdd1f9dcb988eca206d6c7dbb8e4afc75794f8acaf62eb6f0396ea57 +size 341 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-43@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-43@2x.png new file mode 100644 index 00000000..3692612d --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8c111ed97ef3f831d10b44097b6162e62e09be988c878788900ea9bea6a889 +size 17953 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-44.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-44.png new file mode 100644 index 00000000..36955315 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e39e62739b6bb1a7d987036565067d07bbabd781748a9e4f093f47951272914 +size 333 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-44@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-44@2x.png new file mode 100644 index 00000000..02935b8c --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6d086db3b6c7f66d9d63e2ceebcb96b88d27c9bca93b816b26b7d3c1ad3644 +size 17932 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-45.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-45.png new file mode 100644 index 00000000..937d047e --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00a1520a06b8200a1b960a6ef152b8442e2cc391da65f363ee4bc3ef9c3d29d +size 321 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-45@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-45@2x.png new file mode 100644 index 00000000..9bf8f76d --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1cec80904ba8ac48997b2dcaadfc74b24a087f814b70bd6948f2069a4c6ba32 +size 17766 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-46.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-46.png new file mode 100644 index 00000000..7c969aa9 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a1c8ec7e08cae61ea7e1f70149b447e68e90b33de033cbca482aac89ee21ec +size 308 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-46@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-46@2x.png new file mode 100644 index 00000000..4e9d7759 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45c9941c50fa0fe52d99ab2ad28efd8556228fc7fc89552d16ae0715d8ab1f2 +size 17485 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-47.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-47.png new file mode 100644 index 00000000..329696d2 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dde834d56cc427787ef459f73d4be61277e8297c8c16b761b2e5cf0519ce775 +size 296 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-47@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-47@2x.png new file mode 100644 index 00000000..5fb6ea7a --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8a8c747ef9291394e5cbd661fcda2ace1516e5e3216cbc55c5df67c74961d2 +size 17104 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-48.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-48.png new file mode 100644 index 00000000..cf40d472 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e19a4a4d69df25460126b25f23184534a9a30edace128db43650fac5e027f4 +size 247 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-48@2x.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-48@2x.png new file mode 100644 index 00000000..09f9445b --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e880021dd0974a777b84ffac0d5770a4c27563ca95ef8e8df8fcc12f67030d72 +size 16612 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-49.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-49.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-5.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-5.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-50.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-50.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-51.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-51.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-52.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-52.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-53.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-53.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-54.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-54.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-55.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-55.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-56.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-56.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-57.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-57.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-58.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-58.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-59.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-59.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-6.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-6.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-7.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-7.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-8.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-8.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint-9.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint-9.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/followpoints/karcher/followpoint.png b/Skins/hddthr_aristia/followpoints/karcher/followpoint.png new file mode 100644 index 00000000..3f8b8a90 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/karcher/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b868855034f6d92bedd7126039062f29ce86b6c28e74b713e22aad135e1316d +size 67 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-0.png b/Skins/hddthr_aristia/followpoints/original/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-1.png b/Skins/hddthr_aristia/followpoints/original/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-11.png b/Skins/hddthr_aristia/followpoints/original/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-12.png b/Skins/hddthr_aristia/followpoints/original/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-13.png b/Skins/hddthr_aristia/followpoints/original/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-14.png b/Skins/hddthr_aristia/followpoints/original/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-15.png b/Skins/hddthr_aristia/followpoints/original/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-16.png b/Skins/hddthr_aristia/followpoints/original/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-17.png b/Skins/hddthr_aristia/followpoints/original/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-18.png b/Skins/hddthr_aristia/followpoints/original/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-19.png b/Skins/hddthr_aristia/followpoints/original/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-2.png b/Skins/hddthr_aristia/followpoints/original/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-20.png b/Skins/hddthr_aristia/followpoints/original/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-21.png b/Skins/hddthr_aristia/followpoints/original/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-22.png b/Skins/hddthr_aristia/followpoints/original/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-23.png b/Skins/hddthr_aristia/followpoints/original/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-3.png b/Skins/hddthr_aristia/followpoints/original/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-4.png b/Skins/hddthr_aristia/followpoints/original/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-5.png b/Skins/hddthr_aristia/followpoints/original/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-6.png b/Skins/hddthr_aristia/followpoints/original/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-7.png b/Skins/hddthr_aristia/followpoints/original/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-8.png b/Skins/hddthr_aristia/followpoints/original/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint-9.png b/Skins/hddthr_aristia/followpoints/original/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/hddthr_aristia/followpoints/original/followpoint.png b/Skins/hddthr_aristia/followpoints/original/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/hddthr_aristia/followpoints/original/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/hddthr_aristia/go.png b/Skins/hddthr_aristia/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/gos.ogg b/Skins/hddthr_aristia/gos.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/hddthr_aristia/hit0.png b/Skins/hddthr_aristia/hit0.png new file mode 100644 index 00000000..a964edec --- /dev/null +++ b/Skins/hddthr_aristia/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e98979eed17ae293fde5a7c2317f603830c1c99f98f5618c2df1a4adadea68c +size 1417 diff --git a/Skins/hddthr_aristia/hit100.png b/Skins/hddthr_aristia/hit100.png new file mode 100644 index 00000000..cee44962 --- /dev/null +++ b/Skins/hddthr_aristia/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b556641517431e6ccc2dd59b1dcae316c5c0cee46583174f69cb442133972c2 +size 1406 diff --git a/Skins/hddthr_aristia/hit100k.png b/Skins/hddthr_aristia/hit100k.png new file mode 100644 index 00000000..cee44962 --- /dev/null +++ b/Skins/hddthr_aristia/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b556641517431e6ccc2dd59b1dcae316c5c0cee46583174f69cb442133972c2 +size 1406 diff --git a/Skins/hddthr_aristia/hit300-0.png b/Skins/hddthr_aristia/hit300-0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/hddthr_aristia/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/hddthr_aristia/hit300-1.png b/Skins/hddthr_aristia/hit300-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/hit300.png b/Skins/hddthr_aristia/hit300.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/hddthr_aristia/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/hddthr_aristia/hit300@2x.png b/Skins/hddthr_aristia/hit300@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/hit300g-0.png b/Skins/hddthr_aristia/hit300g-0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/hddthr_aristia/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/hddthr_aristia/hit300g-1.png b/Skins/hddthr_aristia/hit300g-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/hit300g.png b/Skins/hddthr_aristia/hit300g.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/hddthr_aristia/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/hddthr_aristia/hit300g@2x.png b/Skins/hddthr_aristia/hit300g@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/hit300k-0.png b/Skins/hddthr_aristia/hit300k-0.png new file mode 100644 index 00000000..1140dff3 --- /dev/null +++ b/Skins/hddthr_aristia/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb406eeeb5fbac52983a9325b77b128535479c9777b9c21ce0169a1231c20a +size 740 diff --git a/Skins/hddthr_aristia/hit300k-1.png b/Skins/hddthr_aristia/hit300k-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/hit300k.png b/Skins/hddthr_aristia/hit300k.png new file mode 100644 index 00000000..2ba21d2f --- /dev/null +++ b/Skins/hddthr_aristia/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4e5364fde9722ead8b215e104c1216ee838c35b470334485f21ab93721b267 +size 2792 diff --git a/Skins/hddthr_aristia/hit300k@2x.png b/Skins/hddthr_aristia/hit300k@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/hit300k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/hit50.png b/Skins/hddthr_aristia/hit50.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/hddthr_aristia/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/hddthr_aristia/hit50k.png b/Skins/hddthr_aristia/hit50k.png new file mode 100644 index 00000000..27e6084a --- /dev/null +++ b/Skins/hddthr_aristia/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca04be2afe310ebb2edecf18d67f39963f82212eccce8bb78c8b85ccb67100db +size 1392 diff --git a/Skins/hddthr_aristia/hitcircle.png b/Skins/hddthr_aristia/hitcircle.png new file mode 100644 index 00000000..e01478ee --- /dev/null +++ b/Skins/hddthr_aristia/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb886360206184b3319a4f1d3fb66760bcbccccdc6e0195b2d48951b050c7520 +size 4611 diff --git a/Skins/hddthr_aristia/hitcircleoverlay.png b/Skins/hddthr_aristia/hitcircleoverlay.png new file mode 100644 index 00000000..27093a5e --- /dev/null +++ b/Skins/hddthr_aristia/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e94c08069c79e055ae429efad72c30124222fbb059128587dd59b0b8850d670 +size 14720 diff --git a/Skins/hddthr_aristia/hitcircleoverlay_.png b/Skins/hddthr_aristia/hitcircleoverlay_.png new file mode 100644 index 00000000..27093a5e --- /dev/null +++ b/Skins/hddthr_aristia/hitcircleoverlay_.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e94c08069c79e055ae429efad72c30124222fbb059128587dd59b0b8850d670 +size 14720 diff --git a/Skins/hddthr_aristia/inputoverlay-background.png b/Skins/hddthr_aristia/inputoverlay-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/inputoverlay-key.png b/Skins/hddthr_aristia/inputoverlay-key.png new file mode 100644 index 00000000..33caff76 --- /dev/null +++ b/Skins/hddthr_aristia/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5978743c56996fec2d55895798ede368aaafdee00ca5b8d194e0c023f364d9 +size 1948 diff --git a/Skins/hddthr_aristia/key-press-1.mp3 b/Skins/hddthr_aristia/key-press-1.mp3 new file mode 100644 index 00000000..aa8d6808 --- /dev/null +++ b/Skins/hddthr_aristia/key-press-1.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f85f350232cb8397fc3351b0c9a33f0707a5f28a7d39e34ab1ff69a237a05b7 +size 4219 diff --git a/Skins/hddthr_aristia/key-press-2.mp3 b/Skins/hddthr_aristia/key-press-2.mp3 new file mode 100644 index 00000000..bca4fe49 --- /dev/null +++ b/Skins/hddthr_aristia/key-press-2.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7744360d5cfce6f9ba58302d965b61137def752083d216398072fb9f23c8cb6f +size 4123 diff --git a/Skins/hddthr_aristia/key-press-3.mp3 b/Skins/hddthr_aristia/key-press-3.mp3 new file mode 100644 index 00000000..6153c748 --- /dev/null +++ b/Skins/hddthr_aristia/key-press-3.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3197455453adc28e2975f98ebaf9e93c2bf1f99de490289e7de5cbbc8ec786 +size 4363 diff --git a/Skins/hddthr_aristia/key-press-4.mp3 b/Skins/hddthr_aristia/key-press-4.mp3 new file mode 100644 index 00000000..014a1fde --- /dev/null +++ b/Skins/hddthr_aristia/key-press-4.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366e6420e58fb9b14c351c8a6f798f5d3b6a3db6ab78f092904ca9581eff8f3d +size 4075 diff --git a/Skins/hddthr_aristia/menu-back-0@2x.png b/Skins/hddthr_aristia/menu-back-0@2x.png new file mode 100644 index 00000000..5d0a1623 --- /dev/null +++ b/Skins/hddthr_aristia/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b2a7626609e8e66f36981195714ebda1f0608fa8c54f0004eaa0530e6a45c0 +size 4730 diff --git a/Skins/hddthr_aristia/menu-back-1@2x.png b/Skins/hddthr_aristia/menu-back-1@2x.png new file mode 100644 index 00000000..68024e45 --- /dev/null +++ b/Skins/hddthr_aristia/menu-back-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a30e379ada7d12083e823486dad3b3e7e48adbf74efd35af186c81e96d016b +size 5422 diff --git a/Skins/hddthr_aristia/menu-back-2@2x.png b/Skins/hddthr_aristia/menu-back-2@2x.png new file mode 100644 index 00000000..c10935b2 --- /dev/null +++ b/Skins/hddthr_aristia/menu-back-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724c8e6d90f2da8b0d84a105148f5575d7c7000e5ba8802505806e7dfc64eb98 +size 4953 diff --git a/Skins/hddthr_aristia/menu-back-3@2x.png b/Skins/hddthr_aristia/menu-back-3@2x.png new file mode 100644 index 00000000..bf93b2f8 --- /dev/null +++ b/Skins/hddthr_aristia/menu-back-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7ebda9d8face3b72786e3b6edb78b843e7752b8ea2dd8740786e60d0cdb737 +size 5435 diff --git a/Skins/hddthr_aristia/menu-back.png b/Skins/hddthr_aristia/menu-back.png new file mode 100644 index 00000000..300f7590 --- /dev/null +++ b/Skins/hddthr_aristia/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1598a9715f4d7d15c5ceb714468e1e6992f9f559f44de14b423d9b3b451a626 +size 110 diff --git a/Skins/hddthr_aristia/menu-background.jpg b/Skins/hddthr_aristia/menu-background.jpg new file mode 100644 index 00000000..e7f43ef0 --- /dev/null +++ b/Skins/hddthr_aristia/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4a3189e507a67671b286700fb960a002a0214d1b13f7834c49cf5afd0594b6 +size 1495327 diff --git a/Skins/hddthr_aristia/menu-button-background.png b/Skins/hddthr_aristia/menu-button-background.png new file mode 100644 index 00000000..3221697b --- /dev/null +++ b/Skins/hddthr_aristia/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a12068e501ea4ed8abebf4ab0736ff1a87d64a6c9cd32827a54cf78b4c6bd8 +size 114 diff --git a/Skins/hddthr_aristia/menuhit.mp3 b/Skins/hddthr_aristia/menuhit.mp3 new file mode 100644 index 00000000..be8fe3b3 --- /dev/null +++ b/Skins/hddthr_aristia/menuhit.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93b163291062ddce0932968e221c5a4ba641da59cec6eed28d321aa6240fcc9 +size 3898 diff --git a/Skins/hddthr_aristia/mode-osu-small.png b/Skins/hddthr_aristia/mode-osu-small.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/hddthr_aristia/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/hddthr_aristia/mode-osu.png b/Skins/hddthr_aristia/mode-osu.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/hddthr_aristia/mode-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/hddthr_aristia/multi-skipped.png b/Skins/hddthr_aristia/multi-skipped.png new file mode 100644 index 00000000..b7e9891e --- /dev/null +++ b/Skins/hddthr_aristia/multi-skipped.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d0bf02f27fafb7b1f7d1c895ea80c7d5de8fa0aa37051175531a11a5120d31 +size 1327 diff --git a/Skins/hddthr_aristia/normal-hitclap.ogg b/Skins/hddthr_aristia/normal-hitclap.ogg new file mode 100644 index 00000000..16c216f5 --- /dev/null +++ b/Skins/hddthr_aristia/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7c4e85c470981aab4f1c02c20658ceb75604bb790c5b0edb87d6677d8f3a68 +size 5151 diff --git a/Skins/hddthr_aristia/normal-hitfinish.ogg b/Skins/hddthr_aristia/normal-hitfinish.ogg new file mode 100644 index 00000000..a9b9220c --- /dev/null +++ b/Skins/hddthr_aristia/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286bbe736db9135608505fba13a4a710bcec9f3721e82c56104d499068cdbeca +size 5763 diff --git a/Skins/hddthr_aristia/normal-hitnormal.ogg b/Skins/hddthr_aristia/normal-hitnormal.ogg new file mode 100644 index 00000000..91cab8a8 --- /dev/null +++ b/Skins/hddthr_aristia/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8b0f8ff1fe03b37ea47ddeb24c94e71d507d053d900f4d4caa2edd28bc9eab +size 6271 diff --git a/Skins/hddthr_aristia/normal-hitwhistle.wav b/Skins/hddthr_aristia/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/hddthr_aristia/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/hddthr_aristia/normal-sliderslide.wav b/Skins/hddthr_aristia/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/hddthr_aristia/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/hddthr_aristia/normal-slidertick.ogg b/Skins/hddthr_aristia/normal-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/hddthr_aristia/normal-sliderwhistle.wav b/Skins/hddthr_aristia/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/hddthr_aristia/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/hddthr_aristia/pause-back.png b/Skins/hddthr_aristia/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/hddthr_aristia/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/hddthr_aristia/pause-continue.png b/Skins/hddthr_aristia/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/hddthr_aristia/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/hddthr_aristia/pause-replay.png b/Skins/hddthr_aristia/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/hddthr_aristia/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/hddthr_aristia/pause-retry.png b/Skins/hddthr_aristia/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/hddthr_aristia/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/hddthr_aristia/play-skip.png b/Skins/hddthr_aristia/play-skip.png new file mode 100644 index 00000000..43b37215 --- /dev/null +++ b/Skins/hddthr_aristia/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97297083242cd7dcb6aa4bfe62130ad63d88c97797d21dbd8b86df1fe2604264 +size 394 diff --git a/Skins/hddthr_aristia/play-unranked.png b/Skins/hddthr_aristia/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/play-warningarrow.png b/Skins/hddthr_aristia/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/hddthr_aristia/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/hddthr_aristia/ranking-a-small.png b/Skins/hddthr_aristia/ranking-a-small.png new file mode 100644 index 00000000..1abceff4 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5edf1aebbef7a8f8a9a919cc524aa89451a63606b27b341e7b9354319408a0 +size 1204 diff --git a/Skins/hddthr_aristia/ranking-a.png b/Skins/hddthr_aristia/ranking-a.png new file mode 100644 index 00000000..393836df --- /dev/null +++ b/Skins/hddthr_aristia/ranking-a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478a68dde7e61114c3f9c1629dc86b2539129aecdcc24ab4ccd3294d4be08f85 +size 3074 diff --git a/Skins/hddthr_aristia/ranking-accuracy.png b/Skins/hddthr_aristia/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/hddthr_aristia/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/hddthr_aristia/ranking-b-small.png b/Skins/hddthr_aristia/ranking-b-small.png new file mode 100644 index 00000000..621ca5ea --- /dev/null +++ b/Skins/hddthr_aristia/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dabd351de7c3b472cd59e4011399cec86e4392b9ae8a5436ace32367e61378d +size 1151 diff --git a/Skins/hddthr_aristia/ranking-b.png b/Skins/hddthr_aristia/ranking-b.png new file mode 100644 index 00000000..8e281c78 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e9abeac11db88cad3edf87e08831dbe101173f436f80b4b88b42beeffa4c95 +size 2492 diff --git a/Skins/hddthr_aristia/ranking-c-small.png b/Skins/hddthr_aristia/ranking-c-small.png new file mode 100644 index 00000000..5bbd6542 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81031c0b34b43a74bbedeaa2af97dc3037177f9d755116217eae8c82d31bccd6 +size 1240 diff --git a/Skins/hddthr_aristia/ranking-c.png b/Skins/hddthr_aristia/ranking-c.png new file mode 100644 index 00000000..13b8d602 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b476ddbe05492af887ed326b84a6f1d1c26f54e7114b1991a9ce601d48075dca +size 3532 diff --git a/Skins/hddthr_aristia/ranking-d-small.png b/Skins/hddthr_aristia/ranking-d-small.png new file mode 100644 index 00000000..e4c87d31 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384a428b2f3426a1f2fbfeca46a4c76d436182cd96d53f124582fe12f7947a1b +size 1179 diff --git a/Skins/hddthr_aristia/ranking-d.png b/Skins/hddthr_aristia/ranking-d.png new file mode 100644 index 00000000..3dec68b9 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cae61380ce97a24f7b89dbfe0b7780afe5d3aaebb3135747d7d90e53482791 +size 2530 diff --git a/Skins/hddthr_aristia/ranking-graph.png b/Skins/hddthr_aristia/ranking-graph.png new file mode 100644 index 00000000..7451eef8 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f71168c0b1ab5673af9872ad8860fbe7968eb444922b0952b773ce7a8e02bf7 +size 112 diff --git a/Skins/hddthr_aristia/ranking-maxcombo.png b/Skins/hddthr_aristia/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/hddthr_aristia/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/hddthr_aristia/ranking-panel.png b/Skins/hddthr_aristia/ranking-panel.png new file mode 100644 index 00000000..4882c486 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c740a039b639e2186e2190f57a4b10124f4f60f7a2690a080c2b99d4d07abc50 +size 146 diff --git a/Skins/hddthr_aristia/ranking-panel@2x.png b/Skins/hddthr_aristia/ranking-panel@2x.png new file mode 100644 index 00000000..d142a16b --- /dev/null +++ b/Skins/hddthr_aristia/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40f78155becdf5c904c6ff10d59242e7b4e374ff81bfbf63259d1ed3a7b0325a +size 1199310 diff --git a/Skins/hddthr_aristia/ranking-perfect.png b/Skins/hddthr_aristia/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/hddthr_aristia/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/hddthr_aristia/ranking-s-small.png b/Skins/hddthr_aristia/ranking-s-small.png new file mode 100644 index 00000000..14770353 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-s-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d94bb0957794e607b6dcbc81064801c7c90e3a4c62db0cc7b22d000115c61ae +size 1262 diff --git a/Skins/hddthr_aristia/ranking-s.png b/Skins/hddthr_aristia/ranking-s.png new file mode 100644 index 00000000..46cce7d1 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176b4c8e1e3c4a0cd22b811efb0cc8b34bc991332fbb68e488e4a8ac64280669 +size 3401 diff --git a/Skins/hddthr_aristia/ranking-sh-small.png b/Skins/hddthr_aristia/ranking-sh-small.png new file mode 100644 index 00000000..7ab0217f --- /dev/null +++ b/Skins/hddthr_aristia/ranking-sh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5badb979f6852f020387b7dffc6abb3a68af842c15f35022e077e2ae472c4b19 +size 1262 diff --git a/Skins/hddthr_aristia/ranking-sh.png b/Skins/hddthr_aristia/ranking-sh.png new file mode 100644 index 00000000..04593acb --- /dev/null +++ b/Skins/hddthr_aristia/ranking-sh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e145c88c81556f7d5ff3ad5a363265d8699a8dfc1482524c32516aa3f9dde60a +size 3401 diff --git a/Skins/hddthr_aristia/ranking-title.png b/Skins/hddthr_aristia/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/hddthr_aristia/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/hddthr_aristia/ranking-winner.png b/Skins/hddthr_aristia/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/hddthr_aristia/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/hddthr_aristia/ranking-x-small.png b/Skins/hddthr_aristia/ranking-x-small.png new file mode 100644 index 00000000..fa3cc7d3 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-x-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258b404bbf040770dc30e0124bed33bd865cfb5b57cb317d491c90b10171640d +size 1199 diff --git a/Skins/hddthr_aristia/ranking-x.png b/Skins/hddthr_aristia/ranking-x.png new file mode 100644 index 00000000..43c8b765 --- /dev/null +++ b/Skins/hddthr_aristia/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b0d1e8c788dff20f4340dbc58b01d32055c66b9d3441ba8e924a453997ff11 +size 2864 diff --git a/Skins/hddthr_aristia/ranking-xh-small.png b/Skins/hddthr_aristia/ranking-xh-small.png new file mode 100644 index 00000000..3039873b --- /dev/null +++ b/Skins/hddthr_aristia/ranking-xh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98646b05fdeeeabb7b98c19c4d957bd81e4bd91317061136a1b052cc920e655 +size 1199 diff --git a/Skins/hddthr_aristia/ranking-xh.png b/Skins/hddthr_aristia/ranking-xh.png new file mode 100644 index 00000000..f7c7e7ea --- /dev/null +++ b/Skins/hddthr_aristia/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95651000313a174438bc4f09184c34143d9245ce8ed7a4f0813164260c17aad +size 2864 diff --git a/Skins/hddthr_aristia/ready.png b/Skins/hddthr_aristia/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/readys.ogg b/Skins/hddthr_aristia/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/hddthr_aristia/reversearrow.png b/Skins/hddthr_aristia/reversearrow.png new file mode 100644 index 00000000..bc91804e --- /dev/null +++ b/Skins/hddthr_aristia/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91859a5818d90092adbfc1dc25d6aa819133fb296b73d420d3cae69516c8319 +size 3173 diff --git a/Skins/hddthr_aristia/reversearrow@2x.png b/Skins/hddthr_aristia/reversearrow@2x.png new file mode 100644 index 00000000..556f7a18 --- /dev/null +++ b/Skins/hddthr_aristia/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c786a9909d65b60db2dc4e15aa7255c4d0ddc4b645aa1f74d94348108286e99 +size 10519 diff --git a/Skins/hddthr_aristia/score-0.png b/Skins/hddthr_aristia/score-0.png new file mode 100644 index 00000000..7fc0e18f --- /dev/null +++ b/Skins/hddthr_aristia/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b0d7c72628f19ff3baf1c38ded5acdf163c38d8bdece82d957b029c9eb97e9 +size 608 diff --git a/Skins/hddthr_aristia/score-0@2x.png b/Skins/hddthr_aristia/score-0@2x.png new file mode 100644 index 00000000..3f95818b --- /dev/null +++ b/Skins/hddthr_aristia/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3147b3da6e3aa30a6931a3cd3d023e6abc6ebaf4cac62297b1c708e879dc1b3b +size 1218 diff --git a/Skins/hddthr_aristia/score-1.png b/Skins/hddthr_aristia/score-1.png new file mode 100644 index 00000000..27d0393c --- /dev/null +++ b/Skins/hddthr_aristia/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb3b1ae3588cba17faf7e3120515768988cd15a70c3773c48d215facba898c48 +size 273 diff --git a/Skins/hddthr_aristia/score-1@2x.png b/Skins/hddthr_aristia/score-1@2x.png new file mode 100644 index 00000000..6457a68d --- /dev/null +++ b/Skins/hddthr_aristia/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d71b9af31e67079e0ae5a57c0d3ce1690d57fb44a23903f26179839ce7174b +size 407 diff --git a/Skins/hddthr_aristia/score-2.png b/Skins/hddthr_aristia/score-2.png new file mode 100644 index 00000000..ab9b18fc --- /dev/null +++ b/Skins/hddthr_aristia/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d33b491ac8346cfdcd2546979be8f6b3c30c9ee471c7e0e0ffb4893340b6fa0 +size 505 diff --git a/Skins/hddthr_aristia/score-2@2x.png b/Skins/hddthr_aristia/score-2@2x.png new file mode 100644 index 00000000..e47dde8e --- /dev/null +++ b/Skins/hddthr_aristia/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f64be1307cfe674793a19ab5c884744889fd18f7876d6873ab9c68eea8b71d +size 933 diff --git a/Skins/hddthr_aristia/score-3.png b/Skins/hddthr_aristia/score-3.png new file mode 100644 index 00000000..6a114949 --- /dev/null +++ b/Skins/hddthr_aristia/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f047044ea4788c55c54031e3f0385b6d456ff923e9a6409704c214835df46bca +size 633 diff --git a/Skins/hddthr_aristia/score-3@2x.png b/Skins/hddthr_aristia/score-3@2x.png new file mode 100644 index 00000000..c30942df --- /dev/null +++ b/Skins/hddthr_aristia/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e9bff4380ddafbd7e82259468ee1dc6f99ca20b8c01d18873e68b6ef3800ac +size 1240 diff --git a/Skins/hddthr_aristia/score-4.png b/Skins/hddthr_aristia/score-4.png new file mode 100644 index 00000000..2d900c22 --- /dev/null +++ b/Skins/hddthr_aristia/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494b558637a072a8f0a27318d8d7ebe95277d4d9d96c8280c1415b653a844d56 +size 405 diff --git a/Skins/hddthr_aristia/score-4@2x.png b/Skins/hddthr_aristia/score-4@2x.png new file mode 100644 index 00000000..26417a08 --- /dev/null +++ b/Skins/hddthr_aristia/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e6deb5aa17aa156ae1c8601b379fc01a590da48448bfe69747c1e36bc86ed5 +size 717 diff --git a/Skins/hddthr_aristia/score-5.png b/Skins/hddthr_aristia/score-5.png new file mode 100644 index 00000000..ce0b75a4 --- /dev/null +++ b/Skins/hddthr_aristia/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04058f8809a06313d60c0e94fd5b51ad0578b3595ef1e926605db4c347bf209e +size 581 diff --git a/Skins/hddthr_aristia/score-5@2x.png b/Skins/hddthr_aristia/score-5@2x.png new file mode 100644 index 00000000..2224f5a1 --- /dev/null +++ b/Skins/hddthr_aristia/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e182e2342f70168225c7f95d7f0db5c9d7655fd72019e26045eda708c510aaae +size 1024 diff --git a/Skins/hddthr_aristia/score-6.png b/Skins/hddthr_aristia/score-6.png new file mode 100644 index 00000000..94156c6d --- /dev/null +++ b/Skins/hddthr_aristia/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55d042d08cfbefedb7689e680bbf6440f3cfc74ff9e98bd46c10933e8d3cd489 +size 620 diff --git a/Skins/hddthr_aristia/score-6@2x.png b/Skins/hddthr_aristia/score-6@2x.png new file mode 100644 index 00000000..da1fe70f --- /dev/null +++ b/Skins/hddthr_aristia/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d9573ef9c9470a2315d7f44b07bd746a42601023c0b232e699684e0857b560 +size 1171 diff --git a/Skins/hddthr_aristia/score-7.png b/Skins/hddthr_aristia/score-7.png new file mode 100644 index 00000000..6634203a --- /dev/null +++ b/Skins/hddthr_aristia/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a44e109041ed5d69da1954951ec7735eef9725dd654d296596068de5529c0a +size 466 diff --git a/Skins/hddthr_aristia/score-7@2x.png b/Skins/hddthr_aristia/score-7@2x.png new file mode 100644 index 00000000..5edaedc3 --- /dev/null +++ b/Skins/hddthr_aristia/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136e2904ca4f36bb922ccebdfe34bf89915fa2675fc6085df4144a0ffd01e413 +size 770 diff --git a/Skins/hddthr_aristia/score-8.png b/Skins/hddthr_aristia/score-8.png new file mode 100644 index 00000000..805ca79c --- /dev/null +++ b/Skins/hddthr_aristia/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b920322c5a69111844f8c9c0cba46ae679fb40daafc3082753894ead5494c3e2 +size 652 diff --git a/Skins/hddthr_aristia/score-8@2x.png b/Skins/hddthr_aristia/score-8@2x.png new file mode 100644 index 00000000..fb2b859a --- /dev/null +++ b/Skins/hddthr_aristia/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b137f3946ab2d235c4c372a0a705839f271dc12b92e03e4c6872e8dca40bd5b +size 1345 diff --git a/Skins/hddthr_aristia/score-9.png b/Skins/hddthr_aristia/score-9.png new file mode 100644 index 00000000..768206f9 --- /dev/null +++ b/Skins/hddthr_aristia/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40c0c07423ec4d955c17e42e25f5729cd2b09bbca3a20d6648731aad750f727 +size 605 diff --git a/Skins/hddthr_aristia/score-9@2x.png b/Skins/hddthr_aristia/score-9@2x.png new file mode 100644 index 00000000..e286545b --- /dev/null +++ b/Skins/hddthr_aristia/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3758007e32cd04754e0f5ca182e484c93f7c08e9624123d66a8af8484ac3b9e +size 1160 diff --git a/Skins/hddthr_aristia/score-comma.png b/Skins/hddthr_aristia/score-comma.png new file mode 100644 index 00000000..db4a9ab5 --- /dev/null +++ b/Skins/hddthr_aristia/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82dcf9ff42a2b5e1e824312ab78f7e2cc95a38e9200cea43807f74b6ca9e8227 +size 134 diff --git a/Skins/hddthr_aristia/score-dot.png b/Skins/hddthr_aristia/score-dot.png new file mode 100644 index 00000000..0f5bf358 --- /dev/null +++ b/Skins/hddthr_aristia/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7bb3561942006881b44c15c67bcdfb6a814a404f351d92b0aa4b57438a169a +size 133 diff --git a/Skins/hddthr_aristia/score-percent.png b/Skins/hddthr_aristia/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/score-x.png b/Skins/hddthr_aristia/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/scorebar-bg.png b/Skins/hddthr_aristia/scorebar-bg.png new file mode 100644 index 00000000..8ce2fede --- /dev/null +++ b/Skins/hddthr_aristia/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f289d276d2dc570ad31c15a7792b853dc29f27ca30f2d16b7c53668a423a5c +size 52630 diff --git a/Skins/hddthr_aristia/scorebar-bg@2x.png b/Skins/hddthr_aristia/scorebar-bg@2x.png new file mode 100644 index 00000000..0e477443 --- /dev/null +++ b/Skins/hddthr_aristia/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d82afc28bb2ae99704ec1005a23e810f147211e04c0b4a8d3230243904bf3a +size 78352 diff --git a/Skins/hddthr_aristia/scorebar-colour.png b/Skins/hddthr_aristia/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/scorebar-colour@2x_.png b/Skins/hddthr_aristia/scorebar-colour@2x_.png new file mode 100644 index 00000000..d9ff44b7 --- /dev/null +++ b/Skins/hddthr_aristia/scorebar-colour@2x_.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11b38a4ee8589027c563d568f4aa67fb6d5ce4cba84ae623a16f9c25f337567 +size 29662 diff --git a/Skins/hddthr_aristia/scorebar-marker.png b/Skins/hddthr_aristia/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/scoreentry-0.png b/Skins/hddthr_aristia/scoreentry-0.png new file mode 100644 index 00000000..b68dcb8b --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ff7805b33a95c776b57adad7764263059c632dd91e4d67f9a7ffea5ca90172c +size 461 diff --git a/Skins/hddthr_aristia/scoreentry-0@2x.png b/Skins/hddthr_aristia/scoreentry-0@2x.png new file mode 100644 index 00000000..14de8563 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:effeae99f0cd73c5c00dff889e225d845fb796d64b0be5dbbf591cd76e180053 +size 856 diff --git a/Skins/hddthr_aristia/scoreentry-1.png b/Skins/hddthr_aristia/scoreentry-1.png new file mode 100644 index 00000000..ce860e1d --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c81a405fc92ff5522a54ef95d89b2e51644ea7f17960c26880a18bb4f6b5d9f +size 332 diff --git a/Skins/hddthr_aristia/scoreentry-1@2x.png b/Skins/hddthr_aristia/scoreentry-1@2x.png new file mode 100644 index 00000000..bbe46c0b --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee025f47e7e8fa032e05ec0a6df989709b97ccffc3472f72dee7c639282b9e3 +size 604 diff --git a/Skins/hddthr_aristia/scoreentry-2.png b/Skins/hddthr_aristia/scoreentry-2.png new file mode 100644 index 00000000..9f85372f --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0c1dcd0e14ce02df5772b93384306c1f42e618ace882d80e0fc199ca869cb9 +size 434 diff --git a/Skins/hddthr_aristia/scoreentry-2@2x.png b/Skins/hddthr_aristia/scoreentry-2@2x.png new file mode 100644 index 00000000..627ba8c2 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad26e1792fe33e8876b5721bec6aa3013a64a41872098fbd39c42afc88c61b3 +size 692 diff --git a/Skins/hddthr_aristia/scoreentry-3.png b/Skins/hddthr_aristia/scoreentry-3.png new file mode 100644 index 00000000..8052af49 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca2abb99b33cd2ad3e22175f8379c76bc58a206bc87b63ff4fa16a871dc8e47 +size 446 diff --git a/Skins/hddthr_aristia/scoreentry-3@2x.png b/Skins/hddthr_aristia/scoreentry-3@2x.png new file mode 100644 index 00000000..ebaea443 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9104205dc45da440837e78cc9912b30aaefabfbee322a3aa4c62bfc556d909b +size 793 diff --git a/Skins/hddthr_aristia/scoreentry-4.png b/Skins/hddthr_aristia/scoreentry-4.png new file mode 100644 index 00000000..b4ad2f05 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad2b94b9645248cb50b1f4d27f552db3e2ab0e35509f3b95349aecf4992a1120 +size 417 diff --git a/Skins/hddthr_aristia/scoreentry-4@2x.png b/Skins/hddthr_aristia/scoreentry-4@2x.png new file mode 100644 index 00000000..6ff48be0 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b8a3bdbdffc81cb4598db116de556721185db6590349e6e57b70a6dd7e1433 +size 677 diff --git a/Skins/hddthr_aristia/scoreentry-5.png b/Skins/hddthr_aristia/scoreentry-5.png new file mode 100644 index 00000000..e4c47feb --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb54be8dcfb6e7f614abc2ec73a218e7abec565d6effaec1f0f55bb2c077e19b +size 434 diff --git a/Skins/hddthr_aristia/scoreentry-5@2x.png b/Skins/hddthr_aristia/scoreentry-5@2x.png new file mode 100644 index 00000000..0639b620 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d1d625f2a75f55b30a4d06be0cc1342bef0ee1a293db28391faf0ae33393885 +size 780 diff --git a/Skins/hddthr_aristia/scoreentry-6.png b/Skins/hddthr_aristia/scoreentry-6.png new file mode 100644 index 00000000..0f4ed79a --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e143580fc5a1edf1f89dad6008887e16063417bfc0f07ea9e8888ef5a2250d2 +size 451 diff --git a/Skins/hddthr_aristia/scoreentry-6@2x.png b/Skins/hddthr_aristia/scoreentry-6@2x.png new file mode 100644 index 00000000..aed1313b --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:644c7c8b2084ecc0c5126dbb7e8ad2e70651602d5f7e659cbafdbee32669b1db +size 881 diff --git a/Skins/hddthr_aristia/scoreentry-7.png b/Skins/hddthr_aristia/scoreentry-7.png new file mode 100644 index 00000000..0a844bf8 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f6c6bfd90c297926d5014c53b54b3a353ecf60d93c1adc4c2f9aa3a536b0dfb +size 377 diff --git a/Skins/hddthr_aristia/scoreentry-7@2x.png b/Skins/hddthr_aristia/scoreentry-7@2x.png new file mode 100644 index 00000000..b0e29118 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939e6acd79b17115669b697e2fde48298ef2e2942d4dafcd2198ef4fdd7a3ca7 +size 643 diff --git a/Skins/hddthr_aristia/scoreentry-8.png b/Skins/hddthr_aristia/scoreentry-8.png new file mode 100644 index 00000000..b05a8e82 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55040cf9669d467c1f1f3db1d35136ae23df8dad1aac3f7290a00d3778a6446a +size 487 diff --git a/Skins/hddthr_aristia/scoreentry-8@2x.png b/Skins/hddthr_aristia/scoreentry-8@2x.png new file mode 100644 index 00000000..3268aeef --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c16699672755876ff28ed69abc474a415dbecc8099afae172e43bd15250cf665 +size 831 diff --git a/Skins/hddthr_aristia/scoreentry-9.png b/Skins/hddthr_aristia/scoreentry-9.png new file mode 100644 index 00000000..500943aa --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fccee09952b7a9914b6d50dd51fb904fbc7c7827dde5293184d4c73812b5a25 +size 460 diff --git a/Skins/hddthr_aristia/scoreentry-9@2x.png b/Skins/hddthr_aristia/scoreentry-9@2x.png new file mode 100644 index 00000000..c8981597 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2eac26e22bda855239034bb9b0e954cb4b68772d59fe434613d6d790271a60a +size 915 diff --git a/Skins/hddthr_aristia/scoreentry-comma.png b/Skins/hddthr_aristia/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/hddthr_aristia/scoreentry-dot.png b/Skins/hddthr_aristia/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/hddthr_aristia/scoreentry-percent.png b/Skins/hddthr_aristia/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/scoreentry-x.png b/Skins/hddthr_aristia/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/selection-mod-autoplay.png b/Skins/hddthr_aristia/selection-mod-autoplay.png new file mode 100644 index 00000000..d038b109 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91323b06f800618e6ec4f03e15b8446853c3910663e7e358e3e91554a9092fbb +size 1434 diff --git a/Skins/hddthr_aristia/selection-mod-cinema.png b/Skins/hddthr_aristia/selection-mod-cinema.png new file mode 100644 index 00000000..a07e288a --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f93d840e63b2f389041d1205146cd6b4ac14046b67318abbf3f7fe13c359388 +size 1516 diff --git a/Skins/hddthr_aristia/selection-mod-doubletime.png b/Skins/hddthr_aristia/selection-mod-doubletime.png new file mode 100644 index 00000000..dc096498 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbcc499d6675e2c7869c339418148606b4215f4da6a10be03d84c0cdfbe4ff0 +size 1406 diff --git a/Skins/hddthr_aristia/selection-mod-easy.png b/Skins/hddthr_aristia/selection-mod-easy.png new file mode 100644 index 00000000..5582ec7d --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef93fba675b676f4fb378287175067d6e0d2b1bca10a57ae15778fa57c3c463 +size 1496 diff --git a/Skins/hddthr_aristia/selection-mod-flashlight.png b/Skins/hddthr_aristia/selection-mod-flashlight.png new file mode 100644 index 00000000..9af77228 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee4b3d556784214720d3a63f38b1e0f995eaa10805ec87ae7d86c40e852ca36 +size 1201 diff --git a/Skins/hddthr_aristia/selection-mod-halftime.png b/Skins/hddthr_aristia/selection-mod-halftime.png new file mode 100644 index 00000000..8cdca48f --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95975b94940934c336ecb449b473a6d14b61c40be2763c589344078b7c8601f9 +size 1331 diff --git a/Skins/hddthr_aristia/selection-mod-hardrock.png b/Skins/hddthr_aristia/selection-mod-hardrock.png new file mode 100644 index 00000000..f51b8da7 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb51fabe6571d18deb33bed0686aab54a34fd78bdf6255b4e62fe290d803110a +size 1313 diff --git a/Skins/hddthr_aristia/selection-mod-hidden.png b/Skins/hddthr_aristia/selection-mod-hidden.png new file mode 100644 index 00000000..855eeb60 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d542cd57a165479d0387e7b143778688860ef68c11c3224e59b132b3b1d5ec +size 2395 diff --git a/Skins/hddthr_aristia/selection-mod-nightcore.png b/Skins/hddthr_aristia/selection-mod-nightcore.png new file mode 100644 index 00000000..7ace5501 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b0494682ae955c4d824f00bea65974cc3547a2005ceed343d3a3cb63fc5a5b +size 1471 diff --git a/Skins/hddthr_aristia/selection-mod-nofail.png b/Skins/hddthr_aristia/selection-mod-nofail.png new file mode 100644 index 00000000..4e9d1a69 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3445da66df2285326ba74b9d2f79706b66a449016b48bd659406f705c10af9f5 +size 1321 diff --git a/Skins/hddthr_aristia/selection-mod-perfect.png b/Skins/hddthr_aristia/selection-mod-perfect.png new file mode 100644 index 00000000..3635467e --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00550bf913681dec3733deaef5dad846eae7910574dfe3c47a9f813c588a2db1 +size 1455 diff --git a/Skins/hddthr_aristia/selection-mod-relax.png b/Skins/hddthr_aristia/selection-mod-relax.png new file mode 100644 index 00000000..9bee0c0d --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6de3d4522d6e4376a9af4e44fba549d46a55b6d73f3e4a8c0254f513aa2aaef +size 1179 diff --git a/Skins/hddthr_aristia/selection-mod-relax2.png b/Skins/hddthr_aristia/selection-mod-relax2.png new file mode 100644 index 00000000..a748970c --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa07cb1d208df5197d020fd82781e6d6a2ee43d59ab8ff8d54bfe4c31f15973 +size 1527 diff --git a/Skins/hddthr_aristia/selection-mod-scorev2.png b/Skins/hddthr_aristia/selection-mod-scorev2.png new file mode 100644 index 00000000..2a742f72 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ba7578bda14a99bf40bd3f05e7be442064603ebd68209f8dac91acbc457529 +size 1557 diff --git a/Skins/hddthr_aristia/selection-mod-spunout.png b/Skins/hddthr_aristia/selection-mod-spunout.png new file mode 100644 index 00000000..85e2f1f4 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17d429cb8c259d6f529c80a29747d899e34cb102b306c80615cacf11334b6af +size 1662 diff --git a/Skins/hddthr_aristia/selection-mod-suddendeath.png b/Skins/hddthr_aristia/selection-mod-suddendeath.png new file mode 100644 index 00000000..24ba5617 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a5abd369689d03ff574851aafca1e99ecb5649a190e710fa08908529acd6af +size 1657 diff --git a/Skins/hddthr_aristia/selection-mod-target.png b/Skins/hddthr_aristia/selection-mod-target.png new file mode 100644 index 00000000..7f8bedf3 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3a06a1d3571991a949a8a5941ec26f5fa7e2e09d0ab4ca478326ffe56e1745 +size 1426 diff --git a/Skins/hddthr_aristia/selection-mode-over.png b/Skins/hddthr_aristia/selection-mode-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/selection-mode.png b/Skins/hddthr_aristia/selection-mode.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/selection-mode@2x.png b/Skins/hddthr_aristia/selection-mode@2x.png new file mode 100644 index 00000000..2719284d --- /dev/null +++ b/Skins/hddthr_aristia/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4011c49fe9047ce4a2c3fd593a5ccf8523849e36167a5cfa2e89ddcb6dd54e15 +size 512907 diff --git a/Skins/hddthr_aristia/selection-mods-over.png b/Skins/hddthr_aristia/selection-mods-over.png new file mode 100644 index 00000000..19bf3e9a --- /dev/null +++ b/Skins/hddthr_aristia/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9e45bd521e1f952c1d19c8eacfcd8ced9795f5b06497c1bd6926b2a1c5e146 +size 111 diff --git a/Skins/hddthr_aristia/selection-mods.png b/Skins/hddthr_aristia/selection-mods.png new file mode 100644 index 00000000..1c0fdaed --- /dev/null +++ b/Skins/hddthr_aristia/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b459c8995c203faac7d6ec402ccd1f87bb7131c2c7f918bc66633439237be18 +size 4587 diff --git a/Skins/hddthr_aristia/selection-mods@2x.png b/Skins/hddthr_aristia/selection-mods@2x.png new file mode 100644 index 00000000..c14bea2e --- /dev/null +++ b/Skins/hddthr_aristia/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7320fabfcbd78aaf24c2cf688363abdd395d4ddec55003fa8894e4f97cb1f1d4 +size 10058 diff --git a/Skins/hddthr_aristia/selection-options-over.png b/Skins/hddthr_aristia/selection-options-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/selection-options.png b/Skins/hddthr_aristia/selection-options.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/selection-random-over.png b/Skins/hddthr_aristia/selection-random-over.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/selection-random.png b/Skins/hddthr_aristia/selection-random.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/selection-tab.png b/Skins/hddthr_aristia/selection-tab.png new file mode 100644 index 00000000..a95de3d3 --- /dev/null +++ b/Skins/hddthr_aristia/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa61f80b87000b6d84548830b9d82d58b01697e143493aab63e8ca32ad4a03a +size 98 diff --git a/Skins/hddthr_aristia/skin.ini b/Skins/hddthr_aristia/skin.ini new file mode 100644 index 00000000..221b692a --- /dev/null +++ b/Skins/hddthr_aristia/skin.ini @@ -0,0 +1,33 @@ +[General] +Name: hddthr aristia +Author: some osu players +Version: latest + +CursorExpand: 0 +CursorRotate: 0 +CursorCentre: 1 +CursorTrailRotate: 0 +SliderStyle: 2 +SliderBallFlip: 0 +SliderBallFrames: 1 +AllowSliderBallTint: 1 + +[Colours] +Combo1: 0,255,255 +Combo2: 250,150,255 +//Combo1: 26,116,242 +//Combo2: 164,32,240 +//Combo3: 37,185,239 +//Combo4: 23,209,116 +//Combo5: 255,75,255 +SongSelectActiveText: 255,255,255 + +SliderBorder: 100,100,100 +SliderTrackOverride: 0,0,0 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 6 +ScoreOverlap: 7 +ComboPrefix: combo/tako/combo +ComboOverlap: 1080 diff --git a/Skins/hddthr_aristia/sliderb0.png b/Skins/hddthr_aristia/sliderb0.png new file mode 100644 index 00000000..55d38847 --- /dev/null +++ b/Skins/hddthr_aristia/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb46e7e2231a6dcf992c552d80892e1205272ed37978b06cbbfd1a229f3a2020 +size 4057 diff --git a/Skins/hddthr_aristia/sliderb0@2x.png b/Skins/hddthr_aristia/sliderb0@2x.png new file mode 100644 index 00000000..2ac7b6c6 --- /dev/null +++ b/Skins/hddthr_aristia/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6597a78ce6d0c1c72c9923ea94e7ed731909ac2f5bfcf605c2fb5a6859083fb +size 6186 diff --git a/Skins/hddthr_aristia/sliderendcircle.png b/Skins/hddthr_aristia/sliderendcircle.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/sliderendcircleoverlay.png b/Skins/hddthr_aristia/sliderendcircleoverlay.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/hddthr_aristia/sliderendcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/hddthr_aristia/sliderfollowcircle.png b/Skins/hddthr_aristia/sliderfollowcircle.png new file mode 100644 index 00000000..28ed74e3 --- /dev/null +++ b/Skins/hddthr_aristia/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:992539de1835742ad360ca72ce40a610f77c84b1fdf630da108526bac9ba829a +size 9558 diff --git a/Skins/hddthr_aristia/sliderpoint10.png b/Skins/hddthr_aristia/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/sliderpoint30.png b/Skins/hddthr_aristia/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/hddthr_aristia/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/hddthr_aristia/sliderscorepoint.png b/Skins/hddthr_aristia/sliderscorepoint.png new file mode 100644 index 00000000..01781551 --- /dev/null +++ b/Skins/hddthr_aristia/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6f30039ae057b51522b2e4b5c69667761ae33827bfab55e6eb31f868819feb +size 3386 diff --git a/Skins/hddthr_aristia/soft-hitclap.wav b/Skins/hddthr_aristia/soft-hitclap.wav new file mode 100644 index 00000000..a599636b --- /dev/null +++ b/Skins/hddthr_aristia/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b85e7b8c41153eefdd3cd543fe992310638f973eb6fd79af842bdb184dd90122 +size 4436 diff --git a/Skins/hddthr_aristia/soft-hitfinish.ogg b/Skins/hddthr_aristia/soft-hitfinish.ogg new file mode 100644 index 00000000..115a6027 --- /dev/null +++ b/Skins/hddthr_aristia/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850ed6f0b7aa2a2207a7f2072c204f1f4d8ecc8422a0be1af7c1697dd1a09927 +size 5763 diff --git a/Skins/hddthr_aristia/soft-hitnormal.ogg b/Skins/hddthr_aristia/soft-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/hddthr_aristia/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/hddthr_aristia/soft-hitwhistle.wav b/Skins/hddthr_aristia/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/hddthr_aristia/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/hddthr_aristia/soft-sliderslide.wav b/Skins/hddthr_aristia/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/hddthr_aristia/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/hddthr_aristia/soft-slidertick.wav b/Skins/hddthr_aristia/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/hddthr_aristia/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/hddthr_aristia/soft-sliderwhistle.wav b/Skins/hddthr_aristia/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/hddthr_aristia/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/hddthr_aristia/songselect-bottom.png b/Skins/hddthr_aristia/songselect-bottom.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/songselect-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/songselect-top.png b/Skins/hddthr_aristia/songselect-top.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/songselect-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/spinner-approachcircle.png b/Skins/hddthr_aristia/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/spinner-background.png b/Skins/hddthr_aristia/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/spinner-circle.png b/Skins/hddthr_aristia/spinner-circle.png new file mode 100644 index 00000000..b313729e --- /dev/null +++ b/Skins/hddthr_aristia/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ea51d5598e295b8fedfaef75463641fa1cabc3bc0b6b4528bfd996cf3ed6b5 +size 474510 diff --git a/Skins/hddthr_aristia/spinner-clear@2x.png b/Skins/hddthr_aristia/spinner-clear@2x.png new file mode 100644 index 00000000..101f646b --- /dev/null +++ b/Skins/hddthr_aristia/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40397a476e5852db5b0b56dcd1805c755676fc08829f2ed961ca722970289c4 +size 1332 diff --git a/Skins/hddthr_aristia/spinner-metre.png b/Skins/hddthr_aristia/spinner-metre.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/spinner-osu.png b/Skins/hddthr_aristia/spinner-osu.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/spinner-rpm.png b/Skins/hddthr_aristia/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/spinner-spin.png b/Skins/hddthr_aristia/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/hddthr_aristia/spinnerbonus.wav b/Skins/hddthr_aristia/spinnerbonus.wav new file mode 100644 index 00000000..e7c0041a --- /dev/null +++ b/Skins/hddthr_aristia/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2f914f9706848338b804fabf42ea11e0f0e05f9bf21c8ecd3f988f5823b9c6 +size 165420 diff --git a/Skins/hddthr_aristia/spinnerspin.ogg b/Skins/hddthr_aristia/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/hddthr_aristia/star.png b/Skins/hddthr_aristia/star.png new file mode 100644 index 00000000..042811cf --- /dev/null +++ b/Skins/hddthr_aristia/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e96e543c173779ca748c2ccef3d859bd7e814677fd56e552925e3444a77294 +size 4275 diff --git a/Skins/hddthr_aristia/star2.png b/Skins/hddthr_aristia/star2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/hddthr_aristia/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/how the sky was/Click-Short.wav b/Skins/how the sky was/Click-Short.wav new file mode 100644 index 00000000..54a0d6be --- /dev/null +++ b/Skins/how the sky was/Click-Short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4798105b2ff1ecc449f78798361f5f6888b4d65577508d6ad61c697393b862f +size 9714 diff --git a/Skins/how the sky was/Hit0-0.png b/Skins/how the sky was/Hit0-0.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-1.png b/Skins/how the sky was/Hit0-1.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-10.png b/Skins/how the sky was/Hit0-10.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-11.png b/Skins/how the sky was/Hit0-11.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-12.png b/Skins/how the sky was/Hit0-12.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-13.png b/Skins/how the sky was/Hit0-13.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-14.png b/Skins/how the sky was/Hit0-14.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-15.png b/Skins/how the sky was/Hit0-15.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-16.png b/Skins/how the sky was/Hit0-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/how the sky was/Hit0-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/how the sky was/Hit0-2.png b/Skins/how the sky was/Hit0-2.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-3.png b/Skins/how the sky was/Hit0-3.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-4.png b/Skins/how the sky was/Hit0-4.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-5.png b/Skins/how the sky was/Hit0-5.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-6.png b/Skins/how the sky was/Hit0-6.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-7.png b/Skins/how the sky was/Hit0-7.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-8.png b/Skins/how the sky was/Hit0-8.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit0-9.png b/Skins/how the sky was/Hit0-9.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/Hit0-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/Hit100-0.png b/Skins/how the sky was/Hit100-0.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-1.png b/Skins/how the sky was/Hit100-1.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-10.png b/Skins/how the sky was/Hit100-10.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-11.png b/Skins/how the sky was/Hit100-11.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-12.png b/Skins/how the sky was/Hit100-12.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-13.png b/Skins/how the sky was/Hit100-13.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-14.png b/Skins/how the sky was/Hit100-14.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-15.png b/Skins/how the sky was/Hit100-15.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-16.png b/Skins/how the sky was/Hit100-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/how the sky was/Hit100-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/how the sky was/Hit100-2.png b/Skins/how the sky was/Hit100-2.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-3.png b/Skins/how the sky was/Hit100-3.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-4.png b/Skins/how the sky was/Hit100-4.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-5.png b/Skins/how the sky was/Hit100-5.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-6.png b/Skins/how the sky was/Hit100-6.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-7.png b/Skins/how the sky was/Hit100-7.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-8.png b/Skins/how the sky was/Hit100-8.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100-9.png b/Skins/how the sky was/Hit100-9.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-0.png b/Skins/how the sky was/Hit100k-0.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-1.png b/Skins/how the sky was/Hit100k-1.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-10.png b/Skins/how the sky was/Hit100k-10.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-11.png b/Skins/how the sky was/Hit100k-11.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-12.png b/Skins/how the sky was/Hit100k-12.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-13.png b/Skins/how the sky was/Hit100k-13.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-14.png b/Skins/how the sky was/Hit100k-14.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-15.png b/Skins/how the sky was/Hit100k-15.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-16.png b/Skins/how the sky was/Hit100k-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/how the sky was/Hit100k-2.png b/Skins/how the sky was/Hit100k-2.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-3.png b/Skins/how the sky was/Hit100k-3.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-4.png b/Skins/how the sky was/Hit100k-4.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-5.png b/Skins/how the sky was/Hit100k-5.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-6.png b/Skins/how the sky was/Hit100k-6.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-7.png b/Skins/how the sky was/Hit100k-7.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-8.png b/Skins/how the sky was/Hit100k-8.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit100k-9.png b/Skins/how the sky was/Hit100k-9.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/Hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/Hit50-0.png b/Skins/how the sky was/Hit50-0.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-1.png b/Skins/how the sky was/Hit50-1.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-10.png b/Skins/how the sky was/Hit50-10.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-11.png b/Skins/how the sky was/Hit50-11.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-12.png b/Skins/how the sky was/Hit50-12.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-13.png b/Skins/how the sky was/Hit50-13.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-14.png b/Skins/how the sky was/Hit50-14.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-15.png b/Skins/how the sky was/Hit50-15.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-16.png b/Skins/how the sky was/Hit50-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/how the sky was/Hit50-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/how the sky was/Hit50-2.png b/Skins/how the sky was/Hit50-2.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-3.png b/Skins/how the sky was/Hit50-3.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-4.png b/Skins/how the sky was/Hit50-4.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-5.png b/Skins/how the sky was/Hit50-5.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-6.png b/Skins/how the sky was/Hit50-6.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-7.png b/Skins/how the sky was/Hit50-7.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-8.png b/Skins/how the sky was/Hit50-8.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50-9.png b/Skins/how the sky was/Hit50-9.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-0.png b/Skins/how the sky was/Hit50k-0.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-1.png b/Skins/how the sky was/Hit50k-1.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-10.png b/Skins/how the sky was/Hit50k-10.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-11.png b/Skins/how the sky was/Hit50k-11.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-12.png b/Skins/how the sky was/Hit50k-12.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-13.png b/Skins/how the sky was/Hit50k-13.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-14.png b/Skins/how the sky was/Hit50k-14.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-15.png b/Skins/how the sky was/Hit50k-15.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-2.png b/Skins/how the sky was/Hit50k-2.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-3.png b/Skins/how the sky was/Hit50k-3.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-4.png b/Skins/how the sky was/Hit50k-4.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-5.png b/Skins/how the sky was/Hit50k-5.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-6.png b/Skins/how the sky was/Hit50k-6.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-7.png b/Skins/how the sky was/Hit50k-7.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-8.png b/Skins/how the sky was/Hit50k-8.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Hit50k-9.png b/Skins/how the sky was/Hit50k-9.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/Hit50k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/Ranking-title.png b/Skins/how the sky was/Ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/how the sky was/Ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/how the sky was/applause.mp3 b/Skins/how the sky was/applause.mp3 new file mode 100644 index 00000000..d3fb68e7 --- /dev/null +++ b/Skins/how the sky was/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3f7737d4441bc9e341b8714ae1514cbaeb93bd95167549560fd9c10e7eac92 +size 3765203 diff --git a/Skins/how the sky was/applausee.mp3 b/Skins/how the sky was/applausee.mp3 new file mode 100644 index 00000000..64cc7c24 --- /dev/null +++ b/Skins/how the sky was/applausee.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8334597cfeea0fe0f53a53ec9272653fd2eec06d87afbbb8402a578385ca50 +size 2367816 diff --git a/Skins/how the sky was/applauseee.mp3 b/Skins/how the sky was/applauseee.mp3 new file mode 100644 index 00000000..4af5136f --- /dev/null +++ b/Skins/how the sky was/applauseee.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68627f0c767e9c086a42bb12b68bcf9da04dfddf2ad7881b67fba2adeef915ed +size 6882082 diff --git a/Skins/how the sky was/approachcircle.png b/Skins/how the sky was/approachcircle.png new file mode 100644 index 00000000..fef0b9bd --- /dev/null +++ b/Skins/how the sky was/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f10364aa08a918c6a82dfaf51099526ce751bb9f50aef0acce721cc48e45ddb +size 8269 diff --git a/Skins/how the sky was/back-button-click.wav b/Skins/how the sky was/back-button-click.wav new file mode 100644 index 00000000..4a2ca30b --- /dev/null +++ b/Skins/how the sky was/back-button-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:730b574801c4d3fed38bb6c04c125c8e663cd7f1182700cfef7bcf0519718be4 +size 132344 diff --git a/Skins/how the sky was/back-button-hover.wav b/Skins/how the sky was/back-button-hover.wav new file mode 100644 index 00000000..28fa06c8 --- /dev/null +++ b/Skins/how the sky was/back-button-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb1a84d5b416d2d25a69b932499bf686cabafdcaefb8d2765c8df0031bee922 +size 9714 diff --git a/Skins/how the sky was/button-left.png b/Skins/how the sky was/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/how the sky was/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/how the sky was/button-middle.png b/Skins/how the sky was/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/how the sky was/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/how the sky was/button-right.png b/Skins/how the sky was/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/how the sky was/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/how the sky was/check-off.mp3 b/Skins/how the sky was/check-off.mp3 new file mode 100644 index 00000000..c4f2d4e9 --- /dev/null +++ b/Skins/how the sky was/check-off.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d0208ece58878c526894f18091f911fc85382c7c46ddaa0255f465dbb1913f +size 18849 diff --git a/Skins/how the sky was/check-on.mp3 b/Skins/how the sky was/check-on.mp3 new file mode 100644 index 00000000..8ab68505 --- /dev/null +++ b/Skins/how the sky was/check-on.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a9fa29f13696c7b672515cebf4790d2993910b5f2e1b3492df4d9d6e6aa5c9 +size 14699 diff --git a/Skins/how the sky was/click-close.wav b/Skins/how the sky was/click-close.wav new file mode 100644 index 00000000..f177b31d --- /dev/null +++ b/Skins/how the sky was/click-close.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5debfdf98cdf697acaaf7ba9d7dcd4bb94d84e4a84c436d3c651da2cc97355dc +size 47934 diff --git a/Skins/how the sky was/click-short-confirm.mp3 b/Skins/how the sky was/click-short-confirm.mp3 new file mode 100644 index 00000000..8ab68505 --- /dev/null +++ b/Skins/how the sky was/click-short-confirm.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a9fa29f13696c7b672515cebf4790d2993910b5f2e1b3492df4d9d6e6aa5c9 +size 14699 diff --git a/Skins/how the sky was/combobreakk.mp3 b/Skins/how the sky was/combobreakk.mp3 new file mode 100644 index 00000000..08b848ed --- /dev/null +++ b/Skins/how the sky was/combobreakk.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfae734e13f06d7a71a83b7b6adf4cf85e12f2b6775e11fcff1b4fa65e485b5 +size 8776 diff --git a/Skins/how the sky was/combobreakk.wav b/Skins/how the sky was/combobreakk.wav new file mode 100644 index 00000000..d4015355 --- /dev/null +++ b/Skins/how the sky was/combobreakk.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac5527ebd1c524c863dccca269332a0cc073280638343ff31b0628d4e4b38a6 +size 108818 diff --git a/Skins/how the sky was/count.wav b/Skins/how the sky was/count.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/how the sky was/count.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/how the sky was/count1.png b/Skins/how the sky was/count1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/count1s.wav b/Skins/how the sky was/count1s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/how the sky was/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/how the sky was/count2.png b/Skins/how the sky was/count2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/count2s.wav b/Skins/how the sky was/count2s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/how the sky was/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/how the sky was/count3.png b/Skins/how the sky was/count3.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/count3s.wav b/Skins/how the sky was/count3s.wav new file mode 100644 index 00000000..8864a237 --- /dev/null +++ b/Skins/how the sky was/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977a135f0949a829b9a1fead56ef9c963d836921f96ccadb1b0401376ffdf93f +size 529244 diff --git a/Skins/how the sky was/cursor-smoke.png b/Skins/how the sky was/cursor-smoke.png new file mode 100644 index 00000000..40db0c71 --- /dev/null +++ b/Skins/how the sky was/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74071b1017e4eafdaa3ae1359d00e6a4b5da164d258ac0845c5a6182bc57c5b5 +size 1430 diff --git a/Skins/how the sky was/cursor.png b/Skins/how the sky was/cursor.png new file mode 100644 index 00000000..9fcc8456 --- /dev/null +++ b/Skins/how the sky was/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45d7aa638782b09e4724a1f63ed4ad8e90f480a20f06f0c97796fc4721c209c4 +size 2294 diff --git a/Skins/how the sky was/cursors/cursor1.png b/Skins/how the sky was/cursors/cursor1.png new file mode 100644 index 00000000..44027838 --- /dev/null +++ b/Skins/how the sky was/cursors/cursor1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1293d64241e8a2e8f03b767a3c86f41d8a43469f621cffe2d4b28c9eef55940f +size 4130 diff --git a/Skins/how the sky was/cursors/cursor123.png b/Skins/how the sky was/cursors/cursor123.png new file mode 100644 index 00000000..dcdef170 --- /dev/null +++ b/Skins/how the sky was/cursors/cursor123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1aded5a0c34e02a836da68abb50f63fd48e05a51a88ece52998aa204632b36e +size 4486 diff --git a/Skins/how the sky was/cursors/cursor2.png b/Skins/how the sky was/cursors/cursor2.png new file mode 100644 index 00000000..7696eb63 --- /dev/null +++ b/Skins/how the sky was/cursors/cursor2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ae0177d36b472a4c819c157d56cb9b18dac0f83fb793b64da221735ec837fc +size 18707 diff --git a/Skins/how the sky was/cursors/cursortrail1.png b/Skins/how the sky was/cursors/cursortrail1.png new file mode 100644 index 00000000..213025e4 --- /dev/null +++ b/Skins/how the sky was/cursors/cursortrail1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20205cea5297658cfdf9bd7e753e65406479a8e1b30cdecf31977b051a3f7c31 +size 5536 diff --git a/Skins/how the sky was/cursors/cursortrail123.png b/Skins/how the sky was/cursors/cursortrail123.png new file mode 100644 index 00000000..2e59d573 --- /dev/null +++ b/Skins/how the sky was/cursors/cursortrail123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15461784f317c11907ad34f1e56e66f8769e825059f478a7d31822a02934a322 +size 1112 diff --git a/Skins/how the sky was/cursors/cursortrail2.png b/Skins/how the sky was/cursors/cursortrail2.png new file mode 100644 index 00000000..2aa9756c --- /dev/null +++ b/Skins/how the sky was/cursors/cursortrail2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b49ad43bc70234d0ca5e58d93b729652a1deac8bc7a31abaf528b322236b626 +size 19154 diff --git a/Skins/how the sky was/cursortrail.png b/Skins/how the sky was/cursortrail.png new file mode 100644 index 00000000..0b75725e --- /dev/null +++ b/Skins/how the sky was/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53627af6edc5dc9a4b5005ef87202a252891c891aaf009c77b8562dda4cb01de +size 2229 diff --git a/Skins/how the sky was/default-0.png b/Skins/how the sky was/default-0.png new file mode 100644 index 00000000..f51edeb3 --- /dev/null +++ b/Skins/how the sky was/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9ee11a876dc3eeb27bb5a8822581aa7028826c7ee99b41e0c6d077dd30ec1d +size 5768 diff --git a/Skins/how the sky was/default-1.png b/Skins/how the sky was/default-1.png new file mode 100644 index 00000000..b49a9e9b --- /dev/null +++ b/Skins/how the sky was/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c62f14e0cd3a76d760eaeeede37afe89fd2769c699698ec7de37ad105243d3 +size 2424 diff --git a/Skins/how the sky was/default-2.png b/Skins/how the sky was/default-2.png new file mode 100644 index 00000000..8a01b6f5 --- /dev/null +++ b/Skins/how the sky was/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61abbab794edd4a7d68fbf34a070dfd679508553220cd32973035f5220a0bed7 +size 5606 diff --git a/Skins/how the sky was/default-3.png b/Skins/how the sky was/default-3.png new file mode 100644 index 00000000..f73d7500 --- /dev/null +++ b/Skins/how the sky was/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f988fd61e1c4bb1f7fb13bc6e9e8cd3f9563696e22f9f2928847ce8220c8d69 +size 6413 diff --git a/Skins/how the sky was/default-4.png b/Skins/how the sky was/default-4.png new file mode 100644 index 00000000..a3b538d8 --- /dev/null +++ b/Skins/how the sky was/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3562819af9585679fa41c3a7b099fc2ef5dd0b081b6e0c4cff2287e5e5704c8f +size 5009 diff --git a/Skins/how the sky was/default-5.png b/Skins/how the sky was/default-5.png new file mode 100644 index 00000000..dde57ff6 --- /dev/null +++ b/Skins/how the sky was/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d4d751d43f281c0027a715ac67a0947e50da334d38c3dc3cf58124cccacd6d +size 5639 diff --git a/Skins/how the sky was/default-6.png b/Skins/how the sky was/default-6.png new file mode 100644 index 00000000..84d7fd57 --- /dev/null +++ b/Skins/how the sky was/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056c5ead6c5d9b1e8dfb5a1f0d578ad79bd856c010a5d430847238e934df1dee +size 5558 diff --git a/Skins/how the sky was/default-7.png b/Skins/how the sky was/default-7.png new file mode 100644 index 00000000..7b768666 --- /dev/null +++ b/Skins/how the sky was/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eaa099acdb7650b7e21ce82ff18bc2ba202d55358d8cf5b8f36610aaf16047 +size 4619 diff --git a/Skins/how the sky was/default-8.png b/Skins/how the sky was/default-8.png new file mode 100644 index 00000000..088502b9 --- /dev/null +++ b/Skins/how the sky was/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3914c53953aaf6814a40ae109993451c7fad392616696c6eef34bc808e906c77 +size 6128 diff --git a/Skins/how the sky was/default-9.png b/Skins/how the sky was/default-9.png new file mode 100644 index 00000000..e5a3be19 --- /dev/null +++ b/Skins/how the sky was/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba9f1df289f8c2accf2e2c589fadc6f5e7b80f5ae60c121ff2d20b3009502963 +size 5572 diff --git a/Skins/how the sky was/drum-hitclap.wav b/Skins/how the sky was/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/how the sky was/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/how the sky was/drum-hitfinish.wav b/Skins/how the sky was/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/how the sky was/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/how the sky was/drum-hitnormal.wav b/Skins/how the sky was/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/how the sky was/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/how the sky was/drum-hitwhistle.wav b/Skins/how the sky was/drum-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/drum-sliderslide.wav b/Skins/how the sky was/drum-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/drum-slidertick.wav b/Skins/how the sky was/drum-slidertick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/how the sky was/drum-sliderwhistle.wav b/Skins/how the sky was/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/how the sky was/fail-background@2x.png b/Skins/how the sky was/fail-background@2x.png new file mode 100644 index 00000000..e774c6b1 --- /dev/null +++ b/Skins/how the sky was/fail-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3802ad90b988d1d2183edf31d2ae7644265c0218bae3bd971d137778023c5452 +size 1447998 diff --git a/Skins/how the sky was/failsound.mp3 b/Skins/how the sky was/failsound.mp3 new file mode 100644 index 00000000..2d175a94 --- /dev/null +++ b/Skins/how the sky was/failsound.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc0ed24eff80b2b0df194eba1e02fc97b93d29531538f9a1c89c1a6d10758dd +size 5292146 diff --git a/Skins/how the sky was/followpoint-0.png b/Skins/how the sky was/followpoint-0.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/how the sky was/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/how the sky was/followpoint-1.png b/Skins/how the sky was/followpoint-1.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/how the sky was/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/how the sky was/followpoint-2.png b/Skins/how the sky was/followpoint-2.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/how the sky was/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/how the sky was/followpoint-3.png b/Skins/how the sky was/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/how the sky was/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/how the sky was/followpoint-4.png b/Skins/how the sky was/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/how the sky was/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/how the sky was/followpoint-5.png b/Skins/how the sky was/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/how the sky was/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/how the sky was/followpoint-6.png b/Skins/how the sky was/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/how the sky was/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/how the sky was/followpoint-7.png b/Skins/how the sky was/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/how the sky was/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/how the sky was/followpoint-8.png b/Skins/how the sky was/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/how the sky was/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/how the sky was/followpoint-9.png b/Skins/how the sky was/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/how the sky was/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/how the sky was/followpoint.png b/Skins/how the sky was/followpoint.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/go.png b/Skins/how the sky was/go.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/gos.wav b/Skins/how the sky was/gos.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/how the sky was/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/how the sky was/heartbeat.wav b/Skins/how the sky was/heartbeat.wav new file mode 100644 index 00000000..a626a521 --- /dev/null +++ b/Skins/how the sky was/heartbeat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129bcad04ca3fd6c8e36cef87899aa3a3b07da52c17818a99f48c7d25fb87a79 +size 410972 diff --git a/Skins/how the sky was/hit0.png b/Skins/how the sky was/hit0.png new file mode 100644 index 00000000..03f8868a --- /dev/null +++ b/Skins/how the sky was/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679bdf39125d83bf798655b42daf5f91bb0cc5a23588eb9375712316dd63070 +size 8850 diff --git a/Skins/how the sky was/hit100.png b/Skins/how the sky was/hit100.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/hit100k.png b/Skins/how the sky was/hit100k.png new file mode 100644 index 00000000..a69d5da6 --- /dev/null +++ b/Skins/how the sky was/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca62afcdc2ce8380a1428c59375636c0f09aa0763fcf1a687bbd8d4f3e032dbc +size 4458 diff --git a/Skins/how the sky was/hit300-0.png b/Skins/how the sky was/hit300-0.png new file mode 100644 index 00000000..e2b93dc2 --- /dev/null +++ b/Skins/how the sky was/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7a60fc267b1154c05a62f472daca86d42e7b145c09b674db604569fa303d9c +size 2792 diff --git a/Skins/how the sky was/hit300.png b/Skins/how the sky was/hit300.png new file mode 100644 index 00000000..476c8ad7 --- /dev/null +++ b/Skins/how the sky was/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c5623ebcf6e832611c2338086f02dc4a7b1fcb0a274c605e8807bfcaad210b +size 4934 diff --git a/Skins/how the sky was/hit300g-0.png b/Skins/how the sky was/hit300g-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/hit300g.png b/Skins/how the sky was/hit300g.png new file mode 100644 index 00000000..476c8ad7 --- /dev/null +++ b/Skins/how the sky was/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c5623ebcf6e832611c2338086f02dc4a7b1fcb0a274c605e8807bfcaad210b +size 4934 diff --git a/Skins/how the sky was/hit300k-0.png b/Skins/how the sky was/hit300k-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/hit300k.png b/Skins/how the sky was/hit300k.png new file mode 100644 index 00000000..476c8ad7 --- /dev/null +++ b/Skins/how the sky was/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c5623ebcf6e832611c2338086f02dc4a7b1fcb0a274c605e8807bfcaad210b +size 4934 diff --git a/Skins/how the sky was/hit50.png b/Skins/how the sky was/hit50.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/hit50k.png b/Skins/how the sky was/hit50k.png new file mode 100644 index 00000000..101763dc --- /dev/null +++ b/Skins/how the sky was/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1150b637c271616481d2af09aa26a95eac9ba627207d0ae4c402e5f4e4db0e1 +size 3996 diff --git a/Skins/how the sky was/hitcircle@2x.png b/Skins/how the sky was/hitcircle@2x.png new file mode 100644 index 00000000..f819102c --- /dev/null +++ b/Skins/how the sky was/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94ecef983f25a92e37949181a0322e16f9937eda9fc642c2352510a79e30e54f +size 24617 diff --git a/Skins/how the sky was/hitcircleoverlay@2x.png b/Skins/how the sky was/hitcircleoverlay@2x.png new file mode 100644 index 00000000..e82487b6 --- /dev/null +++ b/Skins/how the sky was/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edc3d504d2df5ce82b3eb8b05fd67f8adc879fb0b429a504df89f6e8e879b7c +size 54661 diff --git a/Skins/how the sky was/inputoverlay-background@2x.png b/Skins/how the sky was/inputoverlay-background@2x.png new file mode 100644 index 00000000..263a5619 --- /dev/null +++ b/Skins/how the sky was/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f59a97b023165293ecf1a34179603ae6055b3f7deeb83ed9e5e643f88ffd91 +size 3188 diff --git a/Skins/how the sky was/inputoverlay-key@2x.png b/Skins/how the sky was/inputoverlay-key@2x.png new file mode 100644 index 00000000..039db6f0 --- /dev/null +++ b/Skins/how the sky was/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dde3d688088214131d26c8d0f9a2b1f91a56d8bb72a23ca34a32dffb3cc6f89 +size 17471 diff --git a/Skins/how the sky was/key-movement.wav b/Skins/how the sky was/key-movement.wav new file mode 100644 index 00000000..5305275f --- /dev/null +++ b/Skins/how the sky was/key-movement.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a1ecfb7926542a9fd103befddc47a1f7f9061402c0abe7bc77123e9219064b +size 7560 diff --git a/Skins/how the sky was/key-press-1.wav b/Skins/how the sky was/key-press-1.wav new file mode 100644 index 00000000..432234c2 --- /dev/null +++ b/Skins/how the sky was/key-press-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a626acb901b7374fbaba05ed3dfddc018865919c77451139baab7409118883 +size 83960 diff --git a/Skins/how the sky was/key-press-2.wav b/Skins/how the sky was/key-press-2.wav new file mode 100644 index 00000000..441750ff --- /dev/null +++ b/Skins/how the sky was/key-press-2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:887e6db134f6669f707eee4f8246ce0fed60caf650c66ae756a1383d681df645 +size 83960 diff --git a/Skins/how the sky was/key-press-3.wav b/Skins/how the sky was/key-press-3.wav new file mode 100644 index 00000000..52c6943b --- /dev/null +++ b/Skins/how the sky was/key-press-3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f01b9f79d82c9b2729a90b81e69eda2a1efabefbc17fd8a7e60d9a20a3b506 +size 83960 diff --git a/Skins/how the sky was/key-press-4.wav b/Skins/how the sky was/key-press-4.wav new file mode 100644 index 00000000..811c9e89 --- /dev/null +++ b/Skins/how the sky was/key-press-4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c86742e5f317553795cef94a3505bc667545e01c0a18ad935d5246314487ce0 +size 83960 diff --git a/Skins/how the sky was/lighting.png b/Skins/how the sky was/lighting.png new file mode 100644 index 00000000..748c33b0 --- /dev/null +++ b/Skins/how the sky was/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbaab7b57f726e63217fdec7f94f0de436ff09023dd9fe543c607a580521d0e +size 11137 diff --git a/Skins/how the sky was/match-confirm.wav b/Skins/how the sky was/match-confirm.wav new file mode 100644 index 00000000..47844317 --- /dev/null +++ b/Skins/how the sky was/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0ab5e98bd302fb02df8061f9463b0206a009bac678cb62502e8f732792431e +size 219592 diff --git a/Skins/how the sky was/match-join.wav b/Skins/how the sky was/match-join.wav new file mode 100644 index 00000000..bedfb622 --- /dev/null +++ b/Skins/how the sky was/match-join.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8429b7ef5e3df599cc1aaded442e80e6788dcc78d20983b7be9b2e2ac95917af +size 191560 diff --git a/Skins/how the sky was/match-leave.wav b/Skins/how the sky was/match-leave.wav new file mode 100644 index 00000000..d1e7e257 --- /dev/null +++ b/Skins/how the sky was/match-leave.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09b9efdd7460a893db2d0488aa4b3cc9e4eb724f6ada8ae8a3b0f082b9642b2 +size 496892 diff --git a/Skins/how the sky was/match-notready.wav b/Skins/how the sky was/match-notready.wav new file mode 100644 index 00000000..22fc6748 --- /dev/null +++ b/Skins/how the sky was/match-notready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6061a4b2be62c9d0a1d52da0fef2e6e3686abfeebf886f24f055a897bd9f4393 +size 46536 diff --git a/Skins/how the sky was/match-ready.wav b/Skins/how the sky was/match-ready.wav new file mode 100644 index 00000000..c6bfda2a --- /dev/null +++ b/Skins/how the sky was/match-ready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e759354170dce0bcd200e3576866366ab84f15d38fb6cefc04c60402b013476 +size 112363 diff --git a/Skins/how the sky was/match-start.wav b/Skins/how the sky was/match-start.wav new file mode 100644 index 00000000..89397169 --- /dev/null +++ b/Skins/how the sky was/match-start.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90afbd4999375c7f1d1c78b79e648b4fa7bd15dda79a2cc4fb94abd03cb5e16 +size 164332 diff --git a/Skins/how the sky was/menu-back-click.wav b/Skins/how the sky was/menu-back-click.wav new file mode 100644 index 00000000..267ab6fd --- /dev/null +++ b/Skins/how the sky was/menu-back-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dfde165c5cec8eae06eb420a20d2b8d135d45f76b06e63c655ff5fe355071ec +size 132344 diff --git a/Skins/how the sky was/menu-back@2x1.png b/Skins/how the sky was/menu-back@2x1.png new file mode 100644 index 00000000..6476e4e6 --- /dev/null +++ b/Skins/how the sky was/menu-back@2x1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f700914f9b07768d439616af5fdf18e130431566e21023f32825b3dd2c916e4 +size 120526 diff --git a/Skins/how the sky was/menu-backbad@2x.png b/Skins/how the sky was/menu-backbad@2x.png new file mode 100644 index 00000000..162df741 --- /dev/null +++ b/Skins/how the sky was/menu-backbad@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77fb8fbda23072fa95b97112b47d38504d497c41d17c232880fa33e3757d2970 +size 136197 diff --git a/Skins/how the sky was/menu-button-background.png b/Skins/how the sky was/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/how the sky was/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/how the sky was/menu-charts-hover.wav b/Skins/how the sky was/menu-charts-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/how the sky was/menu-direct-click.wav b/Skins/how the sky was/menu-direct-click.wav new file mode 100644 index 00000000..697b5f77 --- /dev/null +++ b/Skins/how the sky was/menu-direct-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac498a687812ffe239ac9ecffea6e98dc654c809abb5e6fba5d651b07fa64cb8 +size 59694 diff --git a/Skins/how the sky was/menu-direct-hover.wav b/Skins/how the sky was/menu-direct-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/how the sky was/menu-edit-click.wav b/Skins/how the sky was/menu-edit-click.wav new file mode 100644 index 00000000..f6d774cc --- /dev/null +++ b/Skins/how the sky was/menu-edit-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1555ce4a32ff437ef0665167dc7c9e43a6f1bd28b5575a8ea75242b63a63f4cc +size 106734 diff --git a/Skins/how the sky was/menu-edit-hover.wav b/Skins/how the sky was/menu-edit-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/how the sky was/menu-exit-click.wav b/Skins/how the sky was/menu-exit-click.wav new file mode 100644 index 00000000..38b86c77 --- /dev/null +++ b/Skins/how the sky was/menu-exit-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b98adc1526d3a6a42340f76a1cc42d2c352c5a314185f8bdac8e0766ce3185 +size 433074 diff --git a/Skins/how the sky was/menu-exit-hover.wav b/Skins/how the sky was/menu-exit-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/how the sky was/menu-freeplay-click.wav b/Skins/how the sky was/menu-freeplay-click.wav new file mode 100644 index 00000000..5b0b6e2f --- /dev/null +++ b/Skins/how the sky was/menu-freeplay-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed4fcb28428db1fae867f7b20689c30baada952564b54ac60587e3ec0a9ae76 +size 113444 diff --git a/Skins/how the sky was/menu-freeplay-hover.wav b/Skins/how the sky was/menu-freeplay-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/how the sky was/menu-multiplayer-click.wav b/Skins/how the sky was/menu-multiplayer-click.wav new file mode 100644 index 00000000..379bb190 --- /dev/null +++ b/Skins/how the sky was/menu-multiplayer-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860ca09cea9be3f4fff5e78ec965f003a38fa5157774d66a1720ec44f006ac8a +size 47934 diff --git a/Skins/how the sky was/menu-multiplayer-hover.wav b/Skins/how the sky was/menu-multiplayer-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/how the sky was/menu-options-click.wav b/Skins/how the sky was/menu-options-click.wav new file mode 100644 index 00000000..55e0b73d --- /dev/null +++ b/Skins/how the sky was/menu-options-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2594a1b5d96a23f25144359b20fd55245e372d9a91e9736050207bd0d11fc935 +size 33234 diff --git a/Skins/how the sky was/menu-options-hover.wav b/Skins/how the sky was/menu-options-hover.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/menu-options-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/menu-play-click.wav b/Skins/how the sky was/menu-play-click.wav new file mode 100644 index 00000000..808c1764 --- /dev/null +++ b/Skins/how the sky was/menu-play-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:152faf09047c15676616987b8cfe283f2e970dca774af0173159a56c7eb1a107 +size 71450 diff --git a/Skins/how the sky was/menu-play-hover.wav b/Skins/how the sky was/menu-play-hover.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/how the sky was/menuclick.wav b/Skins/how the sky was/menuclick.wav new file mode 100644 index 00000000..1bda8366 --- /dev/null +++ b/Skins/how the sky was/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b798a0a67e1f24d19ce49ac57868ff02cdea55e1d455c69e105a41ee794131 +size 9714 diff --git a/Skins/how the sky was/menuhit.mp3 b/Skins/how the sky was/menuhit.mp3 new file mode 100644 index 00000000..8ab68505 --- /dev/null +++ b/Skins/how the sky was/menuhit.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a9fa29f13696c7b672515cebf4790d2993910b5f2e1b3492df4d9d6e6aa5c9 +size 14699 diff --git a/Skins/how the sky was/metronomehigh.wav b/Skins/how the sky was/metronomehigh.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/how the sky was/metronomehigh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/how the sky was/metronomelow.wav b/Skins/how the sky was/metronomelow.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/how the sky was/metronomelow.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/how the sky was/mode-osu-small-new.psd b/Skins/how the sky was/mode-osu-small-new.psd new file mode 100644 index 00000000..b21418c2 Binary files /dev/null and b/Skins/how the sky was/mode-osu-small-new.psd differ diff --git a/Skins/how the sky was/mode-osu-small1.png b/Skins/how the sky was/mode-osu-small1.png new file mode 100644 index 00000000..738857a8 --- /dev/null +++ b/Skins/how the sky was/mode-osu-small1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b51f5cbc2ee15c7c46933c2103efe7375b9bbb6c7fadcd33d8831d774a59d54b +size 104728 diff --git a/Skins/how the sky was/nomal-sliderslide.wav b/Skins/how the sky was/nomal-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/how the sky was/nomal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/how the sky was/normal-hitclap.wav b/Skins/how the sky was/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/how the sky was/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/how the sky was/normal-hitfinish.wav b/Skins/how the sky was/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/how the sky was/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/how the sky was/normal-hitnormal.wav b/Skins/how the sky was/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/how the sky was/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/how the sky was/normal-hitwhistle.wav b/Skins/how the sky was/normal-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/normal-sliderslide.wav b/Skins/how the sky was/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/normal-slidertick.wav b/Skins/how the sky was/normal-slidertick.wav new file mode 100644 index 00000000..79f13679 --- /dev/null +++ b/Skins/how the sky was/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd98c971c995213648f9b57f7ffbf2ac3655f98105019e8bbb47591c61d1771c +size 57608 diff --git a/Skins/how the sky was/normal-sliderwhistle.wav b/Skins/how the sky was/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/pause-back-click.wav b/Skins/how the sky was/pause-back-click.wav new file mode 100644 index 00000000..f5e1ca04 --- /dev/null +++ b/Skins/how the sky was/pause-back-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd20d86b9556fb45177994badc69b19bdce9469b827db814d20f655f6815c0c +size 173070 diff --git a/Skins/how the sky was/pause-back-hover.wav b/Skins/how the sky was/pause-back-hover.wav new file mode 100644 index 00000000..3f3265af --- /dev/null +++ b/Skins/how the sky was/pause-back-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264df45ac7bc6213dc129b504044b9d05dca4bbe1160002db3cd17358a130573 +size 28922 diff --git a/Skins/how the sky was/pause-back.png b/Skins/how the sky was/pause-back.png new file mode 100644 index 00000000..2541d6cc --- /dev/null +++ b/Skins/how the sky was/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:653156a07238609a3e38340f5286991973d478ab570552d9dee2d314a6e79599 +size 21827 diff --git a/Skins/how the sky was/pause-continue-hover.wav b/Skins/how the sky was/pause-continue-hover.wav new file mode 100644 index 00000000..3f3265af --- /dev/null +++ b/Skins/how the sky was/pause-continue-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264df45ac7bc6213dc129b504044b9d05dca4bbe1160002db3cd17358a130573 +size 28922 diff --git a/Skins/how the sky was/pause-continue.png b/Skins/how the sky was/pause-continue.png new file mode 100644 index 00000000..6ef08394 --- /dev/null +++ b/Skins/how the sky was/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ed7fb0097780de50b937ad865701b1dea9c49e9913f370cfb4aa2275b0e495 +size 16990 diff --git a/Skins/how the sky was/pause-loop.mp3 b/Skins/how the sky was/pause-loop.mp3 new file mode 100644 index 00000000..bb70ea8c --- /dev/null +++ b/Skins/how the sky was/pause-loop.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812f5865af4083f8b231d029f2d1432ba26818c400b2b26a7cfd71befd775458 +size 31717430 diff --git a/Skins/how the sky was/pause-overlay@2x.png b/Skins/how the sky was/pause-overlay@2x.png new file mode 100644 index 00000000..a5330220 --- /dev/null +++ b/Skins/how the sky was/pause-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c14cb26be8133d2922473d241d595fe3a436300274a14146a4177a2e033dec5b +size 1136324 diff --git a/Skins/how the sky was/pause-replay.png b/Skins/how the sky was/pause-replay.png new file mode 100644 index 00000000..fb8933cc --- /dev/null +++ b/Skins/how the sky was/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ab985f83c8af23d3f17abd017da3eabc53f0b60357df0fe1a2f2e7023f68c4 +size 12435 diff --git a/Skins/how the sky was/pause-retry-hover.wav b/Skins/how the sky was/pause-retry-hover.wav new file mode 100644 index 00000000..3f3265af --- /dev/null +++ b/Skins/how the sky was/pause-retry-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264df45ac7bc6213dc129b504044b9d05dca4bbe1160002db3cd17358a130573 +size 28922 diff --git a/Skins/how the sky was/pause-retry.png b/Skins/how the sky was/pause-retry.png new file mode 100644 index 00000000..f0ac70d3 --- /dev/null +++ b/Skins/how the sky was/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f308d10bda299cd46fa57230b32a3f252f78905f697768f8252b1d0939dea12 +size 12532 diff --git a/Skins/how the sky was/play-skip@2x.png b/Skins/how the sky was/play-skip@2x.png new file mode 100644 index 00000000..4bad4f62 --- /dev/null +++ b/Skins/how the sky was/play-skip@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af317a546b75db12cf8990f35be8e3f120eef05b584ff9674fedd537f10ad981 +size 579057 diff --git a/Skins/how the sky was/play-unranked.png b/Skins/how the sky was/play-unranked.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/play-warningarrow.png b/Skins/how the sky was/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/how the sky was/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/how the sky was/playfield.png b/Skins/how the sky was/playfield.png new file mode 100644 index 00000000..40a61d93 --- /dev/null +++ b/Skins/how the sky was/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d3fbf590a584138bb563319747dbef0c9e41db91f19ff45d41e785a5f4f98 +size 2808 diff --git a/Skins/how the sky was/ranking-A-small.png b/Skins/how the sky was/ranking-A-small.png new file mode 100644 index 00000000..1f031d7c --- /dev/null +++ b/Skins/how the sky was/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50870a7551614721716fcdf59901a1b7c5320ae83ba6a0f34b55d2a899a5adcf +size 4703 diff --git a/Skins/how the sky was/ranking-A.png b/Skins/how the sky was/ranking-A.png new file mode 100644 index 00000000..393836df --- /dev/null +++ b/Skins/how the sky was/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478a68dde7e61114c3f9c1629dc86b2539129aecdcc24ab4ccd3294d4be08f85 +size 3074 diff --git a/Skins/how the sky was/ranking-B-small.png b/Skins/how the sky was/ranking-B-small.png new file mode 100644 index 00000000..47cbeb6c --- /dev/null +++ b/Skins/how the sky was/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febbeb30e8b5e76cf402a997797edfa35faa35aa8308ab7eb822a91a0daa9410 +size 4490 diff --git a/Skins/how the sky was/ranking-C-small.png b/Skins/how the sky was/ranking-C-small.png new file mode 100644 index 00000000..741b51fd --- /dev/null +++ b/Skins/how the sky was/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241c1833fc5daf588ebaab8e1e487d30e1670065a4eee5f633d2dbf1aedaec06 +size 4555 diff --git a/Skins/how the sky was/ranking-D-small.png b/Skins/how the sky was/ranking-D-small.png new file mode 100644 index 00000000..4dd50ac2 --- /dev/null +++ b/Skins/how the sky was/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60553c613ebb581bfc535daaa805c3250c753ec2ce6e13e8c07444c73e8c14 +size 4365 diff --git a/Skins/how the sky was/ranking-S-small.png b/Skins/how the sky was/ranking-S-small.png new file mode 100644 index 00000000..46824491 --- /dev/null +++ b/Skins/how the sky was/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b57053a2015070c2e7d305f50e15368eeb311acad7c7be4eb7a1c4fa5f2af3 +size 4768 diff --git a/Skins/how the sky was/ranking-SH-small.png b/Skins/how the sky was/ranking-SH-small.png new file mode 100644 index 00000000..9874a6eb --- /dev/null +++ b/Skins/how the sky was/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dfd8fd78d8b2a32b7992cf987cc0dd8b86cdfb46c1fd9286379c658e7219a3 +size 4547 diff --git a/Skins/how the sky was/ranking-X-small.png b/Skins/how the sky was/ranking-X-small.png new file mode 100644 index 00000000..6401b38b --- /dev/null +++ b/Skins/how the sky was/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc163849993b7a223529b496163782fe172f9c1e5fb4585973260eb3618b1744 +size 5563 diff --git a/Skins/how the sky was/ranking-XH-small.png b/Skins/how the sky was/ranking-XH-small.png new file mode 100644 index 00000000..2e6a8046 --- /dev/null +++ b/Skins/how the sky was/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b002b5c666212d5e7435332ac24f6c0e354666e9f69e13ecb41d7ace30dd0a +size 5313 diff --git a/Skins/how the sky was/ranking-accuracy.png b/Skins/how the sky was/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/how the sky was/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/how the sky was/ranking-b.png b/Skins/how the sky was/ranking-b.png new file mode 100644 index 00000000..8e281c78 --- /dev/null +++ b/Skins/how the sky was/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e9abeac11db88cad3edf87e08831dbe101173f436f80b4b88b42beeffa4c95 +size 2492 diff --git a/Skins/how the sky was/ranking-c.png b/Skins/how the sky was/ranking-c.png new file mode 100644 index 00000000..13b8d602 --- /dev/null +++ b/Skins/how the sky was/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b476ddbe05492af887ed326b84a6f1d1c26f54e7114b1991a9ce601d48075dca +size 3532 diff --git a/Skins/how the sky was/ranking-d.png b/Skins/how the sky was/ranking-d.png new file mode 100644 index 00000000..3dec68b9 --- /dev/null +++ b/Skins/how the sky was/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cae61380ce97a24f7b89dbfe0b7780afe5d3aaebb3135747d7d90e53482791 +size 2530 diff --git a/Skins/how the sky was/ranking-graph.png b/Skins/how the sky was/ranking-graph.png new file mode 100644 index 00000000..7451eef8 --- /dev/null +++ b/Skins/how the sky was/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f71168c0b1ab5673af9872ad8860fbe7968eb444922b0952b773ce7a8e02bf7 +size 112 diff --git a/Skins/how the sky was/ranking-maxcombo.png b/Skins/how the sky was/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/how the sky was/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/how the sky was/ranking-panel@2x.png b/Skins/how the sky was/ranking-panel@2x.png new file mode 100644 index 00000000..04f10c21 --- /dev/null +++ b/Skins/how the sky was/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e8c324c563e3183155a2b102c7104dd39551e5c70140bc35836084aa20e593 +size 1543203 diff --git a/Skins/how the sky was/ranking-perfect.png b/Skins/how the sky was/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/how the sky was/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/how the sky was/ranking-s.png b/Skins/how the sky was/ranking-s.png new file mode 100644 index 00000000..46cce7d1 --- /dev/null +++ b/Skins/how the sky was/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176b4c8e1e3c4a0cd22b811efb0cc8b34bc991332fbb68e488e4a8ac64280669 +size 3401 diff --git a/Skins/how the sky was/ranking-sh.png b/Skins/how the sky was/ranking-sh.png new file mode 100644 index 00000000..04593acb --- /dev/null +++ b/Skins/how the sky was/ranking-sh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e145c88c81556f7d5ff3ad5a363265d8699a8dfc1482524c32516aa3f9dde60a +size 3401 diff --git a/Skins/how the sky was/ranking-winner.png b/Skins/how the sky was/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/how the sky was/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/how the sky was/ranking-x.png b/Skins/how the sky was/ranking-x.png new file mode 100644 index 00000000..43c8b765 --- /dev/null +++ b/Skins/how the sky was/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b0d1e8c788dff20f4340dbc58b01d32055c66b9d3441ba8e924a453997ff11 +size 2864 diff --git a/Skins/how the sky was/ranking-xh.png b/Skins/how the sky was/ranking-xh.png new file mode 100644 index 00000000..f7c7e7ea --- /dev/null +++ b/Skins/how the sky was/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95651000313a174438bc4f09184c34143d9245ce8ed7a4f0813164260c17aad +size 2864 diff --git a/Skins/how the sky was/ready.png b/Skins/how the sky was/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/how the sky was/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/how the sky was/reversearrow.png b/Skins/how the sky was/reversearrow.png new file mode 100644 index 00000000..3a4123c6 --- /dev/null +++ b/Skins/how the sky was/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3be208daa5aa613f84a68be2611e5bcb7c18ba9a221631c81f0cefb601b7a4f +size 4982 diff --git a/Skins/how the sky was/score-0.png b/Skins/how the sky was/score-0.png new file mode 100644 index 00000000..0da08e9b --- /dev/null +++ b/Skins/how the sky was/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62821390d2aa78f7c5d9206a62fb99b591c75bdaf7c4d9421372291fe7bb3474 +size 2228 diff --git a/Skins/how the sky was/score-1.png b/Skins/how the sky was/score-1.png new file mode 100644 index 00000000..886087c9 --- /dev/null +++ b/Skins/how the sky was/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1104dfc2669f70f43bf0a7046aaee14887aa04903da7a87157293410a074dfc8 +size 1891 diff --git a/Skins/how the sky was/score-2.png b/Skins/how the sky was/score-2.png new file mode 100644 index 00000000..17be854c --- /dev/null +++ b/Skins/how the sky was/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb02c098034f30bfa306500b0323f940c480965623cf88900b9cd29e4e81baa +size 2214 diff --git a/Skins/how the sky was/score-3.png b/Skins/how the sky was/score-3.png new file mode 100644 index 00000000..f7ca521e --- /dev/null +++ b/Skins/how the sky was/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5630bb571684aba38fc48c12e315046ef18bbea87fd749cd4b0cf2dbcbacfcfa +size 2257 diff --git a/Skins/how the sky was/score-4.png b/Skins/how the sky was/score-4.png new file mode 100644 index 00000000..b0769491 --- /dev/null +++ b/Skins/how the sky was/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b459bd5f48ae40722a9c6f8d0f2daa3ea13fbabb8eb3a7d860ec106cecf6c5ae +size 2094 diff --git a/Skins/how the sky was/score-5.png b/Skins/how the sky was/score-5.png new file mode 100644 index 00000000..faa018d5 --- /dev/null +++ b/Skins/how the sky was/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967eeb105abc81dc9279002580d7b06bb1c0aff2da05c89a4b0b19fad5b5efef +size 2195 diff --git a/Skins/how the sky was/score-6.png b/Skins/how the sky was/score-6.png new file mode 100644 index 00000000..f4b3c43f --- /dev/null +++ b/Skins/how the sky was/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec059e4ce02a0f3719227dcb2fcee4d707143930bd7f3397b43b3b0ec1cb2902 +size 2254 diff --git a/Skins/how the sky was/score-7.png b/Skins/how the sky was/score-7.png new file mode 100644 index 00000000..a09f60f1 --- /dev/null +++ b/Skins/how the sky was/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7734c0f776a16832ed66e61ed52e352872fe48a0e5cea7809159b5a6b2036221 +size 2007 diff --git a/Skins/how the sky was/score-8.png b/Skins/how the sky was/score-8.png new file mode 100644 index 00000000..d0ccbc04 --- /dev/null +++ b/Skins/how the sky was/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde6f25af571919235e3498bc325f497a6542120f57437461e243a78971920c2 +size 2211 diff --git a/Skins/how the sky was/score-9.png b/Skins/how the sky was/score-9.png new file mode 100644 index 00000000..a588948e --- /dev/null +++ b/Skins/how the sky was/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba562281a907e17920135b97c9d8e8830aef69b934e0e7b86506cd3f577bb5f +size 2272 diff --git a/Skins/how the sky was/score-comma.png b/Skins/how the sky was/score-comma.png new file mode 100644 index 00000000..cdc4c19a --- /dev/null +++ b/Skins/how the sky was/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37477702c316127ed8a6a101f039d58992875f471db8ab65955f8f407e2b5445 +size 2077 diff --git a/Skins/how the sky was/score-dot.png b/Skins/how the sky was/score-dot.png new file mode 100644 index 00000000..37a7fc9f --- /dev/null +++ b/Skins/how the sky was/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7592c1fac48854b2b4a1af5e5ab03c58fba9f789e399ea108729c79652d6820c +size 1737 diff --git a/Skins/how the sky was/score-percent.png b/Skins/how the sky was/score-percent.png new file mode 100644 index 00000000..9414e31b --- /dev/null +++ b/Skins/how the sky was/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb1ff8a0266c021116baeab6ca34d7a932faefe4cf3531dec658a8a35ae4c4e +size 305 diff --git a/Skins/how the sky was/score-x.png b/Skins/how the sky was/score-x.png new file mode 100644 index 00000000..2ceb9c5b --- /dev/null +++ b/Skins/how the sky was/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c1d9d012b28a0db98c8684e36e5d7b07d03e0fc53582ffcf1f9ba80315bc4c7 +size 1754 diff --git a/Skins/how the sky was/scorebar-bg@2x.png b/Skins/how the sky was/scorebar-bg@2x.png new file mode 100644 index 00000000..17e59cd8 --- /dev/null +++ b/Skins/how the sky was/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9b52cef19d9d89c56db6d985a7941a23cede99e910ea7aeceb79cff956eb70 +size 205693 diff --git a/Skins/how the sky was/scorebar-bg@2x1.png b/Skins/how the sky was/scorebar-bg@2x1.png new file mode 100644 index 00000000..cf5c6a7d --- /dev/null +++ b/Skins/how the sky was/scorebar-bg@2x1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b911faf3e781486d94de7668056f0365f0ca843b7f989acadd8efade7258216b +size 205381 diff --git a/Skins/how the sky was/scorebar-bg@2x1.psd b/Skins/how the sky was/scorebar-bg@2x1.psd new file mode 100644 index 00000000..dbda34f7 Binary files /dev/null and b/Skins/how the sky was/scorebar-bg@2x1.psd differ diff --git a/Skins/how the sky was/scorebar-colour.png b/Skins/how the sky was/scorebar-colour.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/scorebar-colour@2x.png b/Skins/how the sky was/scorebar-colour@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/scorebar-ki.png b/Skins/how the sky was/scorebar-ki.png new file mode 100644 index 00000000..fe471d97 --- /dev/null +++ b/Skins/how the sky was/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3667f7ee7b6a6ac1550e8c86e71532456ba5d5786202d5805c9e26d58adf90 +size 362 diff --git a/Skins/how the sky was/scorebar-kidanger.png b/Skins/how the sky was/scorebar-kidanger.png new file mode 100644 index 00000000..fe471d97 --- /dev/null +++ b/Skins/how the sky was/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3667f7ee7b6a6ac1550e8c86e71532456ba5d5786202d5805c9e26d58adf90 +size 362 diff --git a/Skins/how the sky was/scorebar-kidanger2.png b/Skins/how the sky was/scorebar-kidanger2.png new file mode 100644 index 00000000..fe471d97 --- /dev/null +++ b/Skins/how the sky was/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3667f7ee7b6a6ac1550e8c86e71532456ba5d5786202d5805c9e26d58adf90 +size 362 diff --git a/Skins/how the sky was/scorebar-marker.png b/Skins/how the sky was/scorebar-marker.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/scoreentry-comma.png b/Skins/how the sky was/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/how the sky was/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/how the sky was/scoreentry-dot.png b/Skins/how the sky was/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/how the sky was/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/how the sky was/scoreentry-percent.png b/Skins/how the sky was/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/how the sky was/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/how the sky was/scoreentry-x.png b/Skins/how the sky was/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/how the sky was/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/how the sky was/section-fail.png b/Skins/how the sky was/section-fail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/section-fail@2x.png b/Skins/how the sky was/section-fail@2x.png new file mode 100644 index 00000000..f903f0e5 --- /dev/null +++ b/Skins/how the sky was/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd94fbb355a9311cb39af38ccb87e93b803306a4c20a64b78f52eefa5e54294 +size 464600 diff --git a/Skins/how the sky was/section-pass.png b/Skins/how the sky was/section-pass.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/section-pass@2x.png b/Skins/how the sky was/section-pass@2x.png new file mode 100644 index 00000000..3f60d762 --- /dev/null +++ b/Skins/how the sky was/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c2504bf29f8740dcbc7a0dde67d4c583303b448fc6fe0242d403879b5deb1f +size 454930 diff --git a/Skins/how the sky was/sectionfail (better.wav b/Skins/how the sky was/sectionfail (better.wav new file mode 100644 index 00000000..375e8c95 --- /dev/null +++ b/Skins/how the sky was/sectionfail (better.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc7c49163e9840d1a2502f402cd54e8ea9b793beaca7c781b5d16466c9255d8 +size 10692 diff --git a/Skins/how the sky was/sectionfail.mp3 b/Skins/how the sky was/sectionfail.mp3 new file mode 100644 index 00000000..222d74aa --- /dev/null +++ b/Skins/how the sky was/sectionfail.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3aa57d3fc44b161d9632862175630ada8ead2dd92635d5cb40a07d517f1f8aa +size 68203 diff --git a/Skins/how the sky was/sectionpass.mp3 b/Skins/how the sky was/sectionpass.mp3 new file mode 100644 index 00000000..1421bd5b --- /dev/null +++ b/Skins/how the sky was/sectionpass.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a26e4370b1ae5d374b0afea4b847469714bf37e8a2dd97bf0ac8bbb7f6d905 +size 68203 diff --git a/Skins/how the sky was/seeya.mp3 b/Skins/how the sky was/seeya.mp3 new file mode 100644 index 00000000..62ee550c --- /dev/null +++ b/Skins/how the sky was/seeya.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c13d7e30a5274810ed05477b875be50ac4b2fe31075cfccdfcbb5011475fc2f8 +size 199777 diff --git a/Skins/how the sky was/select-difficulty.wav b/Skins/how the sky was/select-difficulty.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/select-expand.wav b/Skins/how the sky was/select-expand.wav new file mode 100644 index 00000000..4751e876 --- /dev/null +++ b/Skins/how the sky was/select-expand.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd56a53f7be076e8fff731f8462c096deee6b7e0bbe05ed08d26651c409b2b60 +size 23400 diff --git a/Skins/how the sky was/selection-mod-autoplay.png b/Skins/how the sky was/selection-mod-autoplay.png new file mode 100644 index 00000000..fa76a7b7 --- /dev/null +++ b/Skins/how the sky was/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02d997db89f7e067583e59edcc6e56bd36118c672a7bd4a3a833146ab9fda41 +size 3426 diff --git a/Skins/how the sky was/selection-mod-cinema.png b/Skins/how the sky was/selection-mod-cinema.png new file mode 100644 index 00000000..17f28feb --- /dev/null +++ b/Skins/how the sky was/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea8b5d446133f94b3a3f24284ff5a9956e541ebd4ce50fd815a063bf2dbfdea +size 3672 diff --git a/Skins/how the sky was/selection-mod-doubletime.png b/Skins/how the sky was/selection-mod-doubletime.png new file mode 100644 index 00000000..96fc5c49 --- /dev/null +++ b/Skins/how the sky was/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bbd5b610952a1b2d0678b8851abe68dd7d8bf62c00fc9d6201b67e2de8fadc +size 3555 diff --git a/Skins/how the sky was/selection-mod-easy.png b/Skins/how the sky was/selection-mod-easy.png new file mode 100644 index 00000000..4ab2f70d --- /dev/null +++ b/Skins/how the sky was/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b0cfd410a8ceb7651693ae77d804e7f1b997400c35f8d8d1d684e183ee3abca +size 3505 diff --git a/Skins/how the sky was/selection-mod-flashlight.png b/Skins/how the sky was/selection-mod-flashlight.png new file mode 100644 index 00000000..30ee6dc4 --- /dev/null +++ b/Skins/how the sky was/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0378cc1489f138246dd4f087f26f35cda438ea764aa361a62c1cf46086f44b32 +size 3338 diff --git a/Skins/how the sky was/selection-mod-halftime.png b/Skins/how the sky was/selection-mod-halftime.png new file mode 100644 index 00000000..e9b4dee2 --- /dev/null +++ b/Skins/how the sky was/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3d23b591cb0eb6439af950592c2695b3faa83d384e3111deeadb1cd65dadd7 +size 3567 diff --git a/Skins/how the sky was/selection-mod-hardrock.png b/Skins/how the sky was/selection-mod-hardrock.png new file mode 100644 index 00000000..a1892562 --- /dev/null +++ b/Skins/how the sky was/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4bc959c7695d42bd32d2a18bb122637def6b42b88886ea00c32429ce01fb23 +size 3734 diff --git a/Skins/how the sky was/selection-mod-hidden.png b/Skins/how the sky was/selection-mod-hidden.png new file mode 100644 index 00000000..d07b44d9 --- /dev/null +++ b/Skins/how the sky was/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4113ec4e91ec8b24c384c0e525fae47d14d10d9c66598e1d8c2dd1f5a06e2090 +size 3679 diff --git a/Skins/how the sky was/selection-mod-nightcore.png b/Skins/how the sky was/selection-mod-nightcore.png new file mode 100644 index 00000000..b8e94b25 --- /dev/null +++ b/Skins/how the sky was/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61deca04c82de86b676d5e162c5819f9da262cd4427041b93e67aba1ac887602 +size 3666 diff --git a/Skins/how the sky was/selection-mod-nofail.png b/Skins/how the sky was/selection-mod-nofail.png new file mode 100644 index 00000000..4d7e5ae3 --- /dev/null +++ b/Skins/how the sky was/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91480c5dbbfd084fac2df7eb26bb03e5d31a42d71fac155bd34b431f8b7e7da7 +size 3619 diff --git a/Skins/how the sky was/selection-mod-perfect.png b/Skins/how the sky was/selection-mod-perfect.png new file mode 100644 index 00000000..378eeb13 --- /dev/null +++ b/Skins/how the sky was/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d382348eaa5cceb91ee700928833cc6f4300a8e295c5bc035453976af0fa5bb4 +size 3504 diff --git a/Skins/how the sky was/selection-mod-relax.png b/Skins/how the sky was/selection-mod-relax.png new file mode 100644 index 00000000..1ce8c080 --- /dev/null +++ b/Skins/how the sky was/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:798d47b22449c03edd8a7135818dafed6d2fda560f0e457003ada687732226d5 +size 3475 diff --git a/Skins/how the sky was/selection-mod-relax2.png b/Skins/how the sky was/selection-mod-relax2.png new file mode 100644 index 00000000..02c57870 --- /dev/null +++ b/Skins/how the sky was/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061a26302ea2f7ef8aaf622bb866ca18168d42e74120e4b2a2472fa987ce7bc3 +size 3480 diff --git a/Skins/how the sky was/selection-mod-scorev2.png b/Skins/how the sky was/selection-mod-scorev2.png new file mode 100644 index 00000000..9b062c21 --- /dev/null +++ b/Skins/how the sky was/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f502fd30edb7245199f0153f356f9fbd14ff852aab0105d1ec91d80c717cf4 +size 3572 diff --git a/Skins/how the sky was/selection-mod-spunout.png b/Skins/how the sky was/selection-mod-spunout.png new file mode 100644 index 00000000..2528d8b4 --- /dev/null +++ b/Skins/how the sky was/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29cf6a401412668c2c82df2ebe9fea2ebc353aa7092f17adf921771d84b729d1 +size 3654 diff --git a/Skins/how the sky was/selection-mod-suddendeath.png b/Skins/how the sky was/selection-mod-suddendeath.png new file mode 100644 index 00000000..6b1196ab --- /dev/null +++ b/Skins/how the sky was/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6453534a04b6467d1c4b65c8b5ca7a083ccb68ce0b690d3eed2b076444dd84 +size 3710 diff --git a/Skins/how the sky was/selection-mod-target.png b/Skins/how the sky was/selection-mod-target.png new file mode 100644 index 00000000..ca97532f --- /dev/null +++ b/Skins/how the sky was/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b20ad4deb0a5f96e929c449a4a7c71d8fec1dc4070c460caae69c2ccd7c9ac1 +size 3546 diff --git a/Skins/how the sky was/selection-mode.png b/Skins/how the sky was/selection-mode.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/how the sky was/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/how the sky was/selection-mode@2x.psd b/Skins/how the sky was/selection-mode@2x.psd new file mode 100644 index 00000000..c1c89632 Binary files /dev/null and b/Skins/how the sky was/selection-mode@2x.psd differ diff --git a/Skins/how the sky was/selection-mode@2x1 (2).png b/Skins/how the sky was/selection-mode@2x1 (2).png new file mode 100644 index 00000000..fa3d8618 --- /dev/null +++ b/Skins/how the sky was/selection-mode@2x1 (2).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aee7b0d2725cae6c6481dd23636579ded14e2b0b9488385afad49bceab5d641f +size 319846 diff --git a/Skins/how the sky was/selection-mods-over.png b/Skins/how the sky was/selection-mods-over.png new file mode 100644 index 00000000..b68deba2 --- /dev/null +++ b/Skins/how the sky was/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247c4032d4bceaf2c5bc380a6761583186916fe949438ab9cf5b31393e2345dc +size 16609 diff --git a/Skins/how the sky was/selection-mods.png b/Skins/how the sky was/selection-mods.png new file mode 100644 index 00000000..b937e7fa --- /dev/null +++ b/Skins/how the sky was/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9644f163ebb55787dd2dd976e51ede91efa9a4ce21a7665ca9e8d5b04d79bfb0 +size 7337 diff --git a/Skins/how the sky was/selection-options-over.png b/Skins/how the sky was/selection-options-over.png new file mode 100644 index 00000000..e760aeaf --- /dev/null +++ b/Skins/how the sky was/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6531c2c5723ea65d52661409c7949985b12d066990ec192a7b1937c9dee1079 +size 17478 diff --git a/Skins/how the sky was/selection-options.png b/Skins/how the sky was/selection-options.png new file mode 100644 index 00000000..2e0b74c2 --- /dev/null +++ b/Skins/how the sky was/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac6966279e9161e4707df554d0f1ec4a139c1577d74c33d1515bd1378d7e579 +size 7473 diff --git a/Skins/how the sky was/selection-random-over.png b/Skins/how the sky was/selection-random-over.png new file mode 100644 index 00000000..a1261c0b --- /dev/null +++ b/Skins/how the sky was/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2af8ae50ad9d8cbb42e1e0139af3cd685d5118b409a550b9ddf7702730502ef +size 17203 diff --git a/Skins/how the sky was/selection-random.png b/Skins/how the sky was/selection-random.png new file mode 100644 index 00000000..d21606ce --- /dev/null +++ b/Skins/how the sky was/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dec06d576cbb139d25c0a3186cafc903ae696575f81173bf00a42a85271d3fb +size 7125 diff --git a/Skins/how the sky was/selection-tab.png b/Skins/how the sky was/selection-tab.png new file mode 100644 index 00000000..a35bf13f --- /dev/null +++ b/Skins/how the sky was/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb5ba814f28906665ff0918c3dae701b1461cf11d9535f96aa410ab427db79b +size 1884 diff --git a/Skins/how the sky was/shutter.wav b/Skins/how the sky was/shutter.wav new file mode 100644 index 00000000..1a51b30a --- /dev/null +++ b/Skins/how the sky was/shutter.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645b7351876c870c825266b57e923ccff732d11b3459f65761bac3ad7241a9bd +size 472264 diff --git a/Skins/how the sky was/skin.ini b/Skins/how the sky was/skin.ini new file mode 100644 index 00000000..a6b3be02 --- /dev/null +++ b/Skins/how the sky was/skin.ini @@ -0,0 +1,22 @@ +// skin.ini generated by osu! skin mixer v2.8.1 + +[General] +Name: how the sky was +Author: Forever +Version: 2.7 +AllowSliderBallTint: 0 +CursorExpand: 0 +CursorRotate: 0 +CursorTrailRotate: 0 + +[Colours] +Combo1: 148,164,229 +SongSelectActiveText: 255,153,153 +SliderBorder: 65,65,65 +SliderTrackOverride: 0,0,0 +SongSelectInactiveText: 255,153,153 + +[Fonts] +HitCircleOverlap: 1 +ScoreOverlap: 2 +ComboPrefix: hide diff --git a/Skins/how the sky was/sliderb.png b/Skins/how the sky was/sliderb.png new file mode 100644 index 00000000..e56a83af --- /dev/null +++ b/Skins/how the sky was/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929717573484ff50c540b4b18c685a3c976f28fd241deadb5b6643f52296906d +size 4237 diff --git a/Skins/how the sky was/sliderendcircle.png b/Skins/how the sky was/sliderendcircle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/sliderfollowcircle.png b/Skins/how the sky was/sliderfollowcircle.png new file mode 100644 index 00000000..388019e3 --- /dev/null +++ b/Skins/how the sky was/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5261f0ffe959be68368b39f102500a43bd88a649e3c62ce5b862f603a7fa05 +size 26190 diff --git a/Skins/how the sky was/sliderscorepoint.png b/Skins/how the sky was/sliderscorepoint.png new file mode 100644 index 00000000..825e08c6 --- /dev/null +++ b/Skins/how the sky was/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8958ed3e551af3a27fe4e85806bb8f00c9a8740cbb13d754085cb3920eecf6fd +size 17926 diff --git a/Skins/how the sky was/sliderscorepoint@2x.png b/Skins/how the sky was/sliderscorepoint@2x.png new file mode 100644 index 00000000..9959e680 --- /dev/null +++ b/Skins/how the sky was/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f07496de0112f2bcac06904dc0b0479cb81356e261be646eb2e53f3e615116d5 +size 3531 diff --git a/Skins/how the sky was/soft-hitclap.wav b/Skins/how the sky was/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/how the sky was/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/how the sky was/soft-hitfinish.wav b/Skins/how the sky was/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/how the sky was/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/how the sky was/soft-hitnormal.wav b/Skins/how the sky was/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/how the sky was/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/how the sky was/soft-hitwhistle.wav b/Skins/how the sky was/soft-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/soft-sliderslide.wav b/Skins/how the sky was/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/soft-slidertick.wav b/Skins/how the sky was/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/soft-sliderwhistle.wav b/Skins/how the sky was/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/how the sky was/sources.txt b/Skins/how the sky was/sources.txt new file mode 100644 index 00000000..d8702237 --- /dev/null +++ b/Skins/how the sky was/sources.txt @@ -0,0 +1,26 @@ +menu-back: https://mobile.twitter.com/123456nya/status/1613086718089134085 +menu-back1: https://twitter.com/koirariko/status/1598960334592954369 +failscreen: https://twitter.com/_toa_rui/status/1612765682374176768 +menu-button: https://www.pixiv.net/en/artworks/99051015 +pausescreen: https://twitter.com/daro_0_0/status/1589907904643366913 +play-skip: https://www.instagram.com/p/ClU11c7prUb/?hl=en +scorebar-bg: https://twitter.com/9csms/status/1611293209321439234 +ranking panel: https://twitter.com/9csms/status/1592747303320064000 +mode-osu-small: https://mobile.twitter.com/milkyhearts_/status/1607631288969867265 +pass: https://twitter.com/_inkveins/status/1599439100901462019 +fail: https://twitter.com/10_slnx/status/1592972883370078209 +selection mode: https://twitter.com/xuannghiz/status/1591389490316447744 ++ https://twitter.com/xuannghiz/status/1543637593052659712 + +music: +applause: https://www.youtube.com/watch?v=4zluAsyJqnw +applausee: https://www.youtube.com/watch?v=f96ucaxwp-E +applauseee: https://www.youtube.com/watch?v=kaCqMiKKit4 + +most .wavs and mp3s were taken from either reused's most recent skin or +from yandere's, waifu's or mistry's drumkit + + +https://soundcloud.com/y4ndere +https://soundcloud.com/176s +https://soundcloud.com/prodmistry \ No newline at end of file diff --git a/Skins/how the sky was/spinner-approachcircle.png b/Skins/how the sky was/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/how the sky was/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/how the sky was/spinner-background.png b/Skins/how the sky was/spinner-background.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/spinner-bottom.png b/Skins/how the sky was/spinner-bottom.png new file mode 100644 index 00000000..60a73b7b --- /dev/null +++ b/Skins/how the sky was/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6962f12ac3b9f1a0ff453011b973984d3804ba95a5f206eb578805ddaf8d880 +size 3496 diff --git a/Skins/how the sky was/spinner-circle.png b/Skins/how the sky was/spinner-circle.png new file mode 100644 index 00000000..944dec12 --- /dev/null +++ b/Skins/how the sky was/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76547f80c669da26ff200d8f12720150c7bf757d934634d1acfddefd01ea0b35 +size 20281 diff --git a/Skins/how the sky was/spinner-clear.png b/Skins/how the sky was/spinner-clear.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/spinner-glow.png b/Skins/how the sky was/spinner-glow.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/spinner-metre.png b/Skins/how the sky was/spinner-metre.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/spinner-middle.png b/Skins/how the sky was/spinner-middle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/spinner-middle2.png b/Skins/how the sky was/spinner-middle2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/spinner-osu.png b/Skins/how the sky was/spinner-osu.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/how the sky was/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/how the sky was/spinner-rpm.png b/Skins/how the sky was/spinner-rpm.png new file mode 100644 index 00000000..76b5dcd8 --- /dev/null +++ b/Skins/how the sky was/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26042d31f7a104fb04f38e17bbda04ca3eb6c28c8a5dfc38e9671facb699dedb +size 2219 diff --git a/Skins/how the sky was/spinner-spin.png b/Skins/how the sky was/spinner-spin.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/how the sky was/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/how the sky was/spinner-top.png b/Skins/how the sky was/spinner-top.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/spinnerbonus.wav b/Skins/how the sky was/spinnerbonus.wav new file mode 100644 index 00000000..6e901ec0 --- /dev/null +++ b/Skins/how the sky was/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea3774c20fb4a84c33ab6e08b7db0042e2494173e26ca210ec6171c20da9c4 +size 178600 diff --git a/src/default-skin/spinnerspin.wav b/Skins/how the sky was/spinnerspin.wav similarity index 100% rename from src/default-skin/spinnerspin.wav rename to Skins/how the sky was/spinnerspin.wav diff --git a/Skins/how the sky was/star.png b/Skins/how the sky was/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/how the sky was/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/how the sky was/star2.png b/Skins/how the sky was/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/how the sky was/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/how the sky was/welcome.wav b/Skins/how the sky was/welcome.wav new file mode 100644 index 00000000..6754989e --- /dev/null +++ b/Skins/how the sky was/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d10d3910be515cabb1f8b9e26d07bd9196423c5c390817bdbce5b9289497440 +size 79704 diff --git a/Skins/how the sky was/welcomee.mp3 b/Skins/how the sky was/welcomee.mp3 new file mode 100644 index 00000000..0186e030 --- /dev/null +++ b/Skins/how the sky was/welcomee.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:373494e70a7d8b7baf4fce8e57653f197b90ba68f6af5c046910270045e766d8 +size 264000 diff --git a/Skins/how the sky was/whoosh.wav b/Skins/how the sky was/whoosh.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/how the sky was/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Fairy/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/Fairy/cursor.png new file mode 100644 index 00000000..85e11741 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Fairy/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9bed786bca8e1f36aa909a0d2f2f0af6e956f2af12ad3560eb6dae3478683e +size 3781 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Fairy/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/Fairy/cursortrail.png new file mode 100644 index 00000000..012528d1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Fairy/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:036a2697aab1e8748d544f400537f3bc4288f646cf9bb8ef0f17ea00bb3a2993 +size 554 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursor.png new file mode 100644 index 00000000..4dfc1c03 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65af436acf2ec8cc8c244c890f714110b4427d37ffcb57b0b92a5532ff291a4 +size 3569 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursor@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursor@2x.png new file mode 100644 index 00000000..328b7e9a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc4ae6f01a6e9139f1dd9bb1e3dd4906ff71076fbf12ab31a439d632bb3261c4 +size 7416 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursortrail.png new file mode 100644 index 00000000..1e61000d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f0d5e7279ed8f23123de43bf5f53f59848d79601d85628d7a6c27a0ea005c8 +size 2643 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursortrail@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursortrail@2x.png new file mode 100644 index 00000000..caa6df48 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Blue/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9262e6a799c763c5e318f5871c43aceb4703a11ccf95f75cab48a8656e8fe425 +size 4723 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursor.png new file mode 100644 index 00000000..17e6c417 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23b878e51a215f3c2914058d4b15aa0a992f90386f8f29a79be4bbc1d099363 +size 3998 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursor@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursor@2x.png new file mode 100644 index 00000000..defc8864 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c96dc2a167251fdc326814715d4abc2bcfac018b6f72615beb8d0d12630c5eb9 +size 8800 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursortrail.png new file mode 100644 index 00000000..c2391eda --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f002cc7ec20d72c883310e7aa4cbfb23222566f65e04ba7f973da463c89d042 +size 2809 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursortrail@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursortrail@2x.png new file mode 100644 index 00000000..bcfea094 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Dark Red/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab90a045d895e12f6606bdaa6b0ccdb572a3720ea379d4a4aef8eede37526af +size 5515 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursor.png new file mode 100644 index 00000000..dd9fef58 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53032e2f6248627ea60198ddee1006c53538317a9cc25c97dd006bc4cf0e2da8 +size 3854 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursor@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursor@2x.png new file mode 100644 index 00000000..62902c6d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cbafadcaa75625d6deb8909dd6b7bc282218daf4906abf842d693dfd36532e3 +size 7686 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursortrail.png new file mode 100644 index 00000000..cc141e33 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:190ff49f435cb187730afda5c841f30439a73f46ad767ce0f1c83773cd8fad06 +size 2673 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursortrail@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursortrail@2x.png new file mode 100644 index 00000000..251cf77d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Orange/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192ce94f14299766e7e6755efd252e59ed64400f959b3f06fd5e806a28c27de0 +size 4724 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursor.png new file mode 100644 index 00000000..867e8b84 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c7303c8dfbe7a349ef8616a7fbfbfc6d919eb9e1e36a0f33784cea4539a50d +size 4063 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursor@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursor@2x.png new file mode 100644 index 00000000..8cafe0aa --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d472a31bd99962e85dc99aaa4d5a6afe69f4d758d5ec444133119d3f7859a2c1 +size 9392 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursortrail.png new file mode 100644 index 00000000..4c31556b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff4cbe0f8f33a276c2bb867016f3b8608731b625d35b2e046bccccc892c1600 +size 2699 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursortrail@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursortrail@2x.png new file mode 100644 index 00000000..9a64fc60 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/New Noel/Yellow/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234861240df7fac80298dc51dc640890aa775d4ffd008d273ffb4513cef83fb3 +size 5325 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Old 2.0/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/Old 2.0/cursor.png new file mode 100644 index 00000000..04b77ce4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Old 2.0/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e7ebb10bfd03bb63747fff9ef1f0897770faafe1656a26d1a3a34bca594c0c +size 4338 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Old 2.0/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/Old 2.0/cursortrail.png new file mode 100644 index 00000000..2833b8b7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Old 2.0/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578008c8c2f01793539b9e82b633933a70bfeab79ed6893a855b5eba8701e582 +size 5078 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Old/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/Old/cursor.png new file mode 100644 index 00000000..98eb9090 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Old/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46f6a9190ba2641bb10214a7f9e5cbb3bb7d303371603e66a491845465196c34 +size 4342 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Old/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/Old/cursortrail.png new file mode 100644 index 00000000..4ff07371 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Old/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7930b4169e82afb44da8aa73f2bf8a748870ae1e4756fadde99f4c3191773e +size 5066 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Pink big trail/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/Pink big trail/cursor.png new file mode 100644 index 00000000..91dcf7ce --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Pink big trail/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6ddc7bd4c4c38f0d9e94b9d9d6446aeb3fe81a0b57229be23991a121f21f37 +size 6612 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Pink big trail/cursormiddle.png b/Skins/mario+bro+⌞DT⌝/Cursor/Pink big trail/cursormiddle.png new file mode 100644 index 00000000..84689544 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Pink big trail/cursormiddle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a8a6d6325c5391079a56dc9a9185ef79618a784232a529db8b9809d3260e4cb +size 68 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Pink big trail/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/Pink big trail/cursortrail.png new file mode 100644 index 00000000..9d4026c3 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Pink big trail/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719fd6b2ba05be4a554e99558778eea74ef449488b140aeae911e43592cc78af +size 663 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursor.png new file mode 100644 index 00000000..b909963f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2093349b51b415a27908e42fe716f0591212a19d908edfd38f38a96a037b187e +size 4314 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursor@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursor@2x.png new file mode 100644 index 00000000..2c2f7952 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3fb5259c9f7c7d9f9cda1410642475c4cf6d9147c07b70d8044e189f75dcc3 +size 16375 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursortrail.png new file mode 100644 index 00000000..45e4d7c2 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1037af146891fc779e523675f471d4c20855cb8d24114bd80448f4b5b12890 +size 5099 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursortrail@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursortrail@2x.png new file mode 100644 index 00000000..4d7b37d1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Rafis Yellow/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:767a3a691846ead8315a31d8d5201abd19c611e67bd1f97cb5d4f9381e48b14a +size 10113 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Red big trail/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/Red big trail/cursor.png new file mode 100644 index 00000000..47e7f892 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Red big trail/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94084f5b708032b73365ce2fb56455bfc28d97f8220af5ac964ca96001409ca0 +size 6721 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Red big trail/cursormiddle.png b/Skins/mario+bro+⌞DT⌝/Cursor/Red big trail/cursormiddle.png new file mode 100644 index 00000000..84689544 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Red big trail/cursormiddle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a8a6d6325c5391079a56dc9a9185ef79618a784232a529db8b9809d3260e4cb +size 68 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/Red big trail/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/Red big trail/cursortrail.png new file mode 100644 index 00000000..14984bef --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/Red big trail/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8977b715cd3bb2b3bb8d13e9786efe89f8f7884f3435b3a77b1054182ae5745c +size 659 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursor.png new file mode 100644 index 00000000..5af2af9c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4e7f1fa30043dbcf10d144d116a0da4f6b68013442e1e1eb03df175a935e2b +size 3808 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursor@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursor@2x.png new file mode 100644 index 00000000..95b8d60b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:818241a0ed23852a2bb939496e10c9fdce3b087e5d57b55d6c9c0132a724996c +size 30388 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursortrail.png new file mode 100644 index 00000000..65537092 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78db4cb3bce96699000a462e7b59cf7d12eb272a57386e4a8bc897e0b6bed34c +size 324 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursortrail@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursortrail@2x.png new file mode 100644 index 00000000..12bb3079 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/White no cursor trail/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9ff5922b502a44dbc1e193c8011c32b9cc0591232b61adf763c091ec642a9d +size 19766 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursor.png b/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursor.png new file mode 100644 index 00000000..5af2af9c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4e7f1fa30043dbcf10d144d116a0da4f6b68013442e1e1eb03df175a935e2b +size 3808 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursor@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursor@2x.png new file mode 100644 index 00000000..95b8d60b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:818241a0ed23852a2bb939496e10c9fdce3b087e5d57b55d6c9c0132a724996c +size 30388 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursortrail.png b/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursortrail.png new file mode 100644 index 00000000..65537092 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78db4cb3bce96699000a462e7b59cf7d12eb272a57386e4a8bc897e0b6bed34c +size 324 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursortrail@2x.png b/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursortrail@2x.png new file mode 100644 index 00000000..12bb3079 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/White no trail/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9ff5922b502a44dbc1e193c8011c32b9cc0591232b61adf763c091ec642a9d +size 19766 diff --git a/Skins/mario+bro+⌞DT⌝/Cursor/important stuff.txt b/Skins/mario+bro+⌞DT⌝/Cursor/important stuff.txt new file mode 100644 index 00000000..e4c5b378 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Cursor/important stuff.txt @@ -0,0 +1 @@ +If you gonna change the cursor and the old have "cursormiddle", just delete. (not necessary on the big trail ones) \ No newline at end of file diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-0.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-1.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-2.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-2.png new file mode 100644 index 00000000..9478af25 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be853a312cc26488b68c2bb6210327dd446d80995c29a884ac065aaf513b4d7f +size 1799 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-3.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-3.png new file mode 100644 index 00000000..6560c7e0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88ddb968e4ccada43028564bc6b6966b0b1ae9b1af386bcad49991a5519b4eaf +size 1759 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-4.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-4.png new file mode 100644 index 00000000..e6e43564 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1666185d5dd5ab9f6a8994749d4b4720d353e021268b46d2e5b136cb9cef864 +size 1773 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-5.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-5.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-6.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Big white/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-0.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-1.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-2.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-2.png new file mode 100644 index 00000000..68f1fb3e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6977eefe6eda5273f35d6e919b915b4b8e0bb66858ac5c0b62530e0b2f6e748 +size 3488 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-3.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-3.png new file mode 100644 index 00000000..68f1fb3e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6977eefe6eda5273f35d6e919b915b4b8e0bb66858ac5c0b62530e0b2f6e748 +size 3488 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-4.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-4.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-6.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-7.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-8.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-9.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Original/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-0.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-1.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-1.png new file mode 100644 index 00000000..52088883 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfdcf784ad0431ffcee82e1a2d0f10c7c39b8dc4ddaaecdf3ed929d44d4186a +size 3097 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-2.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-2.png new file mode 100644 index 00000000..52088883 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfdcf784ad0431ffcee82e1a2d0f10c7c39b8dc4ddaaecdf3ed929d44d4186a +size 3097 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-3.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-3.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-4.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-4.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-6.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-7.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-8.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-9.png b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Followpoint/Small white/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitclap.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitclap.wav new file mode 100644 index 00000000..63915ce0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba4d1f5035999c1cc90bcd6b6b30e81921ee4d904091d9bb79d6f83c01b185c +size 1506 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitfinish.wav new file mode 100644 index 00000000..138c614d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ddd85be838217c26525d61be66bb41df700a5a14dcab000a59c4b47b262efa +size 145508 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitnormal.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitnormal.wav new file mode 100644 index 00000000..fc52a164 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b24e656be07d9722c0e00965492bc357810b3efa360e3ef64e49b3677f7dbe1 +size 20880 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitwhistle.wav new file mode 100644 index 00000000..47bcb50f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4592a5431853090cde45f38936efa7fecf13b7d2b252d59b63eb890c94573c6d +size 25804 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-sliderslide.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-slidertick.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-sliderwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/nomal-sliderslide.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/nomal-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/nomal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitclap.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitclap.wav new file mode 100644 index 00000000..63915ce0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba4d1f5035999c1cc90bcd6b6b30e81921ee4d904091d9bb79d6f83c01b185c +size 1506 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitfinish.wav new file mode 100644 index 00000000..6a389fef --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb35b75da2acb784cfd3bb6a8648afecb6a48789a261fd3ea05747628386844 +size 12020 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitnormal.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitnormal.wav new file mode 100644 index 00000000..fc52a164 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b24e656be07d9722c0e00965492bc357810b3efa360e3ef64e49b3677f7dbe1 +size 20880 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitwhistle.wav new file mode 100644 index 00000000..47bcb50f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4592a5431853090cde45f38936efa7fecf13b7d2b252d59b63eb890c94573c6d +size 25804 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-sliderslide.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-slidertick.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-slidertick.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-sliderwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/normal-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitclap.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitclap.wav new file mode 100644 index 00000000..523df550 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90936fe0641a45a1563ecdbd6918581a959605a206348887e349bd06a06d0e3a +size 48246 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitfinish.wav new file mode 100644 index 00000000..138c614d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ddd85be838217c26525d61be66bb41df700a5a14dcab000a59c4b47b262efa +size 145508 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitnormal.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitnormal.wav new file mode 100644 index 00000000..fc52a164 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b24e656be07d9722c0e00965492bc357810b3efa360e3ef64e49b3677f7dbe1 +size 20880 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitsoft.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitsoft.wav new file mode 100644 index 00000000..4f99767a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aaa765996ff462f786589a1f8610427d26262ab237094ebe741d0b4fea931a5 +size 23516 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitwhistle.wav new file mode 100644 index 00000000..47bcb50f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4592a5431853090cde45f38936efa7fecf13b7d2b252d59b63eb890c94573c6d +size 25804 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-sliderslide.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-slidertick.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-sliderwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Original/softl-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Original/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitclap.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitnormal.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-sliderslide.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-slidertick.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-slidertick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-sliderwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/nomal-sliderslide.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/nomal-sliderslide.wav new file mode 100644 index 00000000..aad2a286 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/nomal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6528420dee6d4e92321b4e80c4616cabc430af2921f5494ffbdb53db92a45cb3 +size 103760 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitclap.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitnormal.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-sliderslide.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-slidertick.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-slidertick.wav new file mode 100644 index 00000000..79f13679 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd98c971c995213648f9b57f7ffbf2ac3655f98105019e8bbb47591c61d1771c +size 57608 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitclap.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitnormal.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-slidertick.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-sliderwhistle.wav b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Hitsound/Toy/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-A-Small@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-A-Small@2x.png new file mode 100644 index 00000000..c4776912 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-A-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbfc4c10b2c643b1361dee0ab1bd89b444374f8055adab598bc6c70a6189eb46 +size 891 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-A@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-A@2x.png new file mode 100644 index 00000000..6cea6d37 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e81b17ae323ee9b912e9b46f08b5038ed56276c97e4aeb63b46dd78e6c3da3e +size 216926 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-B-Small@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-B-Small@2x.png new file mode 100644 index 00000000..ad153868 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-B-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5f864189a1a599aeba09df9753b40e9eb062cccff1969f427562f0e99ab007 +size 888 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-B@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-B@2x.png new file mode 100644 index 00000000..ab7221c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a66e312ebaa3413913b091b6459ec5ee229199927af7b50c6c373c98f45087 +size 209415 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-C-Small@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-C-Small@2x.png new file mode 100644 index 00000000..b94b5846 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-C-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d81867339cbc8a921bd7cdd55aef2360564e48d34bd3f450cd5ec57be81b3f3 +size 1048 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-C@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-C@2x.png new file mode 100644 index 00000000..8c8f6030 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1a53dd0abf420e85bbd2b956b6cde5243b82ff21eb1d302c04222cf515c2ae +size 217495 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-D-Small@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-D-Small@2x.png new file mode 100644 index 00000000..d527e568 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-D-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dee1e22b96c0b5118e60157b77ccf63a15da657cae5455fefdaaa2241c85708 +size 827 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-D@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-D@2x.png new file mode 100644 index 00000000..575276e8 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9623fc3da10680a0e9fc87690eebf15d2bcfa88789c9cfa23478b256210c804 +size 210202 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-S-Small@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-S-Small@2x.png new file mode 100644 index 00000000..f7ef66a2 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-S-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35e7f03d80db94b1f841464ed77ead12c678c6c2823d3c4417c554087b5be53d +size 1120 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-S@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-S@2x.png new file mode 100644 index 00000000..7411096d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0145153e02fbbf11b713c7a4b07c519a427b06d5ce3c43be658ceb9170e16fc2 +size 220629 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-SH-Small@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-SH-Small@2x.png new file mode 100644 index 00000000..1b46f910 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-SH-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ded3bd7c5328efbe7923ff8edf114f6a015d637d47a37771194d75fada4161 +size 1221 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-X-Small@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-X-Small@2x.png new file mode 100644 index 00000000..6036e756 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-X-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9745f352e748c03f67c5266b431dcfcfe3dc25dc4904d6efca04074dac6b584 +size 1872 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-X@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-X@2x.png new file mode 100644 index 00000000..ff5f2c56 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc39ee4854417dafe0244282fdb4c94d67486033bf06cbc5586cb5c0334c2e61 +size 236719 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-XH-Small@2x.png b/Skins/mario+bro+⌞DT⌝/Ranking-XH-Small@2x.png new file mode 100644 index 00000000..9ab4a4a0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-XH-Small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560ed489ab2e189633e1c40a213115954f69bfcff9691f2077a1276d38783d56 +size 1986 diff --git a/Skins/mario+bro+⌞DT⌝/Ranking-title.png b/Skins/mario+bro+⌞DT⌝/Ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/Ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/mario+bro+⌞DT⌝/applause.mp3 b/Skins/mario+bro+⌞DT⌝/applause.mp3 new file mode 100644 index 00000000..b5d25877 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba72108e5a02ca5c6b9f7e3a8fb6bbacb3d6b88ed6c391bb0344244ca138a94 +size 12501951 diff --git a/Skins/mario+bro+⌞DT⌝/approachcircle.png b/Skins/mario+bro+⌞DT⌝/approachcircle.png new file mode 100644 index 00000000..9fb6c6ae --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb434dc285c3a64a44da60b396363030f71427381e23070121abd5afb56e9c4 +size 4504 diff --git a/Skins/mario+bro+⌞DT⌝/approachcircleglow.png b/Skins/mario+bro+⌞DT⌝/approachcircleglow.png new file mode 100644 index 00000000..9b3c244e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/approachcircleglow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740c33068a911aa862e29e83cd325b35d41936d6ae503688655cb5006b7dbfb7 +size 10535 diff --git a/Skins/mario+bro+⌞DT⌝/button-left.png b/Skins/mario+bro+⌞DT⌝/button-left.png new file mode 100644 index 00000000..1888b66c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb3d532ec5ebafc879a921e1c51c6b017ce4979b171da1db4072ec56e26bb10 +size 3206 diff --git a/Skins/mario+bro+⌞DT⌝/button-middle.png b/Skins/mario+bro+⌞DT⌝/button-middle.png new file mode 100644 index 00000000..902f409e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08267317da1b1e888727c3225a69c56a0d7fd5e79528473a6d5da26c7d8cdf2c +size 3035 diff --git a/Skins/mario+bro+⌞DT⌝/button-right.png b/Skins/mario+bro+⌞DT⌝/button-right.png new file mode 100644 index 00000000..030e892b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21bc819b19961a149047578b8b8c8f806ab43eb09f98514c5a8e12da29de5997 +size 3233 diff --git a/Skins/mario+bro+⌞DT⌝/combo-0.png b/Skins/mario+bro+⌞DT⌝/combo-0.png new file mode 100644 index 00000000..0c4730d4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24bbb2c96cdd4c880922bb46530d502d17fbff2d5bf9586877deda1197bf9e90 +size 22126 diff --git a/Skins/mario+bro+⌞DT⌝/combo-1.png b/Skins/mario+bro+⌞DT⌝/combo-1.png new file mode 100644 index 00000000..c9b1d464 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b811f3cd30f6ebe6286cb3e988f1fcf81016f2204f11ac9d9138366ff72a756 +size 21502 diff --git a/Skins/mario+bro+⌞DT⌝/combo-2.png b/Skins/mario+bro+⌞DT⌝/combo-2.png new file mode 100644 index 00000000..00d6419c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6666b586d75e8abbefb8408d6dd6b88c24fc22c3b988756995f0eff8912226c +size 22114 diff --git a/Skins/mario+bro+⌞DT⌝/combo-3.png b/Skins/mario+bro+⌞DT⌝/combo-3.png new file mode 100644 index 00000000..1711b1a5 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab374fecf2ec3f4a66181a4913a1158c29cef5e30798a7e74d231b553c752191 +size 22046 diff --git a/Skins/mario+bro+⌞DT⌝/combo-4.png b/Skins/mario+bro+⌞DT⌝/combo-4.png new file mode 100644 index 00000000..6ba8205e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5418d151acc82ddc9c0d71f86ee043d160fc662f52fd792a70841a7549f6966b +size 21867 diff --git a/Skins/mario+bro+⌞DT⌝/combo-5.png b/Skins/mario+bro+⌞DT⌝/combo-5.png new file mode 100644 index 00000000..8feac1ef --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3167c64e6883b278184748f57205c3c91f2787ab4e30a16a18e997ece771958a +size 22039 diff --git a/Skins/mario+bro+⌞DT⌝/combo-6.png b/Skins/mario+bro+⌞DT⌝/combo-6.png new file mode 100644 index 00000000..827172dd --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076dd03dbbfe86e148ca79f205959437dc443669205f45ed15a63fb9c2b861a6 +size 22285 diff --git a/Skins/mario+bro+⌞DT⌝/combo-7.png b/Skins/mario+bro+⌞DT⌝/combo-7.png new file mode 100644 index 00000000..9f8ca788 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81d03b40197d4f47d032028bcff1d4ad3411f84f05cf14e1bc1937c3aab66596 +size 22028 diff --git a/Skins/mario+bro+⌞DT⌝/combo-8.png b/Skins/mario+bro+⌞DT⌝/combo-8.png new file mode 100644 index 00000000..ea16b731 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d65c2c932f0a2027a5349e8d0d234773af39b5e8eaba640c7e012dd7cff7e8e8 +size 22414 diff --git a/Skins/mario+bro+⌞DT⌝/combo-9.png b/Skins/mario+bro+⌞DT⌝/combo-9.png new file mode 100644 index 00000000..9de786d7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b5dd59e5f9ed293b7c195d3156f1106ce99754dfadbb62f117e515404b37c6 +size 22243 diff --git a/Skins/mario+bro+⌞DT⌝/combo-comma.png b/Skins/mario+bro+⌞DT⌝/combo-comma.png new file mode 100644 index 00000000..0cd090bf --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0cf8447a77047f1447c65d419fab97e2c02cdf643a99a111b4b3144b4c7e262 +size 21393 diff --git a/Skins/mario+bro+⌞DT⌝/combo-dot.png b/Skins/mario+bro+⌞DT⌝/combo-dot.png new file mode 100644 index 00000000..5655d84b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ce62c94f5e20c0221b57444b552359fa0313d79b5ff6716d299d590f038f97 +size 21393 diff --git a/Skins/mario+bro+⌞DT⌝/combo-percent.png b/Skins/mario+bro+⌞DT⌝/combo-percent.png new file mode 100644 index 00000000..17ea1ed8 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6e4e47ce6065716592017d71d873dc82ca5c1ce1e41801a8abef3a98a8bb1f +size 22781 diff --git a/Skins/mario+bro+⌞DT⌝/combo-x.png b/Skins/mario+bro+⌞DT⌝/combo-x.png new file mode 100644 index 00000000..a2098687 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41da1186a4bd8eae4dc10ab39d5a3fbb1b0b99a01335a63d444ce0ab128c8a2 +size 22091 diff --git a/Skins/mario+bro+⌞DT⌝/combobreak.mp3 b/Skins/mario+bro+⌞DT⌝/combobreak.mp3 new file mode 100644 index 00000000..1e1f23f0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/combobreak.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1aa4b817c89f04c9b9daf117337297bfd807b5f8d6577cdfd3d7c223157d78 +size 14501 diff --git a/Skins/mario+bro+⌞DT⌝/comboburst.png b/Skins/mario+bro+⌞DT⌝/comboburst.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/count1.png b/Skins/mario+bro+⌞DT⌝/count1.png new file mode 100644 index 00000000..c26ec9e8 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d00000e327042e5a22f066d622acb87a6900f1a83e58aecd2c66f8a8e4c10ea +size 17232 diff --git a/Skins/mario+bro+⌞DT⌝/count1s.wav b/Skins/mario+bro+⌞DT⌝/count1s.wav new file mode 100644 index 00000000..8864a237 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977a135f0949a829b9a1fead56ef9c963d836921f96ccadb1b0401376ffdf93f +size 529244 diff --git a/Skins/mario+bro+⌞DT⌝/count2.png b/Skins/mario+bro+⌞DT⌝/count2.png new file mode 100644 index 00000000..6409b082 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593cd74803be2c97fe9f5eac38fc70fe397b3df4a99206f0f85c70d071e151ee +size 17232 diff --git a/Skins/mario+bro+⌞DT⌝/count2s.wav b/Skins/mario+bro+⌞DT⌝/count2s.wav new file mode 100644 index 00000000..8864a237 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977a135f0949a829b9a1fead56ef9c963d836921f96ccadb1b0401376ffdf93f +size 529244 diff --git a/Skins/mario+bro+⌞DT⌝/count3.png b/Skins/mario+bro+⌞DT⌝/count3.png new file mode 100644 index 00000000..7bd2b02b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf7ada11b48390117bc6f16c043e9939051dedcd7485f99d3a30f12582f2998 +size 17232 diff --git a/Skins/mario+bro+⌞DT⌝/count3s.wav b/Skins/mario+bro+⌞DT⌝/count3s.wav new file mode 100644 index 00000000..8864a237 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977a135f0949a829b9a1fead56ef9c963d836921f96ccadb1b0401376ffdf93f +size 529244 diff --git a/Skins/mario+bro+⌞DT⌝/cursor.png b/Skins/mario+bro+⌞DT⌝/cursor.png new file mode 100644 index 00000000..d846e8cd --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2de11ba325a35d07d01edfe4a91118747c4855417081b50f0a2e5acb43cee6b +size 4337 diff --git a/Skins/mario+bro+⌞DT⌝/cursortrail.png b/Skins/mario+bro+⌞DT⌝/cursortrail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/cursortraol.png b/Skins/mario+bro+⌞DT⌝/cursortraol.png new file mode 100644 index 00000000..b7dffed6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/cursortraol.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cac5e0f3960926516ba91fdae01ba4afc5bf3574903ee930177dd9d64bfaa78 +size 2732 diff --git a/Skins/mario+bro+⌞DT⌝/default-0.png b/Skins/mario+bro+⌞DT⌝/default-0.png new file mode 100644 index 00000000..aa28ab0b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2a1371655d38d5d6556324587ce7e641331cc0a939c5592080cadbeeba35cc +size 2296 diff --git a/Skins/mario+bro+⌞DT⌝/default-0@2x.png b/Skins/mario+bro+⌞DT⌝/default-0@2x.png new file mode 100644 index 00000000..4d583b13 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705c852c4167ebb6efe4b30d9a5884a0594098fff60e9f3667456ac7b89b8bba +size 73937 diff --git a/Skins/mario+bro+⌞DT⌝/default-1.png b/Skins/mario+bro+⌞DT⌝/default-1.png new file mode 100644 index 00000000..8bd9bc87 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e85e780e626d21ed6a67a83e9487d4aa457b8eadfd2850cbaea9690ade08a1 +size 870 diff --git a/Skins/mario+bro+⌞DT⌝/default-1@2x.png b/Skins/mario+bro+⌞DT⌝/default-1@2x.png new file mode 100644 index 00000000..00371aef --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2099a34ee0d0d865351ca35a12c6ea085f292de0516e947b83adfa304477d135 +size 68490 diff --git a/Skins/mario+bro+⌞DT⌝/default-2.png b/Skins/mario+bro+⌞DT⌝/default-2.png new file mode 100644 index 00000000..83ebddf5 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa1ba658fdb9450043a0fdfb4959bb49791141a9970c8339f88770e25e94bbd +size 2259 diff --git a/Skins/mario+bro+⌞DT⌝/default-2@2x.png b/Skins/mario+bro+⌞DT⌝/default-2@2x.png new file mode 100644 index 00000000..9110045b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6970effa84b3b4f7f022996e11951d071cf1e3fbdc1747cf493f52d3d47c60 +size 73571 diff --git a/Skins/mario+bro+⌞DT⌝/default-3.png b/Skins/mario+bro+⌞DT⌝/default-3.png new file mode 100644 index 00000000..87091954 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806637db7e584d0ca13abccc95b89ac40b66629945a4f0c12e32dfb0ae14bd2b +size 2600 diff --git a/Skins/mario+bro+⌞DT⌝/default-3@2x.png b/Skins/mario+bro+⌞DT⌝/default-3@2x.png new file mode 100644 index 00000000..34d0e7d0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31123fdb6ac79279765faff2f4ef2efc12d8b3b3faf24ee0a6663c1bfb05de48 +size 75502 diff --git a/Skins/mario+bro+⌞DT⌝/default-4.png b/Skins/mario+bro+⌞DT⌝/default-4.png new file mode 100644 index 00000000..3525ebfe --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ae038137fb0e0dd7c9ce6f2eedebf5f54b03eb20128a1ae75d2a16961baf3f +size 1668 diff --git a/Skins/mario+bro+⌞DT⌝/default-4@2x.png b/Skins/mario+bro+⌞DT⌝/default-4@2x.png new file mode 100644 index 00000000..06eaf851 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b08b8a8e8ec871782f89acd5dd709778326db257399212446789a7097a72388 +size 71567 diff --git a/Skins/mario+bro+⌞DT⌝/default-5.png b/Skins/mario+bro+⌞DT⌝/default-5.png new file mode 100644 index 00000000..8069fa50 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581eec904b3bf33091b17f4f23fc68b5652484fb9194020b3bfc658a14d0ab6e +size 2172 diff --git a/Skins/mario+bro+⌞DT⌝/default-5@2x.png b/Skins/mario+bro+⌞DT⌝/default-5@2x.png new file mode 100644 index 00000000..a5af351a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1ce5aacb2de0ae0c78ef05ac7843b5ab4702fba56804ae465fd0ada0d40d59 +size 73195 diff --git a/Skins/mario+bro+⌞DT⌝/default-6.png b/Skins/mario+bro+⌞DT⌝/default-6.png new file mode 100644 index 00000000..1e4bb9ac --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a88aecdde29c07e847c5a20647f4dde0e9a5c404c7435794d2f4be97d915b7 +size 2152 diff --git a/Skins/mario+bro+⌞DT⌝/default-6@2x.png b/Skins/mario+bro+⌞DT⌝/default-6@2x.png new file mode 100644 index 00000000..4f326a11 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6482efd899a21663aac65a837ca50bfb2d3f73615571a7ea1623771e204a5e +size 73771 diff --git a/Skins/mario+bro+⌞DT⌝/default-7.png b/Skins/mario+bro+⌞DT⌝/default-7.png new file mode 100644 index 00000000..9ba04da9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2eba1ceeebe31921d47d272490fc24659dc7d4ce4941d39dfe571643e3a64ba +size 1711 diff --git a/Skins/mario+bro+⌞DT⌝/default-7@2x.png b/Skins/mario+bro+⌞DT⌝/default-7@2x.png new file mode 100644 index 00000000..ba42904b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0bd5767036f28dc2e8a361395c1f099251fd36a479e591ddf4fc8de7ceccc85 +size 70959 diff --git a/Skins/mario+bro+⌞DT⌝/default-8.png b/Skins/mario+bro+⌞DT⌝/default-8.png new file mode 100644 index 00000000..c092861b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dc6d5187cedd1701bf84c11871ac885951c2712edf3ce0876d6498f2770d7a +size 2555 diff --git a/Skins/mario+bro+⌞DT⌝/default-8@2x.png b/Skins/mario+bro+⌞DT⌝/default-8@2x.png new file mode 100644 index 00000000..d20bece3 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26a5e5c00e135447fe36615cca28b2580f2fbd56d94511c45d7c0f10cc27086 +size 75071 diff --git a/Skins/mario+bro+⌞DT⌝/default-9.png b/Skins/mario+bro+⌞DT⌝/default-9.png new file mode 100644 index 00000000..ad0038a9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445243872032ef35afd20b507e5e4ae3d3412a1dfd0d6cce96d8a68b3f004939 +size 2271 diff --git a/Skins/mario+bro+⌞DT⌝/default-9@2x.png b/Skins/mario+bro+⌞DT⌝/default-9@2x.png new file mode 100644 index 00000000..5ad59795 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9846f3025728d15b70356da26b2ea623a043b57d32469b00b912c9102e64e11b +size 73750 diff --git a/Skins/mario+bro+⌞DT⌝/drum--hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/drum--hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/drum--hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/drum-hitclap.wav b/Skins/mario+bro+⌞DT⌝/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/mario+bro+⌞DT⌝/drum-hitclap2.wav b/Skins/mario+bro+⌞DT⌝/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/mario+bro+⌞DT⌝/drum-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/mario+bro+⌞DT⌝/drum-hitnormal.wav b/Skins/mario+bro+⌞DT⌝/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/mario+bro+⌞DT⌝/drum-hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/mario+bro+⌞DT⌝/failsound.mp3 b/Skins/mario+bro+⌞DT⌝/failsound.mp3 new file mode 100644 index 00000000..5dc66780 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/failsound.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b31e1ea332db4fb7ec0be6a87b87f0ec060e86344f3c5d0476c5da0e2570a9a +size 68467 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-0.png b/Skins/mario+bro+⌞DT⌝/followpoint-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-1.png b/Skins/mario+bro+⌞DT⌝/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-2.png b/Skins/mario+bro+⌞DT⌝/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-3.png b/Skins/mario+bro+⌞DT⌝/followpoint-3.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-4.png b/Skins/mario+bro+⌞DT⌝/followpoint-4.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-5.png b/Skins/mario+bro+⌞DT⌝/followpoint-5.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-6.png b/Skins/mario+bro+⌞DT⌝/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-7.png b/Skins/mario+bro+⌞DT⌝/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-8.png b/Skins/mario+bro+⌞DT⌝/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint-9.png b/Skins/mario+bro+⌞DT⌝/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/followpoint.png b/Skins/mario+bro+⌞DT⌝/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-0.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-0.png new file mode 100644 index 00000000..8e5b3b45 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcde5713fcc1d60e30578ad70120e24ddcdaf4d4dec84ebfdf2911e049e5a4d3 +size 23771 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-0@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-0@2x.png new file mode 100644 index 00000000..779f8bf8 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0935f98435d312c79a1e3218a9d45bda9108a73134ec5617adf07c0aeba989d5 +size 24295 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-1.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-1.png new file mode 100644 index 00000000..d355acbb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:859badd74f10dd4431315a0a80ef48d9f0e0f87b5f815d3caca420cf9b7267f5 +size 23377 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-1@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-1@2x.png new file mode 100644 index 00000000..f29f9375 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd473f6abf22880996365bb74d7b85af275113400b9ce74b2871316063ac689 +size 23850 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-2.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-2.png new file mode 100644 index 00000000..32d01344 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e07d0ae4495734a62168a4fc47087b13c96600626d9815d3d53a71ed49ba973 +size 23784 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-2@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-2@2x.png new file mode 100644 index 00000000..3cc0f4b5 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e68846f7eb09cb638977e33013f6bead552befdc89871266a1df25639d90b3 +size 24315 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-3.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-3.png new file mode 100644 index 00000000..7afd743b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28f27d1cc8121f39e6cd53568ba27d469c8260a44869d00dac510abb4b7af25 +size 23786 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-3@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-3@2x.png new file mode 100644 index 00000000..7abde8d7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49526e4c52076be4ef87de3ef496c07606c665394769ce0ea1f9ba415f793567 +size 24461 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-4.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-4.png new file mode 100644 index 00000000..c5461eb3 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79faa3b9b7a8f5fdb8ae46bcb9f60e68cfa96844b83eac4f0b141a98807c8898 +size 23555 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-4@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-4@2x.png new file mode 100644 index 00000000..9fd0f123 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a35057f06741e3427f9db3a6b65d1f8d824adb67621ef19d6e6c90fdf3c9d73 +size 23968 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-5.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-5.png new file mode 100644 index 00000000..d5bf8839 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43353abeade320dadbf5462aae6df5baa6fd45db28c68534e8f1eb193eb5fba +size 23681 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-5@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-5@2x.png new file mode 100644 index 00000000..b0adf59f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81bdacf097b786767bbfd124b5970b1981ef83a5a9307f61cb4d5f7848545dae +size 24249 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-6.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-6.png new file mode 100644 index 00000000..dd15187c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9daa34fe118848f55b546b4f552b62a2ca11ef977d96a8180b8d98d190a307a0 +size 23881 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-6@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-6@2x.png new file mode 100644 index 00000000..50dff1ba --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2bbcf90385aba5268b479c51dfc61de0e77a8fe298942ca36e34ea97eb3406 +size 24419 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-7.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-7.png new file mode 100644 index 00000000..3df613e4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e3721956142221003ef9e7b804b7fc430dd26cdb24b24e5d89b963af767b2c +size 23723 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-7@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-7@2x.png new file mode 100644 index 00000000..9863c22f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcfcb22338a224f930dab19d34120802119f747fecdf490638156e02a53d149 +size 24427 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-8.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-8.png new file mode 100644 index 00000000..91a67c94 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a68da561c8ee24200b0e4ad09eec068a0506412a577d24e49346601b352627 +size 24057 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-8@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-8@2x.png new file mode 100644 index 00000000..72126d73 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c371423ffb4e1502cf47bd556e949a8fa7f78921980764bde3345eaa4718f57 +size 24719 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-9.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-9.png new file mode 100644 index 00000000..61267aa8 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf21441a019a30d294d1d9e8ab21e90252fd3e94f2a1b8dd41f537d24f17966 +size 23863 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-9@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-9@2x.png new file mode 100644 index 00000000..6ccf32c9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd82543a936aa9b4238624c411c447931859f0b771ba41cdb7fc7f53a360d7cb +size 24452 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-comma.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-comma.png new file mode 100644 index 00000000..4c1db89c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16da8edf3bee821028a6beb08fff51cbd9cddec225c404efdaf11f3c9052f41 +size 23348 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-comma@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-comma@2x.png new file mode 100644 index 00000000..3eda1dcb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df91c791f1fa9d8acf5d6fad88a50300ad26d4bf1bd50137bc63b5146f7f82d +size 23879 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-dot.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-dot.png new file mode 100644 index 00000000..45b58812 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08869e20ebb35c96d04961b4860b11a37a879817c26d56a0325b805173183cb +size 23348 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-dot@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-dot@2x.png new file mode 100644 index 00000000..d65a9fb8 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0eb278a06c03beb82dc0de9c8974fbe3be6e825391b2862d8adb276f4cdc05 +size 23879 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-percent.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-percent.png new file mode 100644 index 00000000..ddd4e41e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d56d50d53f1a1c76e5185d6459c3bdc7a88060e3ebec61ef3a823878fcad8b00 +size 24276 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-percent@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-percent@2x.png new file mode 100644 index 00000000..aae3cd2a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e815c67c145ac6d563d74b12ae283f10565d804726b12dd6efa8a2200faa31 +size 24979 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-x.png new file mode 100644 index 00000000..4d52daca --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b3765ca09aa5ce6a06f341b635c5051eee1aea8c009fedf78bb19825da7a54 +size 24085 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-x@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-x@2x.png new file mode 100644 index 00000000..3bcba54c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/default-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a938e5a84b59da27390b2d4d2284c132ec0dc5662448dca1a6273c0be1482f +size 24890 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-0.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-0.png new file mode 100644 index 00000000..843f9655 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0765bb2cef5e87039b2940d4ce6a6cfa62e3dfc14e788b88acef8ac78b11668 +size 23424 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-0@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-0@2x.png new file mode 100644 index 00000000..a0d78b11 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d26cf41e55dc7a40301a31d1c43b05e1961babc14e864bcb619148ac50a278d3 +size 23428 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-1.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-1.png new file mode 100644 index 00000000..d70d535a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23928f890c228af44b1ab976a2eb712386575ac642f831beb1f62939cad68f4e +size 23152 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-1@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-1@2x.png new file mode 100644 index 00000000..4633f735 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaec0155fed41eb6f602105f7b53a5d448abab1252d81a6769781bc281ab8218 +size 23094 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-2.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-2.png new file mode 100644 index 00000000..8a5898ec --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cfe35dbce61dc737cfc7389f19a1bceec8121350ec481ce11ecaa58da2d2583 +size 23335 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-2@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-2@2x.png new file mode 100644 index 00000000..e3d98d96 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d0dde8d01149a6ebe3cf435b8f5987133bcc1c9852a7821a4135029646dcb9 +size 23331 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-3.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-3.png new file mode 100644 index 00000000..643e5125 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c735a2e392d6140d8716e51f27bcf31e8dce3476a22add43a6630ba92f1d8d3b +size 23366 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-3@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-3@2x.png new file mode 100644 index 00000000..7f955ef5 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce020741e41ecaf2c54b9ec15a1bb9433807429a3266aa9d32b014700e3af08c +size 23368 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-4.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-4.png new file mode 100644 index 00000000..a7b3d54a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1e09f1230b9e606becb06e932335a5937bfd6fb0a8ea7fce06c5c3d97ff06c +size 23293 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-4@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-4@2x.png new file mode 100644 index 00000000..3f759537 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b7d01b4c35f75bdfdb1320d136264027080845fd38b35b6b3417388b4807b22 +size 23202 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-5.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-5.png new file mode 100644 index 00000000..7aad0fd1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9cc29b391508e98bd92d1a5383a1fd39d769649fc1c90f82cce8a60961fbe59 +size 23311 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-5@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-5@2x.png new file mode 100644 index 00000000..be1bea0d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877e686ccadb73fcf6dde37dbb2dfe677053f9429499814b948bf3a7912520c5 +size 23298 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-6.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-6.png new file mode 100644 index 00000000..845a03aa --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f16c1f83a49c8b17eeaeeef13679d0f5e2478e78daa921ba19199667031b7c +size 23439 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-6@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-6@2x.png new file mode 100644 index 00000000..66b55d67 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a2eeaf422fc6ae3853664f2a8154215e35c5c2d9fd5ba006fdaf1e44b80159 +size 23427 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-7.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-7.png new file mode 100644 index 00000000..73b8f1c5 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff48ada799693920e67d6b08d1d7e2f28efe215cfffccffc9255db60f33bb661 +size 23241 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-7@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-7@2x.png new file mode 100644 index 00000000..8eb0173b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b8994f420ff20965769064e335d19814c4744792ea000a13a8b9db14147f00 +size 23330 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-8.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-8.png new file mode 100644 index 00000000..30e76557 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b55b8cc823695d6d9d6a52e77ff8e8dbc1fce982ded94ee02aaa12f62a2339 +size 23468 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-8@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-8@2x.png new file mode 100644 index 00000000..d4b3d6c0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1623f3697ec7719044b1acbeba01d622d9dd81c06f6b592ec8c071c2f397171b +size 23551 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-9.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-9.png new file mode 100644 index 00000000..edd0f5e4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a5600d35ca9a9cdaa03b727e96da2401bffc0225a5393e2198cf2637da780d +size 23454 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-9@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-9@2x.png new file mode 100644 index 00000000..0526c041 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e3fe7d1f6731ca37ce7fd96f17a4da93ea656bd5c964b72d424940c8c5db57 +size 23435 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-comma.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-comma.png new file mode 100644 index 00000000..c25a97c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39859f6949b474d74642374247cc3b4c654c5f2221910421f595075893c1e573 +size 23027 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-comma@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-comma@2x.png new file mode 100644 index 00000000..9c67f0ef --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14424e8f8d4328b54a38015e818b8fef3e6cfac112fe4dc8661da9c9496c2b44 +size 23017 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-dot.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-dot.png new file mode 100644 index 00000000..322ae716 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b7881387048cc50d53d8b5d27c1af4f90e20bc185963053bf76bfeb5b139fe +size 23027 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-dot@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-dot@2x.png new file mode 100644 index 00000000..87044e54 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958ab86d6a7b3c248c8148e856ee196413c605302a7f6802fa466303f81cf7ce +size 23017 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-percent.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-percent.png new file mode 100644 index 00000000..658c5265 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066087e83dd62bbd439c87b42b7cff545f202b263b3494525d7f6c407c6e7628 +size 23714 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-percent@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-percent@2x.png new file mode 100644 index 00000000..f5bcf53a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5208f2d1a57a0f9e337e980177612ba1c03ba2ce3fb13fa44bd8c89364008a3 +size 23877 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-x.png new file mode 100644 index 00000000..ac3b8e4a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43fea1c19ee47afc154832ea9e696773eaf3d05a83e77cf9ea09369b7a73eb4 +size 23376 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-x@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-x@2x.png new file mode 100644 index 00000000..6cc56e7c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/Neuropol/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab49742ef81d55c51b1c09f6b3fa128d9d16a2fc5d7483fa2c4127c3f5ce2a4a +size 23564 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-0.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-0.png new file mode 100644 index 00000000..2565ff5d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b57f28c20c7e0f2366d358a26318f3b4ec13fba2d7dd9492c8c497e0a34faf +size 1079 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-0@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-0@2x.png new file mode 100644 index 00000000..5d849265 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb5dabb5ae057a4fdc66b948f5451cba23438bf34be947081003b4ef25d5877e +size 2387 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-1.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-1.png new file mode 100644 index 00000000..1411c31f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b60892794366d047930d91a995c29dcf2767824acb7164698bfadb3b5abfc648 +size 456 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-1@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-1@2x.png new file mode 100644 index 00000000..68fedfb3 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8971972244b36c6d9ed50b0f519e62a3fa6b43005915e380a2b0225a8dfe1ee6 +size 720 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-2.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-2.png new file mode 100644 index 00000000..d00b6827 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e28402dc3678bfef54869c59a96498cf107aa0e3c77562d5bcaadd9b82def9 +size 987 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-2@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-2@2x.png new file mode 100644 index 00000000..7998b285 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72cfba1f317bf2e445a29e7b53e6c6dd553ad6e1c4b01430e7de71b6278a05a +size 1915 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-3.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-3.png new file mode 100644 index 00000000..f1ca8605 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641fe7236d4d985bcd3f2e771abfeb2a4a24fa7f3030054d9be3a56820080005 +size 896 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-3@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-3@2x.png new file mode 100644 index 00000000..610fc4a3 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd3784d6a10d6547b7f270c3644d046f353495cbd8c31087d05f66e5d7b0acf +size 1805 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-4.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-4.png new file mode 100644 index 00000000..bf0ec7ed --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4e2c41d2cb6c715bb05a04c8502b5f2cab4881f866cb662f63d52e311fdcdd +size 793 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-4@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-4@2x.png new file mode 100644 index 00000000..9fcdf5cf --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f949373a4740dbc3d1097ded62b390fd8c702cc706f033d6692fc500ea4a3cf +size 1420 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-5.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-5.png new file mode 100644 index 00000000..d8864fd7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e3ff23023b92d045da877de49026883bc4ea03cc81217744771cb657c04759 +size 961 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-5@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-5@2x.png new file mode 100644 index 00000000..cfd1c032 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ebc6c1a92e14353b8ecad85c1da5b6e614e6cbdec260fafebaa8b76156f775 +size 1800 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-6.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-6.png new file mode 100644 index 00000000..1ffd82fc --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e22e7dcba5368218e937d1a416a57da8f6939032a1575ba7bc4c9adaacb16a8 +size 1026 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-6@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-6@2x.png new file mode 100644 index 00000000..e1ff282d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a6c204b234ed7042914685b09862e5a0ee6e1402ed1dd4771872c1036f226d +size 2096 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-7.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-7.png new file mode 100644 index 00000000..ca22b032 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc57c5890ff682963a32e77383d9c8e5821f9c867a328330fd4509b0956f108 +size 712 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-7@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-7@2x.png new file mode 100644 index 00000000..05a40eb0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e9eb010aae47611a900529197069c536a1604784fba3d74adcb3feadfbe5e9 +size 1320 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-8.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-8.png new file mode 100644 index 00000000..1a522d7d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fbc5dba92f24f227ac46bf13a5ec4eb5c15a4a9e76b469266fab26fc8f90afa +size 1069 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-8@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-8@2x.png new file mode 100644 index 00000000..87fdbe09 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f792a8f31e6bb87bb29c89cb893640ac169ad65184a76f2fc957260f2f037f26 +size 2398 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-9.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-9.png new file mode 100644 index 00000000..a9509351 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d64ec6e60fb7973e2fd80e2d734bf1f997f174be5f814021fd332b6b2b1779e +size 1039 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-9@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-9@2x.png new file mode 100644 index 00000000..72863a60 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a0c68e09d9e8e5b981d3a6d8880dff97e70a30ceb995c2f11735f95eec80165 +size 2101 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-comma.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-comma.png new file mode 100644 index 00000000..904a73c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c206ac24eb7cb723821ed39b47cdfe54886352a71fa9256dd620b4668bfffba +size 212 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-comma@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-comma@2x.png new file mode 100644 index 00000000..fe5d5116 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df298a4145e02adbb83e6443ea7fabe573438657812c58200f947f51e333cc9 +size 342 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-dot.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-dot.png new file mode 100644 index 00000000..904a73c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c206ac24eb7cb723821ed39b47cdfe54886352a71fa9256dd620b4668bfffba +size 212 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-dot@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-dot@2x.png new file mode 100644 index 00000000..fe5d5116 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df298a4145e02adbb83e6443ea7fabe573438657812c58200f947f51e333cc9 +size 342 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-percent.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-percent.png new file mode 100644 index 00000000..50333e9a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:657b2556958fa85558308f8d920aba408e32730798e0bcb8c0e29de16960418e +size 1490 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-percent@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-percent@2x.png new file mode 100644 index 00000000..f104ce84 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab2f24b69b60ae523ccafa714065703b7fe454aee731ac8d0ae1b80afc5c595 +size 4231 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-x.png new file mode 100644 index 00000000..265a9660 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed1d1101de9c2703a95ac2f03066ef39b9deb2219c8e93df90e5790149589d4 +size 863 diff --git a/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-x@2x.png b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-x@2x.png new file mode 100644 index 00000000..899f21fa --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/fonts/score/numbers-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f6167c53c815dc86d6d6eb612fff238dbfabb37d1ddb85c4b4bb91ea97d9c80 +size 2304 diff --git a/Skins/mario+bro+⌞DT⌝/go.png b/Skins/mario+bro+⌞DT⌝/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/mario+bro+⌞DT⌝/gos.wav b/Skins/mario+bro+⌞DT⌝/gos.wav new file mode 100644 index 00000000..8864a237 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977a135f0949a829b9a1fead56ef9c963d836921f96ccadb1b0401376ffdf93f +size 529244 diff --git a/Skins/mario+bro+⌞DT⌝/hit0.png b/Skins/mario+bro+⌞DT⌝/hit0.png new file mode 100644 index 00000000..5234ccdc --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4cd4105f144f84a339d748422a71a5d69ff9ae122e1b284e804f2387a7892b +size 68458 diff --git a/Skins/mario+bro+⌞DT⌝/hit0@2x.png b/Skins/mario+bro+⌞DT⌝/hit0@2x.png new file mode 100644 index 00000000..77419379 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cec0f85f6b145415a5a300c1e615b78012670f1d743c2d75688cf2e7c38af0b +size 46323 diff --git a/Skins/mario+bro+⌞DT⌝/hit100-0.png b/Skins/mario+bro+⌞DT⌝/hit100-0.png new file mode 100644 index 00000000..68dbe724 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d898134b6632193a84ce2b1b3fc24a148f6461c2146912b8e380fcd9cd5934f +size 7031 diff --git a/Skins/mario+bro+⌞DT⌝/hit100-0@2x.png b/Skins/mario+bro+⌞DT⌝/hit100-0@2x.png new file mode 100644 index 00000000..7086fc9d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1926c7306214d4dc4a866e9a4c0c1c79e2725b135de3f9a3045566b9be9a5191 +size 6643 diff --git a/Skins/mario+bro+⌞DT⌝/hit100.png b/Skins/mario+bro+⌞DT⌝/hit100.png new file mode 100644 index 00000000..3e46bf38 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9c6f284291dc3cf27cd2288e09c500c19cb412e6e8c71bcfe0c1086338dc2a +size 10869 diff --git a/Skins/mario+bro+⌞DT⌝/hit100@2x.png b/Skins/mario+bro+⌞DT⌝/hit100@2x.png new file mode 100644 index 00000000..165e1352 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bb8815e994d9919a5a94ef0ba18a5a4952814464bcb555cecf19af9c8ff49d +size 9905 diff --git a/Skins/mario+bro+⌞DT⌝/hit100k-0.png b/Skins/mario+bro+⌞DT⌝/hit100k-0.png new file mode 100644 index 00000000..e01a38ce --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda94ac254a8ca99742c643eaeecd87efd640a76ee49cf1ee4914d2356653cd8 +size 8624 diff --git a/Skins/mario+bro+⌞DT⌝/hit100k-0@2x.png b/Skins/mario+bro+⌞DT⌝/hit100k-0@2x.png new file mode 100644 index 00000000..6fe97234 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d2d65d765d7af47a87cd93106ef56033e146960ed490a738fd5a962e0bb837 +size 13252 diff --git a/Skins/mario+bro+⌞DT⌝/hit100k.png b/Skins/mario+bro+⌞DT⌝/hit100k.png new file mode 100644 index 00000000..6f8134aa --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d6d4701f8afe9162779fb4dc186aa00be7af09ad6275ae936f1081834e1d91 +size 14781 diff --git a/Skins/mario+bro+⌞DT⌝/hit100k@2x.png b/Skins/mario+bro+⌞DT⌝/hit100k@2x.png new file mode 100644 index 00000000..2f07b86a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0554d1f5f80c40db813f2e885d389c8451f5c042ea36b7a2d2aa33432e8ed3f7 +size 19758 diff --git a/Skins/mario+bro+⌞DT⌝/hit300-0.png b/Skins/mario+bro+⌞DT⌝/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/mario+bro+⌞DT⌝/hit300-1.png b/Skins/mario+bro+⌞DT⌝/hit300-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/hit300.png b/Skins/mario+bro+⌞DT⌝/hit300.png new file mode 100644 index 00000000..bebee13d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92a0efa1f778b60e87c45472aefff9eca355205f548c97922982369f4ca67f9 +size 15303 diff --git a/Skins/mario+bro+⌞DT⌝/hit300g-0.png b/Skins/mario+bro+⌞DT⌝/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/mario+bro+⌞DT⌝/hit300g-1.png b/Skins/mario+bro+⌞DT⌝/hit300g-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/hit300g.png b/Skins/mario+bro+⌞DT⌝/hit300g.png new file mode 100644 index 00000000..06898bd1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9dce9a7b07b046e0339f3d42f6533d4c192a82152a35c8604a6ca2acce8139 +size 15303 diff --git a/Skins/mario+bro+⌞DT⌝/hit300k-0.png b/Skins/mario+bro+⌞DT⌝/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/mario+bro+⌞DT⌝/hit300k-1.png b/Skins/mario+bro+⌞DT⌝/hit300k-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/hit300k.png b/Skins/mario+bro+⌞DT⌝/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/mario+bro+⌞DT⌝/hit50-0.png b/Skins/mario+bro+⌞DT⌝/hit50-0.png new file mode 100644 index 00000000..04fdf4c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd3ef4fa5cf3cf9ec672a847716ca09908cadf01ff1ad72c496646069c4055bb +size 6034 diff --git a/Skins/mario+bro+⌞DT⌝/hit50-0@2x.png b/Skins/mario+bro+⌞DT⌝/hit50-0@2x.png new file mode 100644 index 00000000..b088dfe1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dd52aac33996a5e10a5363e998e9c618c799e2f56b1ac3a061322a8116d9a1 +size 7141 diff --git a/Skins/mario+bro+⌞DT⌝/hit50.png b/Skins/mario+bro+⌞DT⌝/hit50.png new file mode 100644 index 00000000..264a897f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a6cfc5bcc530e434cdac196eef29720dfa14d41f3b8df2866d0753098108ee +size 8973 diff --git a/Skins/mario+bro+⌞DT⌝/hit50@2x.png b/Skins/mario+bro+⌞DT⌝/hit50@2x.png new file mode 100644 index 00000000..63298ee7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86411bd11e3ae0108701e2d3eaa4d208c894315e568b41329788c4d8ffcf6e3 +size 11102 diff --git a/Skins/mario+bro+⌞DT⌝/hit50k.png b/Skins/mario+bro+⌞DT⌝/hit50k.png new file mode 100644 index 00000000..1bb1aefd --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5df686512c766b19547deedfcf7972a1782cd49ebea59f4bcffebfa837e1b4f +size 5469 diff --git a/Skins/mario+bro+⌞DT⌝/hitcircle.png b/Skins/mario+bro+⌞DT⌝/hitcircle.png new file mode 100644 index 00000000..58edacff --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e081bcb246d426acaac852fa4a6cd05e5c6804989d0187301144679128d77ec +size 9659 diff --git a/Skins/mario+bro+⌞DT⌝/hitcircleoverlay.png b/Skins/mario+bro+⌞DT⌝/hitcircleoverlay.png new file mode 100644 index 00000000..e84ae01b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2242085fcfd0a3680fe53191a999547fe99a3703fbbae2925c799df6ef287b +size 8362 diff --git a/Skins/mario+bro+⌞DT⌝/inputoverlay-background.png b/Skins/mario+bro+⌞DT⌝/inputoverlay-background.png new file mode 100644 index 00000000..d6342498 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5627a634659f3eaa61467b92cab46191f02151bfdb1c83d313a16b448b4a47c +size 2987 diff --git a/Skins/mario+bro+⌞DT⌝/inputoverlay-background@2x.png b/Skins/mario+bro+⌞DT⌝/inputoverlay-background@2x.png new file mode 100644 index 00000000..94a4f350 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0858e0ed65d2c76eb09e43fae46bfa0f805a6a3be7cc9849139baf13d62ddcf8 +size 19917 diff --git a/Skins/mario+bro+⌞DT⌝/inputoverlay-key.png b/Skins/mario+bro+⌞DT⌝/inputoverlay-key.png new file mode 100644 index 00000000..53465a92 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd1a1d1611a4b769a400d050b2f72994daa2c0048c096108b8076cd842166b4 +size 2891 diff --git a/Skins/mario+bro+⌞DT⌝/inputoverlay-key@2x.png b/Skins/mario+bro+⌞DT⌝/inputoverlay-key@2x.png new file mode 100644 index 00000000..039db6f0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dde3d688088214131d26c8d0f9a2b1f91a56d8bb72a23ca34a32dffb3cc6f89 +size 17471 diff --git a/Skins/mario+bro+⌞DT⌝/lighting.png b/Skins/mario+bro+⌞DT⌝/lighting.png new file mode 100644 index 00000000..8eb3be76 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c3cab8e28625ca3587441fdde69fff068786ec2c2c999e6f9578753f7bc30b +size 11330 diff --git a/Skins/mario+bro+⌞DT⌝/lightingL-0.png b/Skins/mario+bro+⌞DT⌝/lightingL-0.png new file mode 100644 index 00000000..653f017a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/lightingL-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:073a8302725cec5d3b181f0efc8e36bacb134fba335a8adf6f0503ca87ec93f8 +size 3904 diff --git a/Skins/mario+bro+⌞DT⌝/lightingL-1.png b/Skins/mario+bro+⌞DT⌝/lightingL-1.png new file mode 100644 index 00000000..5885d0b0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/lightingL-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03890f0ef476f19337c0866e2a865b80b96ad634e010e5a9d342174435d39926 +size 3785 diff --git a/Skins/mario+bro+⌞DT⌝/lightingN.png b/Skins/mario+bro+⌞DT⌝/lightingN.png new file mode 100644 index 00000000..1197ed4f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/lightingN.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc0a3b4071bca9fbd231ee4a93c6ac6fd1e0f02edeb87bb81c32725633c43d8 +size 5478 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit0-0.png b/Skins/mario+bro+⌞DT⌝/mania-hit0-0.png new file mode 100644 index 00000000..e5bb33f5 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da071b074885256f239868bbc0bf3e41d6ea20f712df76b542ba87d3c7ac6cbc +size 14461 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit0.png b/Skins/mario+bro+⌞DT⌝/mania-hit0.png new file mode 100644 index 00000000..d905fc23 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96b8e95e3b578739d0725a8eadb5adaec36a2c1ded156dc93f4d33a382980ac +size 9020 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit100-0.png b/Skins/mario+bro+⌞DT⌝/mania-hit100-0.png new file mode 100644 index 00000000..41248f0e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f1fd6ce62db0db61284268f170760076c416b3e2478d9e269c3d2b4cb8139b +size 16428 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit100.png b/Skins/mario+bro+⌞DT⌝/mania-hit100.png new file mode 100644 index 00000000..7ed931f4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c777696768af49924adc7e18228f1608c1f89f27b9f2bd916a2e9c31e0ddfe +size 12675 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit200-0.png b/Skins/mario+bro+⌞DT⌝/mania-hit200-0.png new file mode 100644 index 00000000..423a3150 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit200-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b9d2adc3f0259b60c87e9ab6bb0f1a1263610aaa8d4afe4820fc13c0f8fb04 +size 19798 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit200.png b/Skins/mario+bro+⌞DT⌝/mania-hit200.png new file mode 100644 index 00000000..56419f03 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit200.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6552d79b977d7055f26f46ad7ab436e9b87c69a7c25a6279cf6fd52be171029d +size 14164 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300-0.png b/Skins/mario+bro+⌞DT⌝/mania-hit300-0.png new file mode 100644 index 00000000..f9b00fb6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05016adab3a570ee7ec832bf8075684215a2707ab77892f6170daa1fcbd56d66 +size 18635 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300.png b/Skins/mario+bro+⌞DT⌝/mania-hit300.png new file mode 100644 index 00000000..a0ae0587 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e16515153919891f328b1e9f009a571bc93cd89ed84f737c12140685445e75 +size 12990 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-0.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-0.png new file mode 100644 index 00000000..16c18615 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6910bd4335dce840def95ec38ca18440b86c1bb64d07642029377faac10ffb25 +size 27852 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-1.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-1.png new file mode 100644 index 00000000..1ba07d98 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcec512a13767878025483517453f10e689e068d88c4c0ef990aad1fd9753aa +size 27869 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-2.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-2.png new file mode 100644 index 00000000..d92d682e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b9ca5c89e3a9388d31951e15b99c8c530c3fd1eafafaab9b3df3a40521c80b2 +size 27858 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-3.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-3.png new file mode 100644 index 00000000..dd6455c2 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634ad6845e9281b4b384c2f7d641d8b60faa18bebf39bfa5deb322b43960cde8 +size 27924 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-4.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-4.png new file mode 100644 index 00000000..2806a767 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ab4301fd792083efb5ff8cdf1fdc5a9a337a25d8a98ee0fc0a807b27459109 +size 27994 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-5.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-5.png new file mode 100644 index 00000000..c44c021c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18e1e42d1fc72fa3fb4e26b39fead5665f6c33e4781117fccb2d36b18f167354 +size 27876 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-6.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-6.png new file mode 100644 index 00000000..ec11a550 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2732a2addb518f12d5559bf57daf57e9956d284d0d8e8cb77f747282005c4d1 +size 27936 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-7.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-7.png new file mode 100644 index 00000000..4b08b79b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d0101faa42a79aec9f70e2245155d39dbe3b57e9e8c39081af659a371d3a07 +size 27921 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-8.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-8.png new file mode 100644 index 00000000..bad588d6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d1a5a5741bb818e40484ba6c5b44f068db5530367f81b28a5c35f637139038 +size 27866 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g-9.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g-9.png new file mode 100644 index 00000000..95d3b19f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94af96be7bea7c166dd7c1e48190d5b8692d01d677f60f4e553a4e1f5a890eec +size 27942 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit300g.png b/Skins/mario+bro+⌞DT⌝/mania-hit300g.png new file mode 100644 index 00000000..7b0cfaaf --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc03b1100e58ec1d79d882e1c5b6a2d6cba8f8b37c8c3254080c1971b176e22 +size 17805 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit50-0.png b/Skins/mario+bro+⌞DT⌝/mania-hit50-0.png new file mode 100644 index 00000000..c5f9e5d9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf69ffb78535a048a5504b3e42976bd5078b14a1de3e291af688567fc0d6d7b +size 16371 diff --git a/Skins/mario+bro+⌞DT⌝/mania-hit50.png b/Skins/mario+bro+⌞DT⌝/mania-hit50.png new file mode 100644 index 00000000..a590c757 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d52c385c21054520a8c78b4c3532b484ccbeb5a1d5c995faa0234c8ebe1c5c +size 11204 diff --git a/Skins/mario+bro+⌞DT⌝/mania-key1.PNG b/Skins/mario+bro+⌞DT⌝/mania-key1.PNG new file mode 100644 index 00000000..998c4925 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-key1.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b9ad178ee501abefb8722de0559fef01d50623a4aaf85af616c67a3f61c38c +size 5923 diff --git a/Skins/mario+bro+⌞DT⌝/mania-key1D.PNG b/Skins/mario+bro+⌞DT⌝/mania-key1D.PNG new file mode 100644 index 00000000..afee5551 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-key1D.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2d681fcfdffa5275fa3efa153a8af1ca63b4057f9fadccd38440ab3df25253 +size 5953 diff --git a/Skins/mario+bro+⌞DT⌝/mania-key2.PNG b/Skins/mario+bro+⌞DT⌝/mania-key2.PNG new file mode 100644 index 00000000..9a39bf48 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-key2.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc3b8ac80295d0814e7d7ac9fabb396249c6b46178da2e15ffd30c002e43a50 +size 5923 diff --git a/Skins/mario+bro+⌞DT⌝/mania-key2D.png b/Skins/mario+bro+⌞DT⌝/mania-key2D.png new file mode 100644 index 00000000..9a39bf48 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-key2D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc3b8ac80295d0814e7d7ac9fabb396249c6b46178da2e15ffd30c002e43a50 +size 5923 diff --git a/Skins/mario+bro+⌞DT⌝/mania-keyS.PNG b/Skins/mario+bro+⌞DT⌝/mania-keyS.PNG new file mode 100644 index 00000000..6f408950 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-keyS.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93004451537cad0cd08a5d1f17369dd989a1f6555861cd6a756c7171d33475a4 +size 5924 diff --git a/Skins/mario+bro+⌞DT⌝/mania-keySD.PNG b/Skins/mario+bro+⌞DT⌝/mania-keySD.PNG new file mode 100644 index 00000000..a9c93957 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-keySD.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f355a61bcd5bd441ae8269231872cb3930781514e12cb7f805dde8e29242c2f +size 5924 diff --git a/Skins/mario+bro+⌞DT⌝/mania-note1.png b/Skins/mario+bro+⌞DT⌝/mania-note1.png new file mode 100644 index 00000000..13149885 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-note1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:288a3f9438c9d7bf6c428f207b0e8f7b2c6bde599c3030159946afe0e5b00b00 +size 8421 diff --git a/Skins/mario+bro+⌞DT⌝/mania-note1H.png b/Skins/mario+bro+⌞DT⌝/mania-note1H.png new file mode 100644 index 00000000..d4089cd9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-note1H.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82514126a942ff698f3cbc47498542e498f28b7dc439f960c30aee9c985dc964 +size 7539 diff --git a/Skins/mario+bro+⌞DT⌝/mania-note1L.png b/Skins/mario+bro+⌞DT⌝/mania-note1L.png new file mode 100644 index 00000000..c06a5958 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-note1L.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26bbde8cb2f322b75b5d52a8b14a3cc804e43d56b4df00dac7eac89d1b961f9 +size 2196 diff --git a/Skins/mario+bro+⌞DT⌝/mania-note2.png b/Skins/mario+bro+⌞DT⌝/mania-note2.png new file mode 100644 index 00000000..29b94cbb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-note2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f34c5aa2715cf1cd3a29d89139906d642f6b684db9e46a429346d8317005a67 +size 9946 diff --git a/Skins/mario+bro+⌞DT⌝/mania-note2H.png b/Skins/mario+bro+⌞DT⌝/mania-note2H.png new file mode 100644 index 00000000..e8c7a28c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-note2H.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f834f018ea26b221f3aa638abdf623a818f7d9ce5f8f6090340c7a09f043f433 +size 5990 diff --git a/Skins/mario+bro+⌞DT⌝/mania-note2l.png b/Skins/mario+bro+⌞DT⌝/mania-note2l.png new file mode 100644 index 00000000..43205d85 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-note2l.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af46313026693817e3170c89355bb9f23a632a399ad321d4e942faafb8c087c3 +size 2376 diff --git a/Skins/mario+bro+⌞DT⌝/mania-noteS.png b/Skins/mario+bro+⌞DT⌝/mania-noteS.png new file mode 100644 index 00000000..3c6e1daf --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-noteS.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e75b6aa54b03779e9d5f2eb0db2b3f8d6c15a5e60af37677ec09f07ef7e1c1 +size 15479 diff --git a/Skins/mario+bro+⌞DT⌝/mania-noteSH.png b/Skins/mario+bro+⌞DT⌝/mania-noteSH.png new file mode 100644 index 00000000..59ee201b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-noteSH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3cd13780da761638ceb6561988461068023b7ce58255a10507680b252f914a +size 8568 diff --git a/Skins/mario+bro+⌞DT⌝/mania-noteSL.png b/Skins/mario+bro+⌞DT⌝/mania-noteSL.png new file mode 100644 index 00000000..c7d1e2fa --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-noteSL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88690376f1b62a80081600435e0292c4cd6d058bc8c33df481e5c2330e4786ba +size 3103 diff --git a/Skins/mario+bro+⌞DT⌝/mania-stage-bottom.png b/Skins/mario+bro+⌞DT⌝/mania-stage-bottom.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-stage-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/mario+bro+⌞DT⌝/mania-stage-hint.png b/Skins/mario+bro+⌞DT⌝/mania-stage-hint.png new file mode 100644 index 00000000..56743fe6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-stage-hint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d76c3c3104578ea36d9223f23236ce2ff5a314deca10a3b28a88c57fb36a2bf +size 3212 diff --git a/Skins/mario+bro+⌞DT⌝/mania-stage-left.png b/Skins/mario+bro+⌞DT⌝/mania-stage-left.png new file mode 100644 index 00000000..ece6cb8f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-stage-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c6fc11147f667ac4f871e3d1c918d704c19b3416777b411fca6880dea10d9c +size 2892 diff --git a/Skins/mario+bro+⌞DT⌝/mania-stage-light.png b/Skins/mario+bro+⌞DT⌝/mania-stage-light.png new file mode 100644 index 00000000..4ee41511 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-stage-light.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907d3a6835e1874a11a8602cc535aa347e056cc06b3e408ff515ce4019760b56 +size 7826 diff --git a/Skins/mario+bro+⌞DT⌝/mania-stage-right.png b/Skins/mario+bro+⌞DT⌝/mania-stage-right.png new file mode 100644 index 00000000..ece6cb8f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mania-stage-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c6fc11147f667ac4f871e3d1c918d704c19b3416777b411fca6880dea10d9c +size 2892 diff --git a/Skins/mario+bro+⌞DT⌝/menu-back-0.png b/Skins/mario+bro+⌞DT⌝/menu-back-0.png new file mode 100644 index 00000000..e85dc007 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-back-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f50fe9ce8393f20a3de8c778a789f5d5781221ad6e7124ee21670e393cfb90 +size 19878 diff --git a/Skins/mario+bro+⌞DT⌝/menu-back-1.png b/Skins/mario+bro+⌞DT⌝/menu-back-1.png new file mode 100644 index 00000000..bf81bc78 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-back-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837c04a27f7ba5e044cf92cd727c09202157d701db4f399bc3f0e65c05f08cec +size 19256 diff --git a/Skins/mario+bro+⌞DT⌝/menu-back-2.png b/Skins/mario+bro+⌞DT⌝/menu-back-2.png new file mode 100644 index 00000000..cba15f4d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-back-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2459caae91ec8ec802b3049fee5512ae768f63b488c4b9ccc6a9116d5ec4285c +size 21129 diff --git a/Skins/mario+bro+⌞DT⌝/menu-back-3.png b/Skins/mario+bro+⌞DT⌝/menu-back-3.png new file mode 100644 index 00000000..2dc5bac2 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-back-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74afbeff99773bda8c5838c9c4fe5f3720be0f896bbbc5fb9da277b4e2b2a72f +size 19892 diff --git a/Skins/mario+bro+⌞DT⌝/menu-back-4.png b/Skins/mario+bro+⌞DT⌝/menu-back-4.png new file mode 100644 index 00000000..f1962043 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-back-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ff3e8d7c7d8e4493cc64d343fd69ba73b3cbc68a03a3d0123ac0d0595c289e +size 19437 diff --git a/Skins/mario+bro+⌞DT⌝/menu-back-5.png b/Skins/mario+bro+⌞DT⌝/menu-back-5.png new file mode 100644 index 00000000..aac0d24e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-back-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5410d4639688df286e0fa3c0b2b8fcd8121e9cc1eb27c1b3afc162249f437888 +size 20696 diff --git a/Skins/mario+bro+⌞DT⌝/menu-back-6.png b/Skins/mario+bro+⌞DT⌝/menu-back-6.png new file mode 100644 index 00000000..304c254f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-back-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95efa8506a188d694224284daf61527aea0a65bb7eddb0254614ba707fb7c427 +size 20945 diff --git a/Skins/mario+bro+⌞DT⌝/menu-back-7.png b/Skins/mario+bro+⌞DT⌝/menu-back-7.png new file mode 100644 index 00000000..47f2177e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-back-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f46ce04bc3b3d875aa5863a2db73e9f849daad4e5414cb1b37042caea1f1992 +size 20367 diff --git a/Skins/mario+bro+⌞DT⌝/menu-back.png b/Skins/mario+bro+⌞DT⌝/menu-back.png new file mode 100644 index 00000000..f196bb76 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a127e892040eca4ccb117e67d18e74d85519e0cc7a532e7843ef68e4bcde1e02 +size 4720 diff --git a/Skins/mario+bro+⌞DT⌝/menu-background.jpg b/Skins/mario+bro+⌞DT⌝/menu-background.jpg new file mode 100644 index 00000000..e4b72993 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd651209524ab0284fd8155552f894a8c1e80210d90eacaeb9fb6e4065b1ea1 +size 67509 diff --git a/Skins/mario+bro+⌞DT⌝/menu-button-background.png b/Skins/mario+bro+⌞DT⌝/menu-button-background.png new file mode 100644 index 00000000..e6adcb54 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea7528f475e5692454e34b895ed562cce1e88e329bc749f68145c97ae9e2d67 +size 3391 diff --git a/Skins/mario+bro+⌞DT⌝/menu-button-background@2x.png b/Skins/mario+bro+⌞DT⌝/menu-button-background@2x.png new file mode 100644 index 00000000..1cb59a11 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dbdef6ca050db971b0b8db04242ca42139c23098babcf979538cbd7660d19ff +size 5241 diff --git a/Skins/mario+bro+⌞DT⌝/menu-snow.png b/Skins/mario+bro+⌞DT⌝/menu-snow.png new file mode 100644 index 00000000..32d1a5d0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62c437bd213b367eb0ab7516b76dbf6098794953d5207954d08d5a185b5d80f4 +size 3421 diff --git a/Skins/mario+bro+⌞DT⌝/menu-snow1.png b/Skins/mario+bro+⌞DT⌝/menu-snow1.png new file mode 100644 index 00000000..dc21ddc5 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-snow1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0787643aa61f53ab551f06a9affd682827acedbd20152b3bd269c5f41508a170 +size 7369 diff --git a/Skins/mario+bro+⌞DT⌝/menu-snow2.png b/Skins/mario+bro+⌞DT⌝/menu-snow2.png new file mode 100644 index 00000000..956bd6dd --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-snow2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eec751df199a7702fb586f85158bf6e0c1d3de38df322399f7e94ef5a84467be +size 21621 diff --git a/Skins/mario+bro+⌞DT⌝/menu-snow3.png b/Skins/mario+bro+⌞DT⌝/menu-snow3.png new file mode 100644 index 00000000..75a4d560 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-snow3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477d13f278a0891399bb4e0b8aa570d7f41833866edd2417d16173a83a51b155 +size 15972 diff --git a/Skins/mario+bro+⌞DT⌝/menu-snow4.png b/Skins/mario+bro+⌞DT⌝/menu-snow4.png new file mode 100644 index 00000000..fcadd23c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menu-snow4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b98a07e766d159a5c984476ad9ec521fc69dcb9e956a13a93a81c06fde4f967 +size 21544 diff --git a/Skins/mario+bro+⌞DT⌝/menuback.wav b/Skins/mario+bro+⌞DT⌝/menuback.wav new file mode 100644 index 00000000..4501f2c0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da19d7a7e360a9c869bbd7d87ec361cb62067776b332ec129f4fd7e05b36414a +size 44650 diff --git a/Skins/mario+bro+⌞DT⌝/menuclick.wav b/Skins/mario+bro+⌞DT⌝/menuclick.wav new file mode 100644 index 00000000..5bb12cb7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3a82cb6d7ffae7821c9ebf6e5e3683ce31def100a2b6894cc46c941e74bbcc +size 26804 diff --git a/Skins/mario+bro+⌞DT⌝/menuhit.wav b/Skins/mario+bro+⌞DT⌝/menuhit.wav new file mode 100644 index 00000000..d317abac --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c291b8e9e323be085c1ecbfd8872a1c29a36ca4322bbe3b5de8ce905153c50 +size 71874 diff --git a/Skins/mario+bro+⌞DT⌝/mode-osu-small.png b/Skins/mario+bro+⌞DT⌝/mode-osu-small.png new file mode 100644 index 00000000..bdd4a952 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ea3d53625e57ce0f02d5b5e835d8acf0f245a73451828a0a55b74f29b28586 +size 231707 diff --git a/Skins/mario+bro+⌞DT⌝/mode-osu-small@2x.png b/Skins/mario+bro+⌞DT⌝/mode-osu-small@2x.png new file mode 100644 index 00000000..9d695a6a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4735b34205fc5390c1f8b014e1a6154a1f4165c153c2cd409877a08de069ce7e +size 578947 diff --git a/Skins/mario+bro+⌞DT⌝/nightcore-clap.wav b/Skins/mario+bro+⌞DT⌝/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/mario+bro+⌞DT⌝/nightcore-finish.wav b/Skins/mario+bro+⌞DT⌝/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/mario+bro+⌞DT⌝/nightcore-hat.wav b/Skins/mario+bro+⌞DT⌝/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/mario+bro+⌞DT⌝/nightcore-kick.wav b/Skins/mario+bro+⌞DT⌝/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/mario+bro+⌞DT⌝/normal-hitclap.wav b/Skins/mario+bro+⌞DT⌝/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/mario+bro+⌞DT⌝/normal-hitclap2.wav b/Skins/mario+bro+⌞DT⌝/normal-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/normal-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/mario+bro+⌞DT⌝/normal-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/mario+bro+⌞DT⌝/normal-hitfinish2.wav b/Skins/mario+bro+⌞DT⌝/normal-hitfinish2.wav new file mode 100644 index 00000000..ce87097b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/normal-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f08f44fb21bf8b838f4a5e4d030464470c30ab8c5e8acab18e79f47f0263ea4 +size 291392 diff --git a/Skins/mario+bro+⌞DT⌝/normal-hitnormal.wav b/Skins/mario+bro+⌞DT⌝/normal-hitnormal.wav new file mode 100644 index 00000000..b9a89269 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f56e5ad20b2f123a8b467c58e8a649a7c4665c6ebf50aaa976619ebeacdc206 +size 26084 diff --git a/Skins/mario+bro+⌞DT⌝/normal-hitnormal2.wav b/Skins/mario+bro+⌞DT⌝/normal-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/normal-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/mario+bro+⌞DT⌝/normal-hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/mario+bro+⌞DT⌝/normal-hitwhistle2.wav b/Skins/mario+bro+⌞DT⌝/normal-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/normal-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/mario+bro+⌞DT⌝/normal-hitwistle.wav b/Skins/mario+bro+⌞DT⌝/normal-hitwistle.wav new file mode 100644 index 00000000..7ca41433 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/normal-hitwistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f770d06b30853c8ed6b25464af6cf7b7f3f68c332dc8bcfa4ea23076f5445965 +size 13185 diff --git a/Skins/mario+bro+⌞DT⌝/pause-back-click.wav b/Skins/mario+bro+⌞DT⌝/pause-back-click.wav new file mode 100644 index 00000000..5193200e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/pause-back-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ab217523b31c417771313827bbcb149908135412a1c7d326743e64955671b6 +size 44762 diff --git a/Skins/mario+bro+⌞DT⌝/pause-back.png b/Skins/mario+bro+⌞DT⌝/pause-back.png new file mode 100644 index 00000000..6bb32084 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580936368f2c2cd7b486d63ecf5d34edb9dad21c3aa96b54ded3a0e941f95de0 +size 3517 diff --git a/Skins/mario+bro+⌞DT⌝/pause-continue.png b/Skins/mario+bro+⌞DT⌝/pause-continue.png new file mode 100644 index 00000000..68733ac9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7cef5a767b2854d71e2295f8c0c0f824a48032e2027a1b0e85419c821c56a9 +size 4575 diff --git a/Skins/mario+bro+⌞DT⌝/pause-overlay.png b/Skins/mario+bro+⌞DT⌝/pause-overlay.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/mario+bro+⌞DT⌝/pause-replay.png b/Skins/mario+bro+⌞DT⌝/pause-replay.png new file mode 100644 index 00000000..63503643 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed18ee8aec959ac6ce0a33f378fd0bacb62c4ab3bd28fcd5ed543b7caaa6f631 +size 5955 diff --git a/Skins/mario+bro+⌞DT⌝/pause-retry-click.wav b/Skins/mario+bro+⌞DT⌝/pause-retry-click.wav new file mode 100644 index 00000000..ef16944e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/pause-retry-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91955f9b27e8e44e01bb687bd15c2906f1a5eff1951ed3603cf1f9dd77aa3515 +size 333002 diff --git a/Skins/mario+bro+⌞DT⌝/pause-retry.png b/Skins/mario+bro+⌞DT⌝/pause-retry.png new file mode 100644 index 00000000..7e98bff1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0007656e542e769fe1c7a69772136a9c1deaceaf4d96c1e618d06c34ef76dac0 +size 4515 diff --git a/Skins/mario+bro+⌞DT⌝/play-skip.png b/Skins/mario+bro+⌞DT⌝/play-skip.png new file mode 100644 index 00000000..14945822 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ddfca5dc86d16bb3a4058da6f0da956ef70f8cb8e9d7606a6566f8ee0df8420 +size 6743 diff --git a/Skins/mario+bro+⌞DT⌝/play-warningarrow.png b/Skins/mario+bro+⌞DT⌝/play-warningarrow.png new file mode 100644 index 00000000..10c8f84d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112eb439a978a017aaa5e4bbfc91721634f2417fcaddada10b413e394beb88be +size 2759 diff --git a/Skins/mario+bro+⌞DT⌝/playfield.png b/Skins/mario+bro+⌞DT⌝/playfield.png new file mode 100644 index 00000000..40a61d93 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d3fbf590a584138bb563319747dbef0c9e41db91f19ff45d41e785a5f4f98 +size 2808 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-A.png b/Skins/mario+bro+⌞DT⌝/ranking-A.png new file mode 100644 index 00000000..35fbd819 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb8019a3a8cae0e107269142f3d6ab66a1f5c06a1cfd268701d37f72a6e106e +size 740628 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-B.png b/Skins/mario+bro+⌞DT⌝/ranking-B.png new file mode 100644 index 00000000..1b922efd --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e35a3870856a51d4c9d12cc7e9837be630abf98bddf544942386baaaa4c1898a +size 710628 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-C.png b/Skins/mario+bro+⌞DT⌝/ranking-C.png new file mode 100644 index 00000000..61e34cfc --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe28fdbe3835f2ab0e81bce27ed2171deb8322db0b0de8f35dff0b9ce141fe26 +size 667262 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-D.png b/Skins/mario+bro+⌞DT⌝/ranking-D.png new file mode 100644 index 00000000..f11a0716 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ed5af26a748dd217960d26eb5992b817f02e7d240607988df21cf6b7a6688f +size 716052 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-S-small.png b/Skins/mario+bro+⌞DT⌝/ranking-S-small.png new file mode 100644 index 00000000..75ebbfc7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c741c264f4aa74d3c1ebe5194ee90c6d7187250ba8328ab46f1012cc2ec3e940 +size 5099 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-S.png b/Skins/mario+bro+⌞DT⌝/ranking-S.png new file mode 100644 index 00000000..73d75963 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9243033fb39f26fe0c70277ae114a6f893a5f9e08230433d9387d5fe3b80ebf +size 681723 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-SH-small.png b/Skins/mario+bro+⌞DT⌝/ranking-SH-small.png new file mode 100644 index 00000000..4313896f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c615d8c96e059aa6d8c144c14ecd9f0e6ce37fd2fdd23ca6de5c2cb7fb17017d +size 5388 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-SH.PNG b/Skins/mario+bro+⌞DT⌝/ranking-SH.PNG new file mode 100644 index 00000000..c6c5aebe --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-SH.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7051a877e9d49625bef10357f7a1ecc7b514652163503470df9cf4efca966a +size 681723 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-SH@2x.png b/Skins/mario+bro+⌞DT⌝/ranking-SH@2x.png new file mode 100644 index 00000000..a8e8edff --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4f221623c6e1f908dbb01c44735870164d8c0c2faf7feab0b9dc2dfeea484e6 +size 224808 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-X-small.png b/Skins/mario+bro+⌞DT⌝/ranking-X-small.png new file mode 100644 index 00000000..cf17e802 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc5e5996ca31f063063e6f6c059889ef1c4b4bd8aef5380f287c715b547404d +size 6303 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-X.png b/Skins/mario+bro+⌞DT⌝/ranking-X.png new file mode 100644 index 00000000..f9e0de2c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f627155afd9e12dd265163e252c80f2a4edcce87a2afa3f7040b5d11b708a7c +size 772615 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-XH-small.png b/Skins/mario+bro+⌞DT⌝/ranking-XH-small.png new file mode 100644 index 00000000..55f1ff42 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66da2273914ef67dba6ecda73f985f97f669516ef2f5543ca801d997434bab73 +size 1923 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-XH.png b/Skins/mario+bro+⌞DT⌝/ranking-XH.png new file mode 100644 index 00000000..3248f35d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159156471e643f97e06423e7be386fdc3b5d8b9fcdc7a81b91fb41d82cfeca6d +size 772615 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-XH@2x.png b/Skins/mario+bro+⌞DT⌝/ranking-XH@2x.png new file mode 100644 index 00000000..6cf2120c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab810c2a3dcbd82d6ba2db1194fc979f79853367af0d8b9a1bbcdd994034d87e +size 241118 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-a-small.png b/Skins/mario+bro+⌞DT⌝/ranking-a-small.png new file mode 100644 index 00000000..59e89760 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e66125def3ab2b0d8633abe54701f057437ec8000e31c0c55d8ff16806f15b +size 5411 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-accuracy.png b/Skins/mario+bro+⌞DT⌝/ranking-accuracy.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-accuracy@2x.png b/Skins/mario+bro+⌞DT⌝/ranking-accuracy@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-accuracy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-b-small.png b/Skins/mario+bro+⌞DT⌝/ranking-b-small.png new file mode 100644 index 00000000..baec490f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99dc7b1c5991089401f2c3cbef121a644e3f9e98741ea090fd7717b81f7bca46 +size 5122 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-background-overlay.png b/Skins/mario+bro+⌞DT⌝/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-c-small.png b/Skins/mario+bro+⌞DT⌝/ranking-c-small.png new file mode 100644 index 00000000..9222e634 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44962b9d6d5080d8f887cd97f75f75776357b428a131a28140bb9d3be3aced6a +size 4943 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-d-small.png b/Skins/mario+bro+⌞DT⌝/ranking-d-small.png new file mode 100644 index 00000000..8d622f03 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc7ccc3da854e458be2bcf99b404a5ed84d58d6029cb54f3443d8f8827056be +size 5411 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-graph.png b/Skins/mario+bro+⌞DT⌝/ranking-graph.png new file mode 100644 index 00000000..4ff7d939 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572389c718623a50a2364fa20450f9081fd4e2fa8dcd44c01ec5499be63bbee3 +size 14990 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-graph@2x.png b/Skins/mario+bro+⌞DT⌝/ranking-graph@2x.png new file mode 100644 index 00000000..5b48f1eb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d69391531d00d216e8b862eba468fd6cd8ca0fa555e87d4b188df1367b5e73 +size 19091 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-maxcombo.png b/Skins/mario+bro+⌞DT⌝/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-maxcombo@2x.png b/Skins/mario+bro+⌞DT⌝/ranking-maxcombo@2x.png new file mode 100644 index 00000000..50b4678f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-maxcombo@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15e68c4df37076d1afb55b84fcd970819c8f72a6697e1a4abe05528cb91431a +size 3001 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-panel.png b/Skins/mario+bro+⌞DT⌝/ranking-panel.png new file mode 100644 index 00000000..4f385efe --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b906d421336ff4a1bcf4235cabe2cca5beeda4dda5737f61c460ce69774493 +size 55287 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-paneld.png b/Skins/mario+bro+⌞DT⌝/ranking-paneld.png new file mode 100644 index 00000000..165f8328 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-paneld.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3591ce04889971718783b21b184b7eb636b1166ddaaa07e5a936d008f1b20d89 +size 88129 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-panelg.png b/Skins/mario+bro+⌞DT⌝/ranking-panelg.png new file mode 100644 index 00000000..beaf2f55 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-panelg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c780c9bb402605d059297480528c160c115f268f04b86f864859c70fdaa844 +size 7822 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-perfect.png b/Skins/mario+bro+⌞DT⌝/ranking-perfect.png new file mode 100644 index 00000000..7aed2ba1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9180009fc765b8bd5db49b8cdc5d021393b29932de37f4f1bbfa8a3f70009a6c +size 2877 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-perfect@2x.png b/Skins/mario+bro+⌞DT⌝/ranking-perfect@2x.png new file mode 100644 index 00000000..c088861b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46670989e480c88cc7166a46ce0ac418afc9359e04a686a964994f23b8ad5d9 +size 414695 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-title@2x.png b/Skins/mario+bro+⌞DT⌝/ranking-title@2x.png new file mode 100644 index 00000000..582917ea --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-title@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeebf7516c56af4262e18f3f8c0edbcf9b0a3d9292da187e55560a2ee31e629c +size 24173 diff --git a/Skins/mario+bro+⌞DT⌝/ranking-winner.png b/Skins/mario+bro+⌞DT⌝/ranking-winner.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/ready.png b/Skins/mario+bro+⌞DT⌝/ready.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/ready.wav b/Skins/mario+bro+⌞DT⌝/ready.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/ready.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/mario+bro+⌞DT⌝/reversearrow.png b/Skins/mario+bro+⌞DT⌝/reversearrow.png new file mode 100644 index 00000000..3a4123c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3be208daa5aa613f84a68be2611e5bcb7c18ba9a221631c81f0cefb601b7a4f +size 4982 diff --git a/Skins/mario+bro+⌞DT⌝/score-0.png b/Skins/mario+bro+⌞DT⌝/score-0.png new file mode 100644 index 00000000..8bd54724 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49010a02054eda89dfe00d9e536243f9cf85462f6a5acb0fa1d361b47d848fc +size 4370 diff --git a/Skins/mario+bro+⌞DT⌝/score-1.png b/Skins/mario+bro+⌞DT⌝/score-1.png new file mode 100644 index 00000000..20d8c3f4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058a3378bc1450d9f9a7eca7e795293615cf8b1674746ed2dd635dfacf6d6029 +size 3437 diff --git a/Skins/mario+bro+⌞DT⌝/score-2.png b/Skins/mario+bro+⌞DT⌝/score-2.png new file mode 100644 index 00000000..46698ecd --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e787f61b14c6eeba743374147e45058892fc54e0e3c73423ef4e591489b5a7 +size 4006 diff --git a/Skins/mario+bro+⌞DT⌝/score-3.png b/Skins/mario+bro+⌞DT⌝/score-3.png new file mode 100644 index 00000000..0a57da44 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a775d0462dc3dbc52175c45c2369eaab054e040168b115da68ec07708c26f6ee +size 4139 diff --git a/Skins/mario+bro+⌞DT⌝/score-4.png b/Skins/mario+bro+⌞DT⌝/score-4.png new file mode 100644 index 00000000..35ec7cc3 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d908cb8797ee05ee050dca3c74190d186e574861117652829e2f7b2a8192813 +size 4019 diff --git a/Skins/mario+bro+⌞DT⌝/score-5.png b/Skins/mario+bro+⌞DT⌝/score-5.png new file mode 100644 index 00000000..35791022 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784664ff70d0ce821cda5267b55b8103bc523c7585a86104b93e7711d8660878 +size 3995 diff --git a/Skins/mario+bro+⌞DT⌝/score-6.png b/Skins/mario+bro+⌞DT⌝/score-6.png new file mode 100644 index 00000000..b264557f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4833a5808e3d68902f2f0d3b4ada18ca1b17d5a0f90cb2c6178e35e7d39d74a2 +size 4527 diff --git a/Skins/mario+bro+⌞DT⌝/score-7.png b/Skins/mario+bro+⌞DT⌝/score-7.png new file mode 100644 index 00000000..2a24a62b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ec4ac6955ece25d9e3722a13f37c06bbdfbe39b02b903a664a53e216346b19 +size 3820 diff --git a/Skins/mario+bro+⌞DT⌝/score-8.png b/Skins/mario+bro+⌞DT⌝/score-8.png new file mode 100644 index 00000000..74d5f29c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aae9488caddb3e6669db3025fd03cf252ff653e37d35d5ac5a22705c9632c1c +size 4652 diff --git a/Skins/mario+bro+⌞DT⌝/score-9.png b/Skins/mario+bro+⌞DT⌝/score-9.png new file mode 100644 index 00000000..994ec634 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1750492b06b2d7906de17d2efdde35316922796436a262737337c6a350b420d8 +size 4559 diff --git a/Skins/mario+bro+⌞DT⌝/score-comma.png b/Skins/mario+bro+⌞DT⌝/score-comma.png new file mode 100644 index 00000000..17b20f05 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b51f909a9917ecf55cc0d75e8e38bc0856df5f835c260c802fc67e509c88650 +size 3146 diff --git a/Skins/mario+bro+⌞DT⌝/score-dot.png b/Skins/mario+bro+⌞DT⌝/score-dot.png new file mode 100644 index 00000000..ae074ae5 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:080d639e7aaee4937bafd916269aa6c159891514d1243410b083a9c73511b7b3 +size 3028 diff --git a/Skins/mario+bro+⌞DT⌝/score-percent.png b/Skins/mario+bro+⌞DT⌝/score-percent.png new file mode 100644 index 00000000..d00f764c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86283da1e0e9afb3d1671a29bc9d7a7600b88e4a1d531084ec3ddecb9dd6d24c +size 5041 diff --git a/Skins/mario+bro+⌞DT⌝/score-x.png b/Skins/mario+bro+⌞DT⌝/score-x.png new file mode 100644 index 00000000..42cec5e2 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68cad64d99c4a3838d6df52d0565c93e9cf6be6c2fdb3ab8a689cfb72a1abdd +size 3601 diff --git a/Skins/mario+bro+⌞DT⌝/scorebar-bg.png b/Skins/mario+bro+⌞DT⌝/scorebar-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/scorebar-bg@2x - copia.png b/Skins/mario+bro+⌞DT⌝/scorebar-bg@2x - copia.png new file mode 100644 index 00000000..25cf8fb9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/scorebar-bg@2x - copia.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12daf693520b762560134cb598c28ba6a43d938d95235fab29b804efe1ea1cad +size 4085 diff --git a/Skins/mario+bro+⌞DT⌝/scorebar-bg@2x.png b/Skins/mario+bro+⌞DT⌝/scorebar-bg@2x.png new file mode 100644 index 00000000..70c2a651 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:861cc101c139dfe9c455b9196266d235c5f87e914d25ced6273ee55e7d5b29c3 +size 6144 diff --git a/Skins/mario+bro+⌞DT⌝/scorebar-colour.png b/Skins/mario+bro+⌞DT⌝/scorebar-colour.png new file mode 100644 index 00000000..a91cc5c5 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:262e87c88ea66a1663557281b2c28dedf1b562f207bf8bfc6570a3795c933866 +size 1775 diff --git a/Skins/mario+bro+⌞DT⌝/scorebar-ki.png b/Skins/mario+bro+⌞DT⌝/scorebar-ki.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/scorebar-kidanger.png b/Skins/mario+bro+⌞DT⌝/scorebar-kidanger.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/scorebar-kidanger2.png b/Skins/mario+bro+⌞DT⌝/scorebar-kidanger2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/section-fail.jpg b/Skins/mario+bro+⌞DT⌝/section-fail.jpg new file mode 100644 index 00000000..9468f18d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/section-fail.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33913a87f80a409a10ae5830492eddac9e0781e6e0a03c949b0fa796d4a8d0dd +size 120228 diff --git a/Skins/mario+bro+⌞DT⌝/section-pass.png b/Skins/mario+bro+⌞DT⌝/section-pass.png new file mode 100644 index 00000000..935fe3e2 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252656567ba66df18cbb00b77b3d15dbe4289ec61ff3607aff6428e1a5d5d00d +size 220938 diff --git a/Skins/mario+bro+⌞DT⌝/sectionfail.wav b/Skins/mario+bro+⌞DT⌝/sectionfail.wav new file mode 100644 index 00000000..4493fa7e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sectionfail.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5649ab139fa8a853dc57ed9d9e421e167556f5434fd70bc4db3f6106fb021a2c +size 444460 diff --git a/Skins/mario+bro+⌞DT⌝/sectionpass.wav b/Skins/mario+bro+⌞DT⌝/sectionpass.wav new file mode 100644 index 00000000..5550e750 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sectionpass.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af43b5a4a634b53268cdd198a7e862703638e6551b7869c8ae77cf1090ede694 +size 217644 diff --git a/Skins/mario+bro+⌞DT⌝/seeya.wav b/Skins/mario+bro+⌞DT⌝/seeya.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-autoplay.png b/Skins/mario+bro+⌞DT⌝/selection-mod-autoplay.png new file mode 100644 index 00000000..8aa8aa0c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5d32d0f8949ac5a52f3041e27f8363a74af1046b99d38d91b377307fcbe19d5 +size 7749 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-cinema.png b/Skins/mario+bro+⌞DT⌝/selection-mod-cinema.png new file mode 100644 index 00000000..465b7bd8 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9a8e7511cacc83b61eefd31b71c3feab16c5a3520197085d7f76c8da35a6f2 +size 8530 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-doubletime.png b/Skins/mario+bro+⌞DT⌝/selection-mod-doubletime.png new file mode 100644 index 00000000..8b57fd1e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f608cf37e12c109ce9b57839e9c6b50eb63598907adb7e597a2586440bd83e6c +size 7992 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-easy.png b/Skins/mario+bro+⌞DT⌝/selection-mod-easy.png new file mode 100644 index 00000000..50d1f363 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd401318d6fbf0a08daaced303291d991bc8d13a28b948adac37ce00b4bc1a7 +size 7909 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-fadein.png b/Skins/mario+bro+⌞DT⌝/selection-mod-fadein.png new file mode 100644 index 00000000..7149f889 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-fadein.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c8b56802093981dc5ce0239b5d6f7fc5e61107a997683cda38f072e4268c8e +size 5080 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-flashlight.png b/Skins/mario+bro+⌞DT⌝/selection-mod-flashlight.png new file mode 100644 index 00000000..532297f1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078a37a68519772b3a6c6b977b0f75c304d4e4260cf2354bf849e97629b1f2fa +size 8063 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-halftime.png b/Skins/mario+bro+⌞DT⌝/selection-mod-halftime.png new file mode 100644 index 00000000..5039c04e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a79f41914ec215db0b6c4eec75c5933784a1e1ae0e513d25f43bcd589741cdb5 +size 7380 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-hardrock.png b/Skins/mario+bro+⌞DT⌝/selection-mod-hardrock.png new file mode 100644 index 00000000..4918faab --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8ed2110a4d79cd6d3a53e67c7b38d82eb476ffb00e269ba3f81a50c4cfa248 +size 7899 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-hidden.png b/Skins/mario+bro+⌞DT⌝/selection-mod-hidden.png new file mode 100644 index 00000000..3ea6b289 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2827bc9bb3182a34d91a1a7fa048ba5b32b207d8ecb2d91ed3f4247a93e6dd8c +size 7658 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-key1.png b/Skins/mario+bro+⌞DT⌝/selection-mod-key1.png new file mode 100644 index 00000000..9273e87d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-key1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80a287bbfc4feeab7b89a8440b5d29935fa174d2be8309fee8af6ea954e8fe1 +size 5041 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-key2.png b/Skins/mario+bro+⌞DT⌝/selection-mod-key2.png new file mode 100644 index 00000000..7e92c8f1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-key2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e22c9df74f978ddad48ee1b14ce37f077ed750888c5a40fe03b53f37292d533d +size 5447 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-key3.png b/Skins/mario+bro+⌞DT⌝/selection-mod-key3.png new file mode 100644 index 00000000..d9a4c6cb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-key3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cdf3120c70ab6397cef17960cf35af12a3e2d323d00c92b7eaeda147624dd2 +size 5561 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-key4.png b/Skins/mario+bro+⌞DT⌝/selection-mod-key4.png new file mode 100644 index 00000000..49bbca2e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-key4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f4663c5f19cb727153270562c54f37b4803de34bdaeb40a0a7a17cbd9115a5 +size 5479 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-key5.png b/Skins/mario+bro+⌞DT⌝/selection-mod-key5.png new file mode 100644 index 00000000..372ab63f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-key5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556d753ff0d766bf4334aa8b44c46f14458ae24c643d6fa930ac072d54fdbe9f +size 5732 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-key6.png b/Skins/mario+bro+⌞DT⌝/selection-mod-key6.png new file mode 100644 index 00000000..befe383f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-key6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60227e7252a7b842fe82d24135b035675bdef364447be5da485a3cbc5193eeb +size 5751 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-key7.png b/Skins/mario+bro+⌞DT⌝/selection-mod-key7.png new file mode 100644 index 00000000..90ccfa79 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-key7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86c0f7b009c6f9f4938ef603ed56e7e0a1a4efe4dda497a6bc4d0b532540c0f +size 5576 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-key8.png b/Skins/mario+bro+⌞DT⌝/selection-mod-key8.png new file mode 100644 index 00000000..c5d64992 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-key8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ed4bcb76dc19a669eededed676ccfe34c63af4412de5e884e7c778eae72ae9 +size 5898 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-keycoop.png b/Skins/mario+bro+⌞DT⌝/selection-mod-keycoop.png new file mode 100644 index 00000000..deaa05dc --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-keycoop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d117c105fd0fe63ba689033e7dcbcdd1a37254977f1ebeabacfb8110a51a50de +size 5609 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-nightcore.png b/Skins/mario+bro+⌞DT⌝/selection-mod-nightcore.png new file mode 100644 index 00000000..c8ef1521 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98c11e25e31b830973f76bc5f0da48d1f4464065dbc4a4686b4fa2824dbbf1e6 +size 7970 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-nofail.png b/Skins/mario+bro+⌞DT⌝/selection-mod-nofail.png new file mode 100644 index 00000000..ad356e53 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cbedf6489e77163b36809cc87068531a98f4dba20a5ce8950b4790ed0225d24 +size 7772 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-perfect.png b/Skins/mario+bro+⌞DT⌝/selection-mod-perfect.png new file mode 100644 index 00000000..6909b14b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0ab8a70e41da4b7e95fbb49bdc29d1e8fcd91517b837ecfc539401ae9356e8 +size 8433 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-random.png b/Skins/mario+bro+⌞DT⌝/selection-mod-random.png new file mode 100644 index 00000000..95b984fb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf3e689e6b2fbdc319e92e687b8956022534c3df8b104044b3505aad7ace61e +size 5517 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-relax.png b/Skins/mario+bro+⌞DT⌝/selection-mod-relax.png new file mode 100644 index 00000000..b6f97516 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc88cc632e75d2abf494bd08b5f4d35747df9df9aeaa2ee54747ecce8a53694d +size 8040 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-relax2.png b/Skins/mario+bro+⌞DT⌝/selection-mod-relax2.png new file mode 100644 index 00000000..08c75985 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d1af378422a1f7e3649b20a94f59c5c9e0049ba5093aecd8d1575ff8278ad1 +size 8048 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-scorev2.png b/Skins/mario+bro+⌞DT⌝/selection-mod-scorev2.png new file mode 100644 index 00000000..558612db --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22401640b57994b6449822c3e2617c639694418c6cab6cdaf90982a7629c4a46 +size 7474 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-scorev2@2x.png b/Skins/mario+bro+⌞DT⌝/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..f41282fd --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a6afcaa23347407f266b40baea57c096210399882a03f6b6c07b8b9cc86e3ae +size 4655 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-spunout.png b/Skins/mario+bro+⌞DT⌝/selection-mod-spunout.png new file mode 100644 index 00000000..f9f159f9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d78c73d4f391d03d15ff0ae57dd7bfe83d89f419594abdc1611bfdc2a302b3 +size 8193 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-suddendeath.png b/Skins/mario+bro+⌞DT⌝/selection-mod-suddendeath.png new file mode 100644 index 00000000..250f07ec --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b602544a293c780dcbf007539b0fdfd8c54ae5844175140432ed81f2b9475f4 +size 7895 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mod-target.png b/Skins/mario+bro+⌞DT⌝/selection-mod-target.png new file mode 100644 index 00000000..5d07575e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89744b68b15eadbfdf364857b90342cb8a4518e077e01b3cea93b2df1f87edd +size 8154 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mode-over.png b/Skins/mario+bro+⌞DT⌝/selection-mode-over.png new file mode 100644 index 00000000..430f4512 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e09d0e067ae2e70c4a69976d47aeaabc61d7732d32a9a91412afa3518f47fcb +size 146161 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mode-over@2x.png b/Skins/mario+bro+⌞DT⌝/selection-mode-over@2x.png new file mode 100644 index 00000000..b3d47045 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9901887fbfaee461e4addb6e60cb4dfdc0d59de2207dcee8f680f48a6f359aab +size 147227 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mode.png b/Skins/mario+bro+⌞DT⌝/selection-mode.png new file mode 100644 index 00000000..152ae70a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec0b80f0e0dd0e7cff1258d5e47c3729a21c23951b327ec3bca77d96a9f4b9a +size 57645 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mode@2x.png b/Skins/mario+bro+⌞DT⌝/selection-mode@2x.png new file mode 100644 index 00000000..99eadd4e --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b103d7221e06a9a784030372c4e82f0433216615724fca70e55c25462d08884 +size 230810 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mods-over.png b/Skins/mario+bro+⌞DT⌝/selection-mods-over.png new file mode 100644 index 00000000..3ca0e243 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc68d76ed1f76242a43cb63c6c7eab9e9b28f2209d1728873c3af0c6e1f1704 +size 146201 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mods-over@2x.png b/Skins/mario+bro+⌞DT⌝/selection-mods-over@2x.png new file mode 100644 index 00000000..43d4dd72 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bef4e6ec5641b76b804b29bf92d8f7dadf03b794b67bd349b7a19e39cc8ddf +size 147448 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mods.png b/Skins/mario+bro+⌞DT⌝/selection-mods.png new file mode 100644 index 00000000..e9c8af91 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2908e332caf2342d662512ed8fa233791788235748a856bbcd5d65dfb1075183 +size 145689 diff --git a/Skins/mario+bro+⌞DT⌝/selection-mods@2x.png b/Skins/mario+bro+⌞DT⌝/selection-mods@2x.png new file mode 100644 index 00000000..b88723a4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc0ef4ad4988615a65cdb38d2970b5dc40959d3184195ed7ca7e2ace8e66f87 +size 147358 diff --git a/Skins/mario+bro+⌞DT⌝/selection-options-over.png b/Skins/mario+bro+⌞DT⌝/selection-options-over.png new file mode 100644 index 00000000..7527ae33 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad2abede04947a7f59207447170a1019486d35c67bb2ec6b5b52e2788573a19a +size 146805 diff --git a/Skins/mario+bro+⌞DT⌝/selection-options-over@2x.png b/Skins/mario+bro+⌞DT⌝/selection-options-over@2x.png new file mode 100644 index 00000000..9906a9c9 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b31c0f901b03eaea224b07a2fa68def46a2c107eec3263bceefee9a57bb0abd +size 148336 diff --git a/Skins/mario+bro+⌞DT⌝/selection-options.png b/Skins/mario+bro+⌞DT⌝/selection-options.png new file mode 100644 index 00000000..8796e71d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6fdc16305d8a83ea3645c17bf9039601541813363f73e60e10a5963d1aa3eeb +size 146185 diff --git a/Skins/mario+bro+⌞DT⌝/selection-options@2x.png b/Skins/mario+bro+⌞DT⌝/selection-options@2x.png new file mode 100644 index 00000000..b96d5736 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2cd28b12abef950e1139e8f5c1e2cda912ee3a1680fba9bfa7c824d0776a7ff +size 148233 diff --git a/Skins/mario+bro+⌞DT⌝/selection-random-over.png b/Skins/mario+bro+⌞DT⌝/selection-random-over.png new file mode 100644 index 00000000..d366bb4a --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667ac7b23378a24462ad85f29e4db71db2606a8019152cef83f17791787b119a +size 146644 diff --git a/Skins/mario+bro+⌞DT⌝/selection-random-over@2x.png b/Skins/mario+bro+⌞DT⌝/selection-random-over@2x.png new file mode 100644 index 00000000..44db2156 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c220db119799b81b5459fbba2275d24ad0457392d1a3365dd3ca2dc6708971 +size 148188 diff --git a/Skins/mario+bro+⌞DT⌝/selection-random.png b/Skins/mario+bro+⌞DT⌝/selection-random.png new file mode 100644 index 00000000..9d0f63f4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dddb46c2b1886842ca750b75f5698230971b4638b1d391deba81ee81b9ae3fa4 +size 146136 diff --git a/Skins/mario+bro+⌞DT⌝/selection-random@2x.png b/Skins/mario+bro+⌞DT⌝/selection-random@2x.png new file mode 100644 index 00000000..e00926ee --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d250b42aa935eb570b0a7289254ddb6a6fe72509adc08010f750d3bc66a6a9 +size 148125 diff --git a/Skins/mario+bro+⌞DT⌝/selection-selectoptions-over.png b/Skins/mario+bro+⌞DT⌝/selection-selectoptions-over.png new file mode 100644 index 00000000..c189a3e0 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c244555cf83f224e0fb4a2e3755c617d33479e80019aa0825026812b8cb3a3ec +size 3905 diff --git a/Skins/mario+bro+⌞DT⌝/selection-selectoptions.png b/Skins/mario+bro+⌞DT⌝/selection-selectoptions.png new file mode 100644 index 00000000..a2f73e50 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8ae85548153be250b451d23db08f581917c5ade1c72bec1cacbf03d38d14fe +size 3652 diff --git a/Skins/mario+bro+⌞DT⌝/selection-tab.png b/Skins/mario+bro+⌞DT⌝/selection-tab.png new file mode 100644 index 00000000..09f33190 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782bb4d419bcbb297620ee34a5f1bb6bc24c7b41c2ab1a444d1a149049d9454d +size 2873 diff --git a/Skins/mario+bro+⌞DT⌝/skin.ini b/Skins/mario+bro+⌞DT⌝/skin.ini new file mode 100644 index 00000000..64ac88a4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/skin.ini @@ -0,0 +1,284 @@ +[General] +Name: mario bro ⌞DT⌝ +Author: i forgor +Version: 2.4 + +SliderBallFlip: 0 +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 1 +HitCircleOverlayAboveNumer: 1 +SliderStyle: 2 + +[Colours] +Combo1: 255,255,255 + +MenuGlow: 0,0,0 + +//SliderBorder: 150,150,150 +//SliderBorder: 255,255,255 +//SliderBorder: 94,94,113 +SliderBorder: 255,255,255 +SliderTrackOverride: 0,0,0 +InputOverlayText: 255,255,255 +SongSelectActiveText: 255,133,133 +SongSelectInactiveText: 255,255,255 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 167 +ScorePrefix: fonts/score/numbers +ScoreOverlap: 9 +[Mania] +Keys: 10 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 60 +ColumnWidth: 54,54,54,54,54,54,54,54,54,54 +//Colours +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 2,2,0,0,2,2,0,0,0,2,2 + +[Mania] +Keys: 1 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 60 +ColumnWidth: 54 +//Colours +ColourBarline: 255,255,255,150 +//images +//Keys + +[Mania] +Keys: 2 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 60 +ColumnWidth: 54,54 +//Colours +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 2,0,2 + +[Mania] +Keys: 3 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 60 +ColumnWidth: 54,54,54 +//Colours +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 2,0,0,2 + +[Mania] +Keys: 4 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 285 +ComboPosition: 170 +LightFramePerSecond: 24 +ColumnWidth: 60,60,60,60 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +ColourLight1: 255,255,255,255 +ColourLight2: 99,184,255 +ColourLight3: 99,184,255 +ColourLight4: 255,255,255,255 +ColourBreak: 255,0,0,255 +ColourHold: 255,199,51,255 +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 0,0,0,0,0 + +[Mania] +Keys: 5 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 24 +ColumnWidth: 60,60,60,60,60 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +ColourLight1: 255,255,255,255 +ColourLight2: 99,184,255 +ColourLight3: 255,128,0,255 +ColourLight4: 99,184,255 +ColourLight5: 255,255,255,255 +ColourBreak: 255,0,0,255 +ColourHold: 255,199,51,255 +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 0,0,0,0,0,0 + +[Mania] +Keys: 6 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 24 +ColumnWidth: 56,56,56,56,56,56 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +Colour6: 0,0,0,230 +ColourLight1: 255,255,255,255 +ColourLight2: 99,184,255 +ColourLight3: 255,255,255,255 +ColourLight4: 255,255,255,255 +ColourLight5: 99,184,255 +ColourLight6: 255,255,255,255 +ColourBreak: 255,0,0,255 +ColourHold: 255,199,51,255 +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 0,0,0,0,0,0,0 + +[Mania] +Keys: 7 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 24 +ColumnWidth: 40,40,40,40,40,40,40 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +Colour6: 0,0,0,230 +Colour7: 0,0,0,230 +ColourLight1: 255,255,255,255 +ColourLight2: 99,184,255 +ColourLight3: 255,255,255,255 +ColourLight4: 255,128,0,255 +ColourLight5: 255,255,255,255 +ColourLight6: 99,184,255 +ColourLight7: 255,255,255,255 +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 0,0,0,0,0,0,0,0 + +[Mania] +Keys: 8 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 24 +ColumnWidth: 40,40,40,40,40,40,40,40 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +Colour6: 0,0,0,230 +Colour7: 0,0,0,230 +Colour8: 0,0,0,230 +ColourLight1: 255,255,255,255 +ColourLight2: 99,184,255 +ColourLight3: 255,255,255,255 +ColourLight4: 99,184,255 +ColourLight5: 255,255,255,255 +ColourLight6: 99,184,255 +ColourLight7: 255,255,255,255 +ColourLight8: 99,184,255 +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 0,2,0,0,0,0,0,0,0 + +[Mania] +Keys: 9 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 60 +ColumnWidth: 40,40,40,40,40,40,40,40,40 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +Colour6: 0,0,0,230 +Colour7: 0,0,0,230 +Colour8: 0,0,0,230 +Colour9: 0,0,0,230 +ColourLight1: 255,255,255,255 +ColourLight2: 238,221,130 +ColourLight3: 255,255,255,255 +ColourLight4: 238,221,130 +ColourLight5: 255,128,0,255 +ColourLight5: 255,255,255,255 +ColourLight6: 238,221,130 +ColourLight7: 255,255,255,255 +ColourLight8: 238,221,130 +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 2,2,0,0,2,2,0,0,2,2 diff --git a/Skins/mario+bro+⌞DT⌝/sliderb0.png b/Skins/mario+bro+⌞DT⌝/sliderb0.png new file mode 100644 index 00000000..513af42f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c3721a6ae0e9879d3a3fedaf778851e3cd0c10e2277fbb2a1ee0f8a283b515 +size 3226 diff --git a/Skins/mario+bro+⌞DT⌝/sliderb0@2x.png b/Skins/mario+bro+⌞DT⌝/sliderb0@2x.png new file mode 100644 index 00000000..9d9f0d9b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2590b5c4bfe5f1f74f64cc40226771e9a622af797edd1f45d7b98beff3169f4 +size 6186 diff --git a/Skins/mario+bro+⌞DT⌝/sliderendcircle.png b/Skins/mario+bro+⌞DT⌝/sliderendcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/mario+bro+⌞DT⌝/sliderendcircle1.png b/Skins/mario+bro+⌞DT⌝/sliderendcircle1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sliderendcircle1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/sliderfollowcircle.png b/Skins/mario+bro+⌞DT⌝/sliderfollowcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/mario+bro+⌞DT⌝/sliderpoint10.png b/Skins/mario+bro+⌞DT⌝/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/sliderpoint30.png b/Skins/mario+bro+⌞DT⌝/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/sliderscorepoint.png b/Skins/mario+bro+⌞DT⌝/sliderscorepoint.png new file mode 100644 index 00000000..cf83f494 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d579cf9670162a630192b68827b8d08dddfbfc855d4dde9b8c0661cf1628436d +size 3307 diff --git a/Skins/mario+bro+⌞DT⌝/sliderstartcircle.png b/Skins/mario+bro+⌞DT⌝/sliderstartcircle.png new file mode 100644 index 00000000..ad4e800b --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/sliderstartcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65d5882b8ec40233394f103468ab78c496de9f9d4540a43fd633acc1d3cd163 +size 9483 diff --git a/Skins/mario+bro+⌞DT⌝/soft-hitclap.wav b/Skins/mario+bro+⌞DT⌝/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/mario+bro+⌞DT⌝/soft-hitclap2.wav b/Skins/mario+bro+⌞DT⌝/soft-hitclap2.wav new file mode 100644 index 00000000..3d8aaa60 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c6bc82e55b02266241dcc1d2095e33205c0e899a72bf22e5f3c00c7d05797b +size 42468 diff --git a/Skins/mario+bro+⌞DT⌝/soft-hitfinish.wav b/Skins/mario+bro+⌞DT⌝/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/mario+bro+⌞DT⌝/soft-hitfinish2.wav b/Skins/mario+bro+⌞DT⌝/soft-hitfinish2.wav new file mode 100644 index 00000000..1ddf64f1 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c1bfbbda81efa42b5b936562fa0f17c05fdd53af4e56bba649a8aebab59a7d +size 52780 diff --git a/Skins/mario+bro+⌞DT⌝/soft-hitnormal.wav b/Skins/mario+bro+⌞DT⌝/soft-hitnormal.wav new file mode 100644 index 00000000..2ba4a772 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a412d776db0c5e33c15d89e9550d32072262aabf303a5f79f3fd639a972a779 +size 26084 diff --git a/Skins/mario+bro+⌞DT⌝/soft-hitnormal1.wav b/Skins/mario+bro+⌞DT⌝/soft-hitnormal1.wav new file mode 100644 index 00000000..5cdd249f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/soft-hitnormal1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb58057051f90dde3859c79edaef9c958b74559ff94ab380e4ee54e7a41ce90 +size 24266 diff --git a/Skins/mario+bro+⌞DT⌝/soft-hitnormal2.wav b/Skins/mario+bro+⌞DT⌝/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/mario+bro+⌞DT⌝/soft-hitwhistle.wav b/Skins/mario+bro+⌞DT⌝/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/mario+bro+⌞DT⌝/soft-hitwhistle2.wav b/Skins/mario+bro+⌞DT⌝/soft-hitwhistle2.wav new file mode 100644 index 00000000..1dbafe21 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dbffd2c3f1ac2f592fcf5699b60b40512005d1fbc2e7e207c0d60292db1f11 +size 22478 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-approachcircle.png b/Skins/mario+bro+⌞DT⌝/spinner-approachcircle.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-background.png b/Skins/mario+bro+⌞DT⌝/spinner-background.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-bottom.png b/Skins/mario+bro+⌞DT⌝/spinner-bottom.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-circle.png b/Skins/mario+bro+⌞DT⌝/spinner-circle.png new file mode 100644 index 00000000..5cecdd42 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a64305959859cbcb5c96d33e44724c2bce479d90c42e83a686fb9c8251a7f6c +size 67350 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-circle@2x.png b/Skins/mario+bro+⌞DT⌝/spinner-circle@2x.png new file mode 100644 index 00000000..2199299f --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7417c73fe7f3e3b007348d6e9966372d80d45406a265d3f1cdb2b5e8e528d6e +size 105543 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-clear.png b/Skins/mario+bro+⌞DT⌝/spinner-clear.png new file mode 100644 index 00000000..ee6082c8 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d51eb0f83637bbe93b4f035e601bc37064f2c0057797695a186426d4797fbd +size 5357 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-clear@2x.png b/Skins/mario+bro+⌞DT⌝/spinner-clear@2x.png new file mode 100644 index 00000000..096ab50c --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43994023e9248f798fce627098250796d224c774902b75713c5aac6df9d0f5dc +size 9552 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-glow.png b/Skins/mario+bro+⌞DT⌝/spinner-glow.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-metre.png b/Skins/mario+bro+⌞DT⌝/spinner-metre.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-middle.png b/Skins/mario+bro+⌞DT⌝/spinner-middle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-middle2.png b/Skins/mario+bro+⌞DT⌝/spinner-middle2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-osu.png b/Skins/mario+bro+⌞DT⌝/spinner-osu.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-rpm.png b/Skins/mario+bro+⌞DT⌝/spinner-rpm.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-spin.png b/Skins/mario+bro+⌞DT⌝/spinner-spin.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/mario+bro+⌞DT⌝/spinner-top.png b/Skins/mario+bro+⌞DT⌝/spinner-top.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/mario+bro+⌞DT⌝/spinnerbonus.wav b/Skins/mario+bro+⌞DT⌝/spinnerbonus.wav new file mode 100644 index 00000000..8e453bf4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129badc16f5a9d295f91489c2148ed7080137a928542ae3dd0c3f4062172a6d4 +size 70180 diff --git a/Skins/mario+bro+⌞DT⌝/spinnerspin.ogg b/Skins/mario+bro+⌞DT⌝/spinnerspin.ogg new file mode 100644 index 00000000..74e686ac --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/spinnerspin.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53ff80cce7f2ce1eb1066b926653974a3b33d9f72940a7712b8634b0ef70ede +size 12372 diff --git a/Skins/mario+bro+⌞DT⌝/star.png b/Skins/mario+bro+⌞DT⌝/star.png new file mode 100644 index 00000000..57cc86e3 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0923dba4b00cd7e9a694d731db281bf87da06a8a5bb51c7bf59f889c630f69 +size 17316 diff --git a/Skins/mario+bro+⌞DT⌝/star2.png b/Skins/mario+bro+⌞DT⌝/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/mario+bro+⌞DT⌝/welcome.wav b/Skins/mario+bro+⌞DT⌝/welcome.wav new file mode 100644 index 00000000..caa40261 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92f716bb209d2d43c8d71bbcaeacd60dfd9a78957081d2eb75b83d3f718109b +size 408756 diff --git a/Skins/mario+bro+⌞DT⌝/welcome_text.png b/Skins/mario+bro+⌞DT⌝/welcome_text.png new file mode 100644 index 00000000..c62964f2 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/welcome_text.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356fad06d7f0de0cceffb735fbef14fc8d0b37de7c1c2096873a946e2f6df465 +size 35293 diff --git a/Skins/mario+bro+⌞DT⌝/welcome_text@2x.png b/Skins/mario+bro+⌞DT⌝/welcome_text@2x.png new file mode 100644 index 00000000..347fa949 --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/welcome_text@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40266b100cced58417927019525ee0a5076a85c05a5327f050011f5dfb2d7dc3 +size 769117 diff --git a/Skins/mario+bro+⌞DT⌝/whoosh.wav b/Skins/mario+bro+⌞DT⌝/whoosh.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/mario+bro+⌞DT⌝/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/Hit0-16.png b/Skins/pew2022 LITE/Hit0-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/pew2022 LITE/Hit0-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/pew2022 LITE/Hit100-16.png b/Skins/pew2022 LITE/Hit100-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/pew2022 LITE/Hit100-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/pew2022 LITE/Hit100k-16.png b/Skins/pew2022 LITE/Hit100k-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/pew2022 LITE/Hit100k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/pew2022 LITE/Hit50-16.png b/Skins/pew2022 LITE/Hit50-16.png new file mode 100644 index 00000000..12a90fb6 --- /dev/null +++ b/Skins/pew2022 LITE/Hit50-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe64ecbc8d8a8e4476d36628bf9335fe81d3eb4d696dea9c2c7ae6a078f0066 +size 376 diff --git a/Skins/pew2022 LITE/approachcircle.png b/Skins/pew2022 LITE/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/pew2022 LITE/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/pew2022 LITE/comboburst.png b/Skins/pew2022 LITE/comboburst.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/cursor.png b/Skins/pew2022 LITE/cursor.png new file mode 100644 index 00000000..d846e8cd --- /dev/null +++ b/Skins/pew2022 LITE/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2de11ba325a35d07d01edfe4a91118747c4855417081b50f0a2e5acb43cee6b +size 4337 diff --git a/Skins/pew2022 LITE/cursortrail.png b/Skins/pew2022 LITE/cursortrail.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/default-0.png b/Skins/pew2022 LITE/default-0.png new file mode 100644 index 00000000..b36b4e2b --- /dev/null +++ b/Skins/pew2022 LITE/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eeaf744e01aa23180f7f4df0b448d634f1d5fed1838023b7910d77266492ad4 +size 9674 diff --git a/Skins/pew2022 LITE/default-1.png b/Skins/pew2022 LITE/default-1.png new file mode 100644 index 00000000..82cec17c --- /dev/null +++ b/Skins/pew2022 LITE/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57b588cac5a5b9449e8a4ffdaa9f697983950b978dd4b183cd8442a3068eb55 +size 8172 diff --git a/Skins/pew2022 LITE/default-2.png b/Skins/pew2022 LITE/default-2.png new file mode 100644 index 00000000..40ae6b9a --- /dev/null +++ b/Skins/pew2022 LITE/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54cebed0ab5b96661290d2d8906868e28b24a202d4b02cc08cd37793e5a49d71 +size 9771 diff --git a/Skins/pew2022 LITE/default-3.png b/Skins/pew2022 LITE/default-3.png new file mode 100644 index 00000000..4a46be36 --- /dev/null +++ b/Skins/pew2022 LITE/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b51d61026a49f0cf5d01a2095866e0731ac73e6d7c1042d523384bd13e76d7e +size 9917 diff --git a/Skins/pew2022 LITE/default-4.png b/Skins/pew2022 LITE/default-4.png new file mode 100644 index 00000000..e171ca6c --- /dev/null +++ b/Skins/pew2022 LITE/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd3c9150f752fa5a868949efa24ee828363acdc4916ee9c70484e1e7bb3058a +size 9726 diff --git a/Skins/pew2022 LITE/default-5.png b/Skins/pew2022 LITE/default-5.png new file mode 100644 index 00000000..ac4c6897 --- /dev/null +++ b/Skins/pew2022 LITE/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c031d3fbb7b84fbd97c44f786033741b8ea77c47cc20faf90f145c29adda08b9 +size 9844 diff --git a/Skins/pew2022 LITE/default-6.png b/Skins/pew2022 LITE/default-6.png new file mode 100644 index 00000000..3cb844b3 --- /dev/null +++ b/Skins/pew2022 LITE/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a578fc8e57732a8647748011363bdaa64390853fff0b7965f1900dc239e4950 +size 9934 diff --git a/Skins/pew2022 LITE/default-7.png b/Skins/pew2022 LITE/default-7.png new file mode 100644 index 00000000..021658a3 --- /dev/null +++ b/Skins/pew2022 LITE/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b947ae9106d409022ad1db0760270ccb8984578e40cc089e486ed4b5190c2bc +size 9817 diff --git a/Skins/pew2022 LITE/default-8.png b/Skins/pew2022 LITE/default-8.png new file mode 100644 index 00000000..038873a3 --- /dev/null +++ b/Skins/pew2022 LITE/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53289a2ae056efc03dbae042363e2b0a60bac5e31c4699846bb6458e01a5ec48 +size 10022 diff --git a/Skins/pew2022 LITE/default-9.png b/Skins/pew2022 LITE/default-9.png new file mode 100644 index 00000000..11d2e3c1 --- /dev/null +++ b/Skins/pew2022 LITE/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28141592ad4d2ba7ffb7529035a81221d76feba4a04e9bd6a9bdb1b4f26f9522 +size 9948 diff --git a/Skins/pew2022 LITE/default-comma.png b/Skins/pew2022 LITE/default-comma.png new file mode 100644 index 00000000..6218b9e5 --- /dev/null +++ b/Skins/pew2022 LITE/default-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b503c9faa22646b8e5bd5d5df5bd64405db67360958ec28fd3abf7050874c6 +size 3353 diff --git a/Skins/pew2022 LITE/default-dot.png b/Skins/pew2022 LITE/default-dot.png new file mode 100644 index 00000000..04f3c268 --- /dev/null +++ b/Skins/pew2022 LITE/default-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b1a841b2cffadabefc0704c8556bcfe8634bb4ae103a00eba440b424ffd4da0 +size 3265 diff --git a/Skins/pew2022 LITE/default-percent.png b/Skins/pew2022 LITE/default-percent.png new file mode 100644 index 00000000..be2e51b4 --- /dev/null +++ b/Skins/pew2022 LITE/default-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61cced39ec587ba7ee16c63b36a09f9c2ea36e67f2f5915121ba6a6dbd712482 +size 4167 diff --git a/Skins/pew2022 LITE/default-x.png b/Skins/pew2022 LITE/default-x.png new file mode 100644 index 00000000..266e8432 --- /dev/null +++ b/Skins/pew2022 LITE/default-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07fa4614e1f89dd2dfee80b5decab41c6c5997e24be774d65449aeb0335535f +size 3945 diff --git a/Skins/pew2022 LITE/drum-hitclap.wav b/Skins/pew2022 LITE/drum-hitclap.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/drum-hitfinish.wav b/Skins/pew2022 LITE/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/pew2022 LITE/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/pew2022 LITE/drum-hitnormal.wav b/Skins/pew2022 LITE/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/pew2022 LITE/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/pew2022 LITE/drum-hitwhistle.wav b/Skins/pew2022 LITE/drum-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/drum-sliderslide.wav b/Skins/pew2022 LITE/drum-sliderslide.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/pew2022 LITE/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/pew2022 LITE/drum-slidertick.wav b/Skins/pew2022 LITE/drum-slidertick.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/pew2022 LITE/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/pew2022 LITE/drum-sliderwhistle.wav b/Skins/pew2022 LITE/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/followpoint-0.png b/Skins/pew2022 LITE/followpoint-0.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/followpoint-1.png b/Skins/pew2022 LITE/followpoint-1.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/followpoint-2.png b/Skins/pew2022 LITE/followpoint-2.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/followpoint-3.png b/Skins/pew2022 LITE/followpoint-3.png new file mode 100644 index 00000000..990ffc6e --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35204f9828b5f3569c5bdc7489f0163f2aa8848d8a6822d6348696e62603a2c3 +size 20353 diff --git a/Skins/pew2022 LITE/followpoint-3@2x.png b/Skins/pew2022 LITE/followpoint-3@2x.png new file mode 100644 index 00000000..979ab731 --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc410d385130490f0fb41bd91603d69ed651cb22f5ab84f6c5455ab486da44d +size 19549 diff --git a/Skins/pew2022 LITE/followpoint-4.png b/Skins/pew2022 LITE/followpoint-4.png new file mode 100644 index 00000000..990ffc6e --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35204f9828b5f3569c5bdc7489f0163f2aa8848d8a6822d6348696e62603a2c3 +size 20353 diff --git a/Skins/pew2022 LITE/followpoint-4@2x.png b/Skins/pew2022 LITE/followpoint-4@2x.png new file mode 100644 index 00000000..979ab731 --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc410d385130490f0fb41bd91603d69ed651cb22f5ab84f6c5455ab486da44d +size 19549 diff --git a/Skins/pew2022 LITE/followpoint-5.png b/Skins/pew2022 LITE/followpoint-5.png new file mode 100644 index 00000000..990ffc6e --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35204f9828b5f3569c5bdc7489f0163f2aa8848d8a6822d6348696e62603a2c3 +size 20353 diff --git a/Skins/pew2022 LITE/followpoint-5@2x.png b/Skins/pew2022 LITE/followpoint-5@2x.png new file mode 100644 index 00000000..979ab731 --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc410d385130490f0fb41bd91603d69ed651cb22f5ab84f6c5455ab486da44d +size 19549 diff --git a/Skins/pew2022 LITE/followpoint-6.png b/Skins/pew2022 LITE/followpoint-6.png new file mode 100644 index 00000000..990ffc6e --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35204f9828b5f3569c5bdc7489f0163f2aa8848d8a6822d6348696e62603a2c3 +size 20353 diff --git a/Skins/pew2022 LITE/followpoint-6@2x.png b/Skins/pew2022 LITE/followpoint-6@2x.png new file mode 100644 index 00000000..979ab731 --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc410d385130490f0fb41bd91603d69ed651cb22f5ab84f6c5455ab486da44d +size 19549 diff --git a/Skins/pew2022 LITE/followpoint-7.png b/Skins/pew2022 LITE/followpoint-7.png new file mode 100644 index 00000000..990ffc6e --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35204f9828b5f3569c5bdc7489f0163f2aa8848d8a6822d6348696e62603a2c3 +size 20353 diff --git a/Skins/pew2022 LITE/followpoint-7@2x.png b/Skins/pew2022 LITE/followpoint-7@2x.png new file mode 100644 index 00000000..979ab731 --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc410d385130490f0fb41bd91603d69ed651cb22f5ab84f6c5455ab486da44d +size 19549 diff --git a/Skins/pew2022 LITE/followpoint-8.png b/Skins/pew2022 LITE/followpoint-8.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/followpoint-9.png b/Skins/pew2022 LITE/followpoint-9.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/followpoint.png b/Skins/pew2022 LITE/followpoint.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/hit0-0.png b/Skins/pew2022 LITE/hit0-0.png new file mode 100644 index 00000000..39531006 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb26fb3e5f8ae0207eeed90a8c48cd6a7e5ac620c0421cead40332ee514d443c +size 1581 diff --git a/Skins/pew2022 LITE/hit0-1.png b/Skins/pew2022 LITE/hit0-1.png new file mode 100644 index 00000000..8330b1f3 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb058bf094266f98512f3d75e2dde1cfb1a0e32a915be46f9296a3bf122bbcc4 +size 1581 diff --git a/Skins/pew2022 LITE/hit0-10.png b/Skins/pew2022 LITE/hit0-10.png new file mode 100644 index 00000000..baf3259a --- /dev/null +++ b/Skins/pew2022 LITE/hit0-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a193e6f92e60bb988a142e55724994733cf55f749c8e097abaa81b883c48e6ee +size 1581 diff --git a/Skins/pew2022 LITE/hit0-11.png b/Skins/pew2022 LITE/hit0-11.png new file mode 100644 index 00000000..d3756af5 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92a16e35f514c7f0ec1a73747103306d01b379de0eb3e40ffd8206525c0eef5 +size 1581 diff --git a/Skins/pew2022 LITE/hit0-12.png b/Skins/pew2022 LITE/hit0-12.png new file mode 100644 index 00000000..54786fc0 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9527ed72a362d0037bb80a53046de22153ff3ad2d61bbba07d3133516ad561e +size 1581 diff --git a/Skins/pew2022 LITE/hit0-13.png b/Skins/pew2022 LITE/hit0-13.png new file mode 100644 index 00000000..551733eb --- /dev/null +++ b/Skins/pew2022 LITE/hit0-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69db56579937812d532d607a7aa9b7fea048e820a462960d41699df7b6312990 +size 1581 diff --git a/Skins/pew2022 LITE/hit0-14.png b/Skins/pew2022 LITE/hit0-14.png new file mode 100644 index 00000000..b4c7879f --- /dev/null +++ b/Skins/pew2022 LITE/hit0-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4dd2f8ab3000be6d81c3df552b7e24fd416c12d65fe332e380732d2d1009837 +size 1583 diff --git a/Skins/pew2022 LITE/hit0-15.png b/Skins/pew2022 LITE/hit0-15.png new file mode 100644 index 00000000..38421775 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda40d3c4a0293a0a38b897f5fdcd7ca7ceec25b9e2fcbcc4fe9b7aaeebbe218 +size 1581 diff --git a/Skins/pew2022 LITE/hit0-2.png b/Skins/pew2022 LITE/hit0-2.png new file mode 100644 index 00000000..32e1f93d --- /dev/null +++ b/Skins/pew2022 LITE/hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d2d43fa8b10434dace307bebb28a734ac013c2bd953ca3045bba52e369bcc95 +size 1581 diff --git a/Skins/pew2022 LITE/hit0-3.png b/Skins/pew2022 LITE/hit0-3.png new file mode 100644 index 00000000..05baf890 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cde01358aec332178fd3a40473d49881c79932a47b92d7f1abd68415b70d7cd2 +size 1581 diff --git a/Skins/pew2022 LITE/hit0-4.png b/Skins/pew2022 LITE/hit0-4.png new file mode 100644 index 00000000..98d7c1b3 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c505f6f34900109ecf73c8186b760a6b8284ad6191c1787538a45fd37b677ff7 +size 1581 diff --git a/Skins/pew2022 LITE/hit0-5.png b/Skins/pew2022 LITE/hit0-5.png new file mode 100644 index 00000000..bd375091 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87bb1dc700083fe7843d4b4e6d6515add5b5bdca0364d16f1b2282e6631c8f66 +size 1581 diff --git a/Skins/pew2022 LITE/hit0-6.png b/Skins/pew2022 LITE/hit0-6.png new file mode 100644 index 00000000..74aa62d8 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0e27c84a1aa58ff895c80dafe460277ff150096917a91f53c93badce26f7a5 +size 1581 diff --git a/Skins/pew2022 LITE/hit0-7.png b/Skins/pew2022 LITE/hit0-7.png new file mode 100644 index 00000000..4ca4ec48 --- /dev/null +++ b/Skins/pew2022 LITE/hit0-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b232bcdd16b813fad25c483e35aeb2edcfad1c6962948764e4612f4cd3e9cd0e +size 1581 diff --git a/Skins/pew2022 LITE/hit0-8.png b/Skins/pew2022 LITE/hit0-8.png new file mode 100644 index 00000000..07e5bddf --- /dev/null +++ b/Skins/pew2022 LITE/hit0-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573c5743c9414c6036897a97b681dcb981518e3db7cf31b026dccc0745659cfe +size 1581 diff --git a/Skins/pew2022 LITE/hit0-9.png b/Skins/pew2022 LITE/hit0-9.png new file mode 100644 index 00000000..07e572df --- /dev/null +++ b/Skins/pew2022 LITE/hit0-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd1171260ee33ea9358fa421812eb49dc90635a480f0bd737975006e15b4c872 +size 1581 diff --git a/Skins/pew2022 LITE/hit0.png b/Skins/pew2022 LITE/hit0.png new file mode 100644 index 00000000..9448d940 --- /dev/null +++ b/Skins/pew2022 LITE/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787ed4fe4eca0d13a93e67cf06a277ca4b371b361c0b31532026c5d9d798f4b3 +size 1583 diff --git a/Skins/pew2022 LITE/hit100-0.png b/Skins/pew2022 LITE/hit100-0.png new file mode 100644 index 00000000..d0f4971d --- /dev/null +++ b/Skins/pew2022 LITE/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf6ee00a7001d239f58be7db4cd23e908132db75023e58935ae24606a4d68ac +size 3552 diff --git a/Skins/pew2022 LITE/hit100-1.png b/Skins/pew2022 LITE/hit100-1.png new file mode 100644 index 00000000..a7aad872 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066e4cbcf50dac9b228d0fb137aacee506051bcc5f0f01f6c65dca5ac23b374f +size 3552 diff --git a/Skins/pew2022 LITE/hit100-10.png b/Skins/pew2022 LITE/hit100-10.png new file mode 100644 index 00000000..2a7ddff6 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1d72a9ca766415111a164bd8978318a17d609822c9de62b8d58a4a614d3c5a9 +size 3552 diff --git a/Skins/pew2022 LITE/hit100-11.png b/Skins/pew2022 LITE/hit100-11.png new file mode 100644 index 00000000..acc25ca6 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04ba1108fad5c6e51987b5dc2ce105e6ae2ca497f78f5903fba9755e82779d2 +size 3552 diff --git a/Skins/pew2022 LITE/hit100-12.png b/Skins/pew2022 LITE/hit100-12.png new file mode 100644 index 00000000..602c8797 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972eb6b6d9eea20118768b6156dcecc7bf74588eece90b5d3a8ea0ba17cceac2 +size 3552 diff --git a/Skins/pew2022 LITE/hit100-13.png b/Skins/pew2022 LITE/hit100-13.png new file mode 100644 index 00000000..e9462305 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62c491a2df40d5cb11ef74ab8514f086a40a98a37712af7384bfd2b9d625279 +size 3552 diff --git a/Skins/pew2022 LITE/hit100-14.png b/Skins/pew2022 LITE/hit100-14.png new file mode 100644 index 00000000..46277c72 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720c0a517b0bee7518bb7d3c3880e26e7a6b2b9f9534eb5c2fae91980c1cb54b +size 3552 diff --git a/Skins/pew2022 LITE/hit100-15.png b/Skins/pew2022 LITE/hit100-15.png new file mode 100644 index 00000000..033d2744 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98fed6a2f13fdfae688d50344868e90ddfde346ea7eb5bc325b44da29652b3ae +size 3552 diff --git a/Skins/pew2022 LITE/hit100-2.png b/Skins/pew2022 LITE/hit100-2.png new file mode 100644 index 00000000..5b22aaca --- /dev/null +++ b/Skins/pew2022 LITE/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28430510aa1b88160ca912d91d0529519a38173a54fc01796e35162010863bef +size 3552 diff --git a/Skins/pew2022 LITE/hit100-3.png b/Skins/pew2022 LITE/hit100-3.png new file mode 100644 index 00000000..e198a87a --- /dev/null +++ b/Skins/pew2022 LITE/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b8ee3f3d52e872e5799e0ee13e537f21245c1656acbbeecc825900e4ce43ba +size 3552 diff --git a/Skins/pew2022 LITE/hit100-4.png b/Skins/pew2022 LITE/hit100-4.png new file mode 100644 index 00000000..09e418b6 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e4293f4c81a85e2adb0a3620e1185cefd101ea18225e72dbb81543e01f7e3be +size 3552 diff --git a/Skins/pew2022 LITE/hit100-5.png b/Skins/pew2022 LITE/hit100-5.png new file mode 100644 index 00000000..c1787026 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b919cccc855c115ee7cf6dbe765485714c878ea8a56627f5a17eb7ca7e79ee5 +size 3552 diff --git a/Skins/pew2022 LITE/hit100-6.png b/Skins/pew2022 LITE/hit100-6.png new file mode 100644 index 00000000..22ad4aa0 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137678ed5b8f58760911d17fc9f70e940ba00aeb89200b202d02e75fb09578c9 +size 3552 diff --git a/Skins/pew2022 LITE/hit100-7.png b/Skins/pew2022 LITE/hit100-7.png new file mode 100644 index 00000000..b535f032 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff35c1cc937e8f981932bea9fa058048e2de2d79e4e370e5f07800469cd9da1 +size 3552 diff --git a/Skins/pew2022 LITE/hit100-8.png b/Skins/pew2022 LITE/hit100-8.png new file mode 100644 index 00000000..95340c64 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5604822f2d7386daaf6f455df5409852f60e6ff2eb3ed3790fb4c4338629b90 +size 3552 diff --git a/Skins/pew2022 LITE/hit100-9.png b/Skins/pew2022 LITE/hit100-9.png new file mode 100644 index 00000000..07545956 --- /dev/null +++ b/Skins/pew2022 LITE/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679bf9936cf569faf0c603086ea1caa2b728dfa9413ea2f8bbed6b425e4bca95 +size 3552 diff --git a/Skins/pew2022 LITE/hit100.png b/Skins/pew2022 LITE/hit100.png new file mode 100644 index 00000000..d0f4971d --- /dev/null +++ b/Skins/pew2022 LITE/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf6ee00a7001d239f58be7db4cd23e908132db75023e58935ae24606a4d68ac +size 3552 diff --git a/Skins/pew2022 LITE/hit100k-0.png b/Skins/pew2022 LITE/hit100k-0.png new file mode 100644 index 00000000..4934a883 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f010615dbbb7a3f3af699dc1168e6d09b523d2830129e1b99bd1d996af141a4d +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-1.png b/Skins/pew2022 LITE/hit100k-1.png new file mode 100644 index 00000000..58a94346 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:858c5bec90e5bbc2b1eafc64bde8b27cdaebf42e17ea50ed47b5a42b02223db1 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-10.png b/Skins/pew2022 LITE/hit100k-10.png new file mode 100644 index 00000000..0fed9a0e --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26eb93f7f5802bcc266a5dffa9b66e373bf3a4c0b53bd4c21f144bdbed53376b +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-11.png b/Skins/pew2022 LITE/hit100k-11.png new file mode 100644 index 00000000..ee884114 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296d43dd66d0f80bb2d83539e350050d69022502c813191b71899ce38654a514 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-12.png b/Skins/pew2022 LITE/hit100k-12.png new file mode 100644 index 00000000..60b4484e --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcd77dc776e1bfccbc5f03ac97cfa46ae0c9fdaba6f427c97bebee6d49afe79 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-13.png b/Skins/pew2022 LITE/hit100k-13.png new file mode 100644 index 00000000..9a5bd441 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39de692a8853e8198fbd9bdeb4ce8ac15b73e8590c5e6af93d63481b7ff955f2 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-14.png b/Skins/pew2022 LITE/hit100k-14.png new file mode 100644 index 00000000..f8c452b0 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365f9afd3f18e8fbffce2b532a08e43157040e8d226c90722bf417253e99ac03 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-15.png b/Skins/pew2022 LITE/hit100k-15.png new file mode 100644 index 00000000..b06f72c7 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ca7248e474a37c6edd4f3b704747ab2cf015f040254456bc4debb5d9278022 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-2.png b/Skins/pew2022 LITE/hit100k-2.png new file mode 100644 index 00000000..ea7caab8 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439f55398362734159c65176b03faaa6c9f41b8fe8b6a67608f3a95d1813f523 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-3.png b/Skins/pew2022 LITE/hit100k-3.png new file mode 100644 index 00000000..9e7de2e1 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3974a0d2466835030cdfa8d9df21afc48461c87013fd4440f84a4872e944afb3 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-4.png b/Skins/pew2022 LITE/hit100k-4.png new file mode 100644 index 00000000..0c185c4e --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4471ac381dee75de3bf1138ef765935de14d925fda43d4691133d0c3fb11a9a0 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-5.png b/Skins/pew2022 LITE/hit100k-5.png new file mode 100644 index 00000000..8cb13d4e --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bee4b0375e5a7c6b27f621aa9416496bc490c3115502e84cde715a5d16986d5 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-6.png b/Skins/pew2022 LITE/hit100k-6.png new file mode 100644 index 00000000..471754ba --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85cb5fdd15522a29e61a45488a65cb8e1926f2311fffa94cbddeda1184db2b8 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-7.png b/Skins/pew2022 LITE/hit100k-7.png new file mode 100644 index 00000000..97f19c44 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66627fbadbc0a5967af1b6a3ce06f428c9475bae2f91e8dc60a08e5b6eb7e0bd +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-8.png b/Skins/pew2022 LITE/hit100k-8.png new file mode 100644 index 00000000..0ca41d61 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d773c8fd1c6ef59784972628ef1b1bad973048b19c8c31b0373533772a1f5b13 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k-9.png b/Skins/pew2022 LITE/hit100k-9.png new file mode 100644 index 00000000..ba0af6e3 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c23ccca4356fbf781d3a30c93869a820fc6ce20cc9593dc74e2a02819583178 +size 3876 diff --git a/Skins/pew2022 LITE/hit100k.png b/Skins/pew2022 LITE/hit100k.png new file mode 100644 index 00000000..4934a883 --- /dev/null +++ b/Skins/pew2022 LITE/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f010615dbbb7a3f3af699dc1168e6d09b523d2830129e1b99bd1d996af141a4d +size 3876 diff --git a/Skins/pew2022 LITE/hit300-0.png b/Skins/pew2022 LITE/hit300-0.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/hit300g-0.png b/Skins/pew2022 LITE/hit300g-0.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/hit300k-0.png b/Skins/pew2022 LITE/hit300k-0.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/hit50-0.png b/Skins/pew2022 LITE/hit50-0.png new file mode 100644 index 00000000..8b2dabf9 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae7b80f4313da9e9250adf697d1d68ef00f75365e71dda2b6ae4f763e4ffb333 +size 2086 diff --git a/Skins/pew2022 LITE/hit50-1.png b/Skins/pew2022 LITE/hit50-1.png new file mode 100644 index 00000000..353beb3c --- /dev/null +++ b/Skins/pew2022 LITE/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c266abe5a76ee5962df8e2887ed6fccf39102679a1933776dca647221f9a9f3 +size 2086 diff --git a/Skins/pew2022 LITE/hit50-10.png b/Skins/pew2022 LITE/hit50-10.png new file mode 100644 index 00000000..a26f2fab --- /dev/null +++ b/Skins/pew2022 LITE/hit50-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b506d6a5428b6e6763dee6955c0affa796bdda67c88384379f357dcedf1b1c +size 2086 diff --git a/Skins/pew2022 LITE/hit50-11.png b/Skins/pew2022 LITE/hit50-11.png new file mode 100644 index 00000000..8364d26a --- /dev/null +++ b/Skins/pew2022 LITE/hit50-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049687cfa77bc1297111bb96ea665f723ed5bc22d9bb6f158e1b56b31f1f747b +size 2086 diff --git a/Skins/pew2022 LITE/hit50-12.png b/Skins/pew2022 LITE/hit50-12.png new file mode 100644 index 00000000..b17f51e6 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a84fb8c97003b0f5169e5c4851a98e8b8e22963f43641c75941c8606326301ed +size 2086 diff --git a/Skins/pew2022 LITE/hit50-13.png b/Skins/pew2022 LITE/hit50-13.png new file mode 100644 index 00000000..65f02cc9 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8732805ba76346b4f0c2c531288cb277381e058efbb170e5140ae57ed2f632 +size 2086 diff --git a/Skins/pew2022 LITE/hit50-14.png b/Skins/pew2022 LITE/hit50-14.png new file mode 100644 index 00000000..cc570aea --- /dev/null +++ b/Skins/pew2022 LITE/hit50-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8845944cf9c5cada949d6867a46083ad7456bfdc2e003c4a66e99602fbfca81e +size 2086 diff --git a/Skins/pew2022 LITE/hit50-15.png b/Skins/pew2022 LITE/hit50-15.png new file mode 100644 index 00000000..e3e5c382 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec686866374a73f140200ce5a733b5d13bf546c0a8c57893e0a44a7c61eed007 +size 2086 diff --git a/Skins/pew2022 LITE/hit50-2.png b/Skins/pew2022 LITE/hit50-2.png new file mode 100644 index 00000000..855c5e49 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658b2c067d6e75850962900a7a951d85988c32cea3cf07a410e0dce09fe7689c +size 2086 diff --git a/Skins/pew2022 LITE/hit50-3.png b/Skins/pew2022 LITE/hit50-3.png new file mode 100644 index 00000000..b9067c37 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fef9d9a6ef06e7f89e2cf300c961c5f4921bfb634806940d0ecc45f8e6c033a +size 2086 diff --git a/Skins/pew2022 LITE/hit50-4.png b/Skins/pew2022 LITE/hit50-4.png new file mode 100644 index 00000000..b2641c21 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73983459dc666c87a44ed6e90a2a1d73ec9d11db914b5fcea59002f3ba626d80 +size 2086 diff --git a/Skins/pew2022 LITE/hit50-5.png b/Skins/pew2022 LITE/hit50-5.png new file mode 100644 index 00000000..82395294 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1a2c9938c568cdfbda6d2e1296b3d9201a810c7fcdcad4171c5331e15f3799 +size 2086 diff --git a/Skins/pew2022 LITE/hit50-6.png b/Skins/pew2022 LITE/hit50-6.png new file mode 100644 index 00000000..dfde8e86 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac0b0e72311b258ed1307888cf105c8bbeea4a1284e10447a0528111b80e5b5 +size 2086 diff --git a/Skins/pew2022 LITE/hit50-7.png b/Skins/pew2022 LITE/hit50-7.png new file mode 100644 index 00000000..d820a8c3 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:633bef1d8e1a4e0ddf08d2dec728f74126f7310ae9229a32ff4ce50015d24de3 +size 2086 diff --git a/Skins/pew2022 LITE/hit50-8.png b/Skins/pew2022 LITE/hit50-8.png new file mode 100644 index 00000000..0bfe78a0 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d2225d3f345bc50154f2aa737dff4445152638eeef88781cd6ab35c59be071 +size 2086 diff --git a/Skins/pew2022 LITE/hit50-9.png b/Skins/pew2022 LITE/hit50-9.png new file mode 100644 index 00000000..863f6269 --- /dev/null +++ b/Skins/pew2022 LITE/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d7d6e0dcf92bf27a9cbc655c643cab16210d8dbe17cfab39c876f52a98c5f84 +size 2086 diff --git a/Skins/pew2022 LITE/hit50.png b/Skins/pew2022 LITE/hit50.png new file mode 100644 index 00000000..0bfe78a0 --- /dev/null +++ b/Skins/pew2022 LITE/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d2225d3f345bc50154f2aa737dff4445152638eeef88781cd6ab35c59be071 +size 2086 diff --git a/Skins/pew2022 LITE/hitcircle.png b/Skins/pew2022 LITE/hitcircle.png new file mode 100644 index 00000000..58edacff --- /dev/null +++ b/Skins/pew2022 LITE/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e081bcb246d426acaac852fa4a6cd05e5c6804989d0187301144679128d77ec +size 9659 diff --git a/Skins/pew2022 LITE/hitcircleoverlay.png b/Skins/pew2022 LITE/hitcircleoverlay.png new file mode 100644 index 00000000..e84ae01b --- /dev/null +++ b/Skins/pew2022 LITE/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2242085fcfd0a3680fe53191a999547fe99a3703fbbae2925c799df6ef287b +size 8362 diff --git a/Skins/pew2022 LITE/inputoverlay-key.png b/Skins/pew2022 LITE/inputoverlay-key.png new file mode 100644 index 00000000..0d177844 --- /dev/null +++ b/Skins/pew2022 LITE/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f5fa2bd2d7d96956e3219fe901f3ef369540f35827f03d4af844c42e63481b +size 725 diff --git a/Skins/pew2022 LITE/inputoverlay-key2.png b/Skins/pew2022 LITE/inputoverlay-key2.png new file mode 100644 index 00000000..ffe6cb04 --- /dev/null +++ b/Skins/pew2022 LITE/inputoverlay-key2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d61a97cc08bd46b847a987b1162e69a1192e75e00a3dfa23407257ccca396bdb +size 631 diff --git a/Skins/pew2022 LITE/lighting.png b/Skins/pew2022 LITE/lighting.png new file mode 100644 index 00000000..b64d4dd7 --- /dev/null +++ b/Skins/pew2022 LITE/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f144b6deaa57f3b2e87f8eedef593fd0c7ea036020753d268506cb54d045f0 +size 10232 diff --git a/Skins/pew2022 LITE/menu-background.jpg b/Skins/pew2022 LITE/menu-background.jpg new file mode 100644 index 00000000..50f9a89b --- /dev/null +++ b/Skins/pew2022 LITE/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6791b4eec788084324fb149e20007b45e958e84c6b4499315800853145cdbc +size 104440 diff --git a/Skins/pew2022 LITE/menu-button-background.png b/Skins/pew2022 LITE/menu-button-background.png new file mode 100644 index 00000000..cb2f4b88 --- /dev/null +++ b/Skins/pew2022 LITE/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b25fcba7742fdb2122905f487a766d635d6019b116a40c1ee741e1c939395da +size 641 diff --git a/Skins/pew2022 LITE/nightcore-clap.wav b/Skins/pew2022 LITE/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/pew2022 LITE/nightcore-finish.wav b/Skins/pew2022 LITE/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/pew2022 LITE/nightcore-hat.wav b/Skins/pew2022 LITE/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/pew2022 LITE/nightcore-kick.wav b/Skins/pew2022 LITE/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/pew2022 LITE/normal-hitclap.wav b/Skins/pew2022 LITE/normal-hitclap.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/normal-hitfinish.wav b/Skins/pew2022 LITE/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/pew2022 LITE/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/pew2022 LITE/normal-hitnormal.wav b/Skins/pew2022 LITE/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/pew2022 LITE/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/pew2022 LITE/normal-hitwhistle.wav b/Skins/pew2022 LITE/normal-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/normal-sliderslide.wav b/Skins/pew2022 LITE/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/normal-slidertick.wav b/Skins/pew2022 LITE/normal-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/normal-sliderwhistle.wav b/Skins/pew2022 LITE/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/pause-back.png b/Skins/pew2022 LITE/pause-back.png new file mode 100644 index 00000000..1f71a153 --- /dev/null +++ b/Skins/pew2022 LITE/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4db7748bee4cd0f6f12b4c31399652d665c2e0df670b8ea5a86fffe116c7cb9 +size 327 diff --git a/Skins/pew2022 LITE/pause-back@2x.png b/Skins/pew2022 LITE/pause-back@2x.png new file mode 100644 index 00000000..c66c31f9 --- /dev/null +++ b/Skins/pew2022 LITE/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789f767ad8b30ee318475477b130abfcbe24a26eaa81044ae8c728bc7e39f344 +size 6115 diff --git a/Skins/pew2022 LITE/pause-continue.png b/Skins/pew2022 LITE/pause-continue.png new file mode 100644 index 00000000..1f71a153 --- /dev/null +++ b/Skins/pew2022 LITE/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4db7748bee4cd0f6f12b4c31399652d665c2e0df670b8ea5a86fffe116c7cb9 +size 327 diff --git a/Skins/pew2022 LITE/pause-continue@2x.png b/Skins/pew2022 LITE/pause-continue@2x.png new file mode 100644 index 00000000..c66c31f9 --- /dev/null +++ b/Skins/pew2022 LITE/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789f767ad8b30ee318475477b130abfcbe24a26eaa81044ae8c728bc7e39f344 +size 6115 diff --git a/Skins/pew2022 LITE/pause-replay.png b/Skins/pew2022 LITE/pause-replay.png new file mode 100644 index 00000000..63f4339d --- /dev/null +++ b/Skins/pew2022 LITE/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4951f923072b222593df347994a0a6bc85c9ea39c3b152c9cfeed770fc2aa8 +size 3343 diff --git a/Skins/pew2022 LITE/pause-retry.png b/Skins/pew2022 LITE/pause-retry.png new file mode 100644 index 00000000..27d74a88 --- /dev/null +++ b/Skins/pew2022 LITE/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b3eaf3a5a6ccd7400ddf6db06fbfcea2eee4dcdeb28d13b3178824af8b6363c +size 311 diff --git a/Skins/pew2022 LITE/pause-retry@2x.png b/Skins/pew2022 LITE/pause-retry@2x.png new file mode 100644 index 00000000..c31e0573 --- /dev/null +++ b/Skins/pew2022 LITE/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ad9cdb79dce3f7de16b86d58508c6df1d7a6973e0e98fa5134fa94f57fe462 +size 3720 diff --git a/Skins/pew2022 LITE/playfield.png b/Skins/pew2022 LITE/playfield.png new file mode 100644 index 00000000..ee52d765 --- /dev/null +++ b/Skins/pew2022 LITE/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c5a5290d4a05f6ccc8aa7b1461cc018fb337e0633d18086b7acfcb6941bc558 +size 15469 diff --git a/Skins/pew2022 LITE/ranking-X-small.png b/Skins/pew2022 LITE/ranking-X-small.png new file mode 100644 index 00000000..9d2412e8 --- /dev/null +++ b/Skins/pew2022 LITE/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faeba5c3f9369975ec9a88ed67877ab94ed78dddd51645827c91864face073df +size 3817 diff --git a/Skins/pew2022 LITE/ranking-XH-small.png b/Skins/pew2022 LITE/ranking-XH-small.png new file mode 100644 index 00000000..39a5aad4 --- /dev/null +++ b/Skins/pew2022 LITE/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:028cf94e0cc6d3e58514fd6f69684983b734c514f0cc4b5cea836cb1f339998b +size 3316 diff --git a/Skins/pew2022 LITE/ranking-panel.png b/Skins/pew2022 LITE/ranking-panel.png new file mode 100644 index 00000000..3c35caff --- /dev/null +++ b/Skins/pew2022 LITE/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f124d4e5ac7e13e319005e2f4a54aad00dc5d9df774145a8fa807ae38758025 +size 9788 diff --git a/Skins/pew2022 LITE/reversearrow@2x.png b/Skins/pew2022 LITE/reversearrow@2x.png new file mode 100644 index 00000000..c8ac6094 --- /dev/null +++ b/Skins/pew2022 LITE/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a424ccd873d269275c3aae387ccd7b2ff0c30b0c3f7c64bf287db594e9ee80 +size 22254 diff --git a/Skins/pew2022 LITE/score-0.png b/Skins/pew2022 LITE/score-0.png new file mode 100644 index 00000000..b0d97ed3 --- /dev/null +++ b/Skins/pew2022 LITE/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394197cdee2bf3ec3a87019a6a29d10a085e56021f54099c8fcce50e3ddacebc +size 3433 diff --git a/Skins/pew2022 LITE/score-1.png b/Skins/pew2022 LITE/score-1.png new file mode 100644 index 00000000..0d1ebe0d --- /dev/null +++ b/Skins/pew2022 LITE/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d113cfde1f6f8cc8a2bbfa52bb0ad35a5d85e259ee0bc3a15e03f4c7b74c6e90 +size 2926 diff --git a/Skins/pew2022 LITE/score-2.png b/Skins/pew2022 LITE/score-2.png new file mode 100644 index 00000000..408e1cdb --- /dev/null +++ b/Skins/pew2022 LITE/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2782ad0951a15087a845367afa8f2cba7473c284a68f2ff85aeb6c517e9f6c6 +size 3414 diff --git a/Skins/pew2022 LITE/score-3.png b/Skins/pew2022 LITE/score-3.png new file mode 100644 index 00000000..86177a14 --- /dev/null +++ b/Skins/pew2022 LITE/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf66868678715dbb35d4fa05bdec44967a86a79c6182e8b4b1080fe6c5bb817 +size 3439 diff --git a/Skins/pew2022 LITE/score-4.png b/Skins/pew2022 LITE/score-4.png new file mode 100644 index 00000000..245c95ee --- /dev/null +++ b/Skins/pew2022 LITE/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90311b953c402d7351eb6fff11c42e71f47e0113fc5533e19845570a251b6e53 +size 3334 diff --git a/Skins/pew2022 LITE/score-5.png b/Skins/pew2022 LITE/score-5.png new file mode 100644 index 00000000..725ce736 --- /dev/null +++ b/Skins/pew2022 LITE/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ad9cb986cf1c8e7ec73f11052c7f80cb44f6155a267c177ca874183651e63a +size 3323 diff --git a/Skins/pew2022 LITE/score-6.png b/Skins/pew2022 LITE/score-6.png new file mode 100644 index 00000000..9213868c --- /dev/null +++ b/Skins/pew2022 LITE/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cfc4cd71cd6f602d4765cd7a4f77739c20499b5803ff685e95636bb5f56fa3 +size 3541 diff --git a/Skins/pew2022 LITE/score-7.png b/Skins/pew2022 LITE/score-7.png new file mode 100644 index 00000000..b3895d5b --- /dev/null +++ b/Skins/pew2022 LITE/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbec68017836b68bae612827f74a8a0356c2c4f877e99e274cd7d619c3d66117 +size 3287 diff --git a/Skins/pew2022 LITE/score-8.png b/Skins/pew2022 LITE/score-8.png new file mode 100644 index 00000000..c31c805b --- /dev/null +++ b/Skins/pew2022 LITE/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33dfd72a1c67a7ea68dfe103227dd6962371a91882d62735f4132f04e64dc57b +size 3667 diff --git a/Skins/pew2022 LITE/score-9.png b/Skins/pew2022 LITE/score-9.png new file mode 100644 index 00000000..aeaaf0c4 --- /dev/null +++ b/Skins/pew2022 LITE/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d1a5ebc31a64edff85c84a28b9a7da2297acd516e4047649df9fdf1b5a20d4 +size 3534 diff --git a/Skins/pew2022 LITE/score-comma.png b/Skins/pew2022 LITE/score-comma.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/pew2022 LITE/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/pew2022 LITE/score-dot.png b/Skins/pew2022 LITE/score-dot.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/pew2022 LITE/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/pew2022 LITE/score-percent.png b/Skins/pew2022 LITE/score-percent.png new file mode 100644 index 00000000..69be85f4 --- /dev/null +++ b/Skins/pew2022 LITE/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463688b71d33f4c476deddd20df83dfcffbb450f7a5277704442f494fbc49570 +size 3038 diff --git a/Skins/pew2022 LITE/score-x.png b/Skins/pew2022 LITE/score-x.png new file mode 100644 index 00000000..906648fa --- /dev/null +++ b/Skins/pew2022 LITE/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ff24028255e3787e38390106f32b20bb8c6af2943c418f3436b584ce9d5674 +size 2810 diff --git a/Skins/pew2022 LITE/selection-tab.png b/Skins/pew2022 LITE/selection-tab.png new file mode 100644 index 00000000..48294853 --- /dev/null +++ b/Skins/pew2022 LITE/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64280abc5430bc92972049d98d76180779bfa0851f3a91916ac74ce14cd3ba72 +size 2885 diff --git a/Skins/pew2022 LITE/skin.ini b/Skins/pew2022 LITE/skin.ini new file mode 100644 index 00000000..f75ed250 --- /dev/null +++ b/Skins/pew2022 LITE/skin.ini @@ -0,0 +1,247 @@ +[General] + +Name: +Author: +Version: 3.0 + +SliderBallFlip: 0 +SliderBallFrames: 9 +SliderStyle: 3 + +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 + +HitCircleOverlayAboveNumer: 1 + +CustomComboBurstSounds: 30,60,100,150,200,250,300,350,400,450,500,550,600,650,700,750,800,850,900,950,1000 + +CursorRotate: 0 +CursorCentre: 1 +CursorExpand: 1 + +SpinnerFrequencyModulate: 1 + + +[Colours] +Combo1: 141,255,84 + + +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 230,230,230 + +//The border colour on slider tracks. +SliderBorder: 200, 200, 200 + + +//Force a slider track to a certain colour +SliderTrackOverride: 50,50,50 + +//Colour of the approach circle used for spinners. +SpinnerApproachCircle: 255,255,255 + +[Mania] +Keys: 4 +//Mania skin config +ColumnStart: 160 +HitPosition: 394 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 290 +ComboPosition: 425 +LightFramePerSecond: 60 +ColumnWidth: 48,48,48,48 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +ColourLight1: 0,0,0,100 +ColourLight2: 0,0,0,100 +ColourLight3: 0,0,0,100 +ColourLight4: 0,0,0,100 +ColourHold: 255,255,255,255 +ColourBarline: 255,255,255,150 +//images +NoteImage1: mania-note1 +NoteImage1H: mania-note1H +NoteImage1L: mania-note1L +NoteImage2: mania-note1 +NoteImage2H: mania-note1H +NoteImage2L: mania-note1L +//Keys +ColumnLineWidth: 0,0,0,0,0 +[Mania] +Keys: 5 +//Mania skin config +ColumnStart: 160 +HitPosition: 394 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 290 +ComboPosition: 425 +LightFramePerSecond: 60 +ColumnWidth: 46,35,46,35,46 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +ColourLight1: 0,0,0,100 +ColourLight2: 0,0,0,100 +ColourLight3: 0,0,0,100 +ColourLight4: 0,0,0,100 +ColourLight5: 0,0,0,100 +ColourHold: 255,255,255,255 +ColourBarline: 255,255,255,150 +//images +NoteImage2: mania-note1 +NoteImage2H: mania-note1H +NoteImage2L: mania-note1L +//Keys +ColumnLineWidth: 0,0,0,0,0,0 +[Mania] +Keys: 6 +//Mania skin config +ColumnStart: 160 +HitPosition: 394 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 290 +ComboPosition: 345 +LightFramePerSecond: 60 +ColumnWidth: 39,30,39,39,30,39 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +Colour6: 0,0,0,230 +ColourLight1: 0,0,0,100 +ColourLight2: 0,0,0,100 +ColourLight3: 0,0,0,100 +ColourLight4: 0,0,0,100 +ColourLight5: 0,0,0,100 +ColourLight6: 0,0,0,100 +ColourHold: 255,255,255,255 +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 0,0,0,0,0,0,0 +[Mania] +Keys: 7 +//Mania skin config +ColumnStart: 160 +HitPosition: 394 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 290 +ComboPosition: 425 +LightFramePerSecond: 60 +ColumnWidth: 35,27,35,27,35,27,35 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +Colour6: 0,0,0,230 +Colour7: 0,0,0,230 +ColourLight1: 0,0,0,100 +ColourLight2: 0,0,0,100 +ColourLight3: 0,0,0,100 +ColourLight4: 0,0,0,100 +ColourLight5: 0,0,0,100 +ColourLight6: 0,0,0,100 +ColourLight7: 0,0,0,100 +ColourHold: 255,255,255,255 +ColourBarline: 255,255,255,150 +//images +NoteImage3: mania-note2 +NoteImage3H: mania-note2H +NoteImage3L: mania-note2L +//Keys +ColumnLineWidth: 0,0,0,0,0,0,0,0 +[Mania] +Keys: 8 +//Mania skin config +ColumnStart: 160 +HitPosition: 394 +SpecialStyle: 1 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 290 +ComboPosition: 425 +LightFramePerSecond: 60 +ColumnWidth: 56,35,27,35,27,35,27,35 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +Colour6: 0,0,0,230 +Colour7: 0,0,0,230 +Colour8: 0,0,0,230 +ColourLight1: 0,0,0,100 +ColourLight2: 0,0,0,100 +ColourLight3: 0,0,0,100 +ColourLight4: 0,0,0,100 +ColourLight5: 0,0,0,100 +ColourLight6: 0,0,0,100 +ColourLight7: 0,0,0,100 +ColourLight8: 0,0,0,100 +ColourHold: 255,255,255,255 +ColourBarline: 255,255,255,150 +//images +//Keys +ColumnLineWidth: 0,0,0,0,0,0,0,0,0 +[Mania] +Keys: 9 +//Mania skin config +ColumnStart: 160 +HitPosition: 394 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 0 +ScorePosition: 290 +ComboPosition: 425 +LightFramePerSecond: 60 +ColumnWidth: 37,26,37,26,37,26,37,26,37 +//Colours +Colour1: 0,0,0,230 +Colour2: 0,0,0,230 +Colour3: 0,0,0,230 +Colour4: 0,0,0,230 +Colour5: 0,0,0,230 +Colour6: 0,0,0,230 +Colour7: 0,0,0,230 +Colour8: 0,0,0,230 +Colour9: 0,0,0,230 +ColourLight1: 0,0,0,100 +ColourLight2: 0,0,0,100 +ColourLight3: 0,0,0,100 +ColourLight4: 0,0,0,100 +ColourLight5: 0,0,0,100 +ColourLight6: 0,0,0,100 +ColourLight7: 0,0,0,100 +ColourLight8: 0,0,0,100 +ColourLight9: 0,0,0,100 +ColourHold: 255,255,255,255 +ColourBarline: 255,255,255,150 +//images +NoteImage4: mania-note1 +NoteImage4H: mania-note1H +NoteImage4L: mania-note1L +//Keys +ColumnLineWidth: 0,0,0,0,0,0,0,0,0,0 +[Fonts] + +HitCirclePrefix: default +HitCircleOverlap: 200 diff --git a/Skins/pew2022 LITE/sliderb0.png b/Skins/pew2022 LITE/sliderb0.png new file mode 100644 index 00000000..4b9f9a1b --- /dev/null +++ b/Skins/pew2022 LITE/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b2d2995d72ccf0ff13347158a16be5ffeb9b423d6d87ac680d3dae4cffe56c +size 8212 diff --git a/Skins/pew2022 LITE/sliderendcircle.png b/Skins/pew2022 LITE/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/pew2022 LITE/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/pew2022 LITE/sliderfollowcircle.png b/Skins/pew2022 LITE/sliderfollowcircle.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/sliderpoint10.png b/Skins/pew2022 LITE/sliderpoint10.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/sliderpoint30.png b/Skins/pew2022 LITE/sliderpoint30.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/sliderscorepoint.png b/Skins/pew2022 LITE/sliderscorepoint.png new file mode 100644 index 00000000..d23f35bf --- /dev/null +++ b/Skins/pew2022 LITE/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3101d43978c20c7644b6441b0f91794742739a89bfc2a0c2bc0350363bb1a88 +size 415 diff --git a/Skins/pew2022 LITE/soft-hitclap.wav b/Skins/pew2022 LITE/soft-hitclap.wav new file mode 100644 index 00000000..3ac17190 --- /dev/null +++ b/Skins/pew2022 LITE/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a6ac97718268ea5cdb01f5febd989abc805d7fa90c181ed54d093833858b45 +size 32366 diff --git a/Skins/pew2022 LITE/soft-hitfinish.wav b/Skins/pew2022 LITE/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/pew2022 LITE/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/pew2022 LITE/soft-hitnormal.wav b/Skins/pew2022 LITE/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/pew2022 LITE/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/pew2022 LITE/soft-hitsoft.wav b/Skins/pew2022 LITE/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/pew2022 LITE/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/pew2022 LITE/soft-hitwhistle.wav b/Skins/pew2022 LITE/soft-hitwhistle.wav new file mode 100644 index 00000000..bfd92c12 --- /dev/null +++ b/Skins/pew2022 LITE/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67c6abc8164288b38e4955dc7c0dcb1d0750d15098bbfb1b1b03a932496f84d +size 120658 diff --git a/Skins/pew2022 LITE/soft-sliderslide.wav b/Skins/pew2022 LITE/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/soft-slidertick.wav b/Skins/pew2022 LITE/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/soft-sliderwhistle.wav b/Skins/pew2022 LITE/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/spinner-approachcircle.png b/Skins/pew2022 LITE/spinner-approachcircle.png new file mode 100644 index 00000000..98ab53b0 --- /dev/null +++ b/Skins/pew2022 LITE/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75313703fdfffa1b317c9e296cfa76df7bab36f46d5fab9cce603a1772bc3d1c +size 13062 diff --git a/Skins/pew2022 LITE/spinner-background.png b/Skins/pew2022 LITE/spinner-background.png new file mode 100644 index 00000000..31f287b3 --- /dev/null +++ b/Skins/pew2022 LITE/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7f046431e6266b8c4f839fb31a9b7f3557285778432bdcd02fc34ce362d44c1 +size 93182 diff --git a/Skins/pew2022 LITE/spinner-bottom.png b/Skins/pew2022 LITE/spinner-bottom.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/spinner-circle.png b/Skins/pew2022 LITE/spinner-circle.png new file mode 100644 index 00000000..60a73b7b --- /dev/null +++ b/Skins/pew2022 LITE/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6962f12ac3b9f1a0ff453011b973984d3804ba95a5f206eb578805ddaf8d880 +size 3496 diff --git a/Skins/pew2022 LITE/spinner-clear.png b/Skins/pew2022 LITE/spinner-clear.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/spinner-glow.png b/Skins/pew2022 LITE/spinner-glow.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/spinner-metre.png b/Skins/pew2022 LITE/spinner-metre.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/spinner-middle.png b/Skins/pew2022 LITE/spinner-middle.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/spinner-osu.png b/Skins/pew2022 LITE/spinner-osu.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/spinner-osu.wav b/Skins/pew2022 LITE/spinner-osu.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/pew2022 LITE/spinner-osu.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/pew2022 LITE/spinner-rpm.png b/Skins/pew2022 LITE/spinner-rpm.png new file mode 100644 index 00000000..76b5dcd8 --- /dev/null +++ b/Skins/pew2022 LITE/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26042d31f7a104fb04f38e17bbda04ca3eb6c28c8a5dfc38e9671facb699dedb +size 2219 diff --git a/Skins/pew2022 LITE/spinner-spin.png b/Skins/pew2022 LITE/spinner-spin.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/pew2022 LITE/spinner-top.png b/Skins/pew2022 LITE/spinner-top.png new file mode 100644 index 00000000..6804aa0d --- /dev/null +++ b/Skins/pew2022 LITE/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b506f9b2202e76c8ff060df170d4221243e2e137481759898dfbd64847338c9a +size 5456 diff --git a/Skins/pew2022 LITE/spinnerbonus.wav b/Skins/pew2022 LITE/spinnerbonus.wav new file mode 100644 index 00000000..70fbc04f --- /dev/null +++ b/Skins/pew2022 LITE/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03295540e76afffbf59c6b436372911b535717973045cf4ccef848d41b1f630a +size 1334 diff --git a/Skins/pew2022 LITE/star2.png b/Skins/pew2022 LITE/star2.png new file mode 100644 index 00000000..16f6a00c --- /dev/null +++ b/Skins/pew2022 LITE/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dce8193689e661fad18ea154f065ac9e43601a484041795d4343db608b8838 +size 182 diff --git a/Skins/prezes - Copy (2) - Copy/Score-0@2x.png b/Skins/prezes - Copy (2) - Copy/Score-0@2x.png new file mode 100644 index 00000000..9cd3963a --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9ff35588b818a904422b136c94e8183a0dd5d6604f9e5af0dbc202d7347e45 +size 4787 diff --git a/Skins/prezes - Copy (2) - Copy/Score-1@2x.png b/Skins/prezes - Copy (2) - Copy/Score-1@2x.png new file mode 100644 index 00000000..92b1d95f --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb837459da0a71ea721642f1542528dff9bd3323a20bc9642a91f36fa7ecf1d +size 4520 diff --git a/Skins/prezes - Copy (2) - Copy/Score-2@2x.png b/Skins/prezes - Copy (2) - Copy/Score-2@2x.png new file mode 100644 index 00000000..eef2b5e8 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3daee5b5eebb1725629e719964b859f6695fa1192369602e90b7b282b5deb2b +size 6056 diff --git a/Skins/prezes - Copy (2) - Copy/Score-3@2x.png b/Skins/prezes - Copy (2) - Copy/Score-3@2x.png new file mode 100644 index 00000000..95840a7c --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25349b8a326ef088b831f3c2df5ad690c2e6a791d2f9992192107852d3940a3e +size 5578 diff --git a/Skins/prezes - Copy (2) - Copy/Score-4@2x.png b/Skins/prezes - Copy (2) - Copy/Score-4@2x.png new file mode 100644 index 00000000..baeae8b4 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc9e701986f6e718e1d55078a8b3330f94eca60703aea470537648070efb399c +size 5139 diff --git a/Skins/prezes - Copy (2) - Copy/Score-5@2x.png b/Skins/prezes - Copy (2) - Copy/Score-5@2x.png new file mode 100644 index 00000000..44e622b5 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b402d802f3324d6f160842b06a0c66b0fe5ae0facc351dd5b677aa9027426b9 +size 5324 diff --git a/Skins/prezes - Copy (2) - Copy/Score-6@2x.png b/Skins/prezes - Copy (2) - Copy/Score-6@2x.png new file mode 100644 index 00000000..21aebd07 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa7a817766fee8e6b09f55daf2d24a5d8c198ce01b098e91173c2b609706eecb +size 5537 diff --git a/Skins/prezes - Copy (2) - Copy/Score-7@2x.png b/Skins/prezes - Copy (2) - Copy/Score-7@2x.png new file mode 100644 index 00000000..8f16241d --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9901abf426c0777187edbef2a05ceb09075dfba70f675c3a251936cdeb6a936 +size 5730 diff --git a/Skins/prezes - Copy (2) - Copy/Score-8@2x.png b/Skins/prezes - Copy (2) - Copy/Score-8@2x.png new file mode 100644 index 00000000..cc1d4c6b --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd2603936f48f459f0ca1c03dcf41125df847aab37107625c8319ee382226aa +size 5702 diff --git a/Skins/prezes - Copy (2) - Copy/Score-9@2x.png b/Skins/prezes - Copy (2) - Copy/Score-9@2x.png new file mode 100644 index 00000000..c2c2c448 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fee10d7e8b3fc1083eace9b6fdd1ceab6c78429ea2698be616564a4968c555a +size 5547 diff --git a/Skins/prezes - Copy (2) - Copy/Score-comma@2x.png b/Skins/prezes - Copy (2) - Copy/Score-comma@2x.png new file mode 100644 index 00000000..f41cd720 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34576e947c862d31a161033fe2854ed299ca3f2c208fa588c6faa5c8e50d3fc +size 4009 diff --git a/Skins/prezes - Copy (2) - Copy/Score-percent@2x.png b/Skins/prezes - Copy (2) - Copy/Score-percent@2x.png new file mode 100644 index 00000000..d3d096b2 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/Score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45c59f692945350caa5996b106e07b0e541487984b5782c53d42de7ab853303 +size 6358 diff --git a/Skins/prezes - Copy (2) - Copy/applause.mp3 b/Skins/prezes - Copy (2) - Copy/applause.mp3 new file mode 100644 index 00000000..aeb2d742 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f571204649b205de430776952a078b006405892f310bd6807e054dc454d783e +size 309464 diff --git a/Skins/prezes - Copy (2) - Copy/approachcircle.png b/Skins/prezes - Copy (2) - Copy/approachcircle.png new file mode 100644 index 00000000..8d7ca8db --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d435ccbd1c44abab9d9b94ed850f80476d1bfc509b89031c8c94ae0edc4611c +size 14700 diff --git a/Skins/prezes - Copy (2) - Copy/approachcircle@2x.png b/Skins/prezes - Copy (2) - Copy/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/prezes - Copy (2) - Copy/button-left.png b/Skins/prezes - Copy (2) - Copy/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/button-middle.png b/Skins/prezes - Copy (2) - Copy/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/button-right.png b/Skins/prezes - Copy (2) - Copy/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/count1.png b/Skins/prezes - Copy (2) - Copy/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/count2.png b/Skins/prezes - Copy (2) - Copy/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/count3.png b/Skins/prezes - Copy (2) - Copy/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/cursor-smoke.png b/Skins/prezes - Copy (2) - Copy/cursor-smoke.png new file mode 100644 index 00000000..072c56dc --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ce8c21a36db630ffafb9c05a78a911370fd199f6e2b7a5853e94b0cbcd32ed +size 2801 diff --git a/Skins/prezes - Copy (2) - Copy/cursor.png b/Skins/prezes - Copy (2) - Copy/cursor.png new file mode 100644 index 00000000..e043921d --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c9b2975924dbd539e38f05f5a5256a8619ba2ef922b6d57cc3a30e67b533e2f +size 2027 diff --git a/Skins/prezes - Copy (2) - Copy/cursortrail.png b/Skins/prezes - Copy (2) - Copy/cursortrail.png new file mode 100644 index 00000000..10973de0 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:888f64466b7a73633d9135504c32fe095f8bfc52e48f1d257aca69f56556108c +size 1796 diff --git a/Skins/prezes - Copy (2) - Copy/default-0.png b/Skins/prezes - Copy (2) - Copy/default-0.png new file mode 100644 index 00000000..05dc9667 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cfeddb009d9640c23159e6c78404ee8eb5fbae5469f48145ad6bc4c81d8b50 +size 2150 diff --git a/Skins/prezes - Copy (2) - Copy/default-0@2x.png b/Skins/prezes - Copy (2) - Copy/default-0@2x.png new file mode 100644 index 00000000..e677e4e2 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691bb62cbe70ddda43a9f3019071f314dd1bfb177b060903b018c3ab4916e1ae +size 7509 diff --git a/Skins/prezes - Copy (2) - Copy/default-1.png b/Skins/prezes - Copy (2) - Copy/default-1.png new file mode 100644 index 00000000..2a8ad996 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e51e876fe0242f0c4b3f6ee5505440fe8392933751a296832aeb9f47e4a4922 +size 1092 diff --git a/Skins/prezes - Copy (2) - Copy/default-1@2x.png b/Skins/prezes - Copy (2) - Copy/default-1@2x.png new file mode 100644 index 00000000..0dcfed20 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dffb89e9e7e6a35e523ab81d0f7693763b1d8cf88e0ad51813ca07a43e77bf9 +size 4038 diff --git a/Skins/prezes - Copy (2) - Copy/default-2.png b/Skins/prezes - Copy (2) - Copy/default-2.png new file mode 100644 index 00000000..f37bca6c --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94e56cb01c5061c5932fd7f7ff1479a059bf00b59e9ca4971d858343dbc2320 +size 1931 diff --git a/Skins/prezes - Copy (2) - Copy/default-2@2x.png b/Skins/prezes - Copy (2) - Copy/default-2@2x.png new file mode 100644 index 00000000..2ac6977e --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437a4328a0a09d2e536d5d1c78a9556f90bc30312fec64c65ffb34e8a574accd +size 6848 diff --git a/Skins/prezes - Copy (2) - Copy/default-3.png b/Skins/prezes - Copy (2) - Copy/default-3.png new file mode 100644 index 00000000..4e043f2e --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d310a0f1f6d9928ed9b71e126cd86a9c5e3e2d091898787b71db01d33adb8b +size 1993 diff --git a/Skins/prezes - Copy (2) - Copy/default-3@2x.png b/Skins/prezes - Copy (2) - Copy/default-3@2x.png new file mode 100644 index 00000000..931fdfcf --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d3952bd605acd5da2ca8820fc1ef5011df66dfc0f5eeeb689cc1ac00a155cd +size 7175 diff --git a/Skins/prezes - Copy (2) - Copy/default-4.png b/Skins/prezes - Copy (2) - Copy/default-4.png new file mode 100644 index 00000000..5f0b0b40 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e4afcaca838096fd7b855e6873f4ae262b1f89f70c60af3d8e866546ce58c1f +size 1691 diff --git a/Skins/prezes - Copy (2) - Copy/default-4@2x.png b/Skins/prezes - Copy (2) - Copy/default-4@2x.png new file mode 100644 index 00000000..25c15b0e --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89a153fead7b6d5ff3db49da53f7ee4fb85ee59ea8fbfe9b8c75e28f44865fb +size 5999 diff --git a/Skins/prezes - Copy (2) - Copy/default-5.png b/Skins/prezes - Copy (2) - Copy/default-5.png new file mode 100644 index 00000000..1aeac5fa --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189caad7ce0af937284426143399156a70bc1306e2360ca7518aca7601090c67 +size 1944 diff --git a/Skins/prezes - Copy (2) - Copy/default-5@2x.png b/Skins/prezes - Copy (2) - Copy/default-5@2x.png new file mode 100644 index 00000000..c436b65f --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48275ddb189bff5826a3311b720b7867d6deb49c80c9d038b98dff3b73fdc19 +size 6941 diff --git a/Skins/prezes - Copy (2) - Copy/default-6.png b/Skins/prezes - Copy (2) - Copy/default-6.png new file mode 100644 index 00000000..4c98a3e9 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29922c9f2767333157884ac0b2425d84b66ff6d90482ce2d4c3be9e5d2f60a93 +size 1937 diff --git a/Skins/prezes - Copy (2) - Copy/default-6@2x.png b/Skins/prezes - Copy (2) - Copy/default-6@2x.png new file mode 100644 index 00000000..f95fd0ac --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bec247d84519db88f0466b6106e2535f131a57827530b22b9424ed3ee59b77f +size 6823 diff --git a/Skins/prezes - Copy (2) - Copy/default-7.png b/Skins/prezes - Copy (2) - Copy/default-7.png new file mode 100644 index 00000000..fcb5ccb6 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b4fd2a4bb4f49af299623df217feda98dbd9454dc734fda981f351e11eaf77 +size 1714 diff --git a/Skins/prezes - Copy (2) - Copy/default-7@2x.png b/Skins/prezes - Copy (2) - Copy/default-7@2x.png new file mode 100644 index 00000000..7054fd57 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2d02625a1f0bfb51a3a0083570b8d4aa045abdde903d491aa2c2c54c5e0d3c +size 5974 diff --git a/Skins/prezes - Copy (2) - Copy/default-8.png b/Skins/prezes - Copy (2) - Copy/default-8.png new file mode 100644 index 00000000..0e3f1277 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5777e14c0196cae71fe7361619e9711ac9d1e2964aa6ec5458d55de1c9bd5e7 +size 1992 diff --git a/Skins/prezes - Copy (2) - Copy/default-8@2x.png b/Skins/prezes - Copy (2) - Copy/default-8@2x.png new file mode 100644 index 00000000..92724fb7 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a78b5aa5f15978214b14dc24cea99d89efa36d1db1e0a584e90c8f45041160 +size 7004 diff --git a/Skins/prezes - Copy (2) - Copy/default-9.png b/Skins/prezes - Copy (2) - Copy/default-9.png new file mode 100644 index 00000000..912e1a56 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3030d165a0fed2e569fd7b9097f323126d39f1a5be3602790cb290065af71b6 +size 1881 diff --git a/Skins/prezes - Copy (2) - Copy/default-9@2x.png b/Skins/prezes - Copy (2) - Copy/default-9@2x.png new file mode 100644 index 00000000..091742b9 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052a316769678c5a6bf62699c4ea21d13e980ce7dc1deae1251cf8e2ba29a5e8 +size 7363 diff --git a/Skins/prezes - Copy (2) - Copy/drum-hitclap.ogg b/Skins/prezes - Copy (2) - Copy/drum-hitclap.ogg new file mode 100644 index 00000000..a8df52df --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705576d643bae20658405e742c207f531f8c009e2996c057ac456abf5a77d39d +size 4211 diff --git a/Skins/prezes - Copy (2) - Copy/drum-hitfinish.ogg b/Skins/prezes - Copy (2) - Copy/drum-hitfinish.ogg new file mode 100644 index 00000000..b2d8546c --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b35a3042002f2f4b4117ee1a6466924b144402a2a379668ce2c68f59b027169 +size 19540 diff --git a/Skins/prezes - Copy (2) - Copy/drum-hitnormal.ogg b/Skins/prezes - Copy (2) - Copy/drum-hitnormal.ogg new file mode 100644 index 00000000..1003b2bb --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb5bd3763dfa3c093afad95558618d7b53de0d333de2c3e916d0f7496198b6f +size 6462 diff --git a/Skins/prezes - Copy (2) - Copy/drum-hitwhistle.ogg b/Skins/prezes - Copy (2) - Copy/drum-hitwhistle.ogg new file mode 100644 index 00000000..5e41fcfb --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4b59dc49da640359d22a312c27f2e27793abad088335073cacb57f5d09ea70 +size 7257 diff --git a/Skins/prezes - Copy (2) - Copy/drum-sliderslide.wav b/Skins/prezes - Copy (2) - Copy/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/drum-slidertick.ogg b/Skins/prezes - Copy (2) - Copy/drum-slidertick.ogg new file mode 100644 index 00000000..4995f2f7 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/drum-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702a02b920ec758b5f287edcefab370a3f4f55320565e643e48463ce06d5aa27 +size 6882 diff --git a/Skins/prezes - Copy (2) - Copy/drum-sliderwhistle.ogg b/Skins/prezes - Copy (2) - Copy/drum-sliderwhistle.ogg new file mode 100644 index 00000000..9ed11d2a --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/drum-sliderwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c431ef12ce257cea58cd4f4d1c42ba6f5197ecd6bfdb2bce54c072296d0be6 +size 4426 diff --git a/Skins/prezes - Copy (2) - Copy/drum-sliderwhistle.wav b/Skins/prezes - Copy (2) - Copy/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-0.png b/Skins/prezes - Copy (2) - Copy/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-1.png b/Skins/prezes - Copy (2) - Copy/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-11.png b/Skins/prezes - Copy (2) - Copy/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-12.png b/Skins/prezes - Copy (2) - Copy/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-13.png b/Skins/prezes - Copy (2) - Copy/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-14.png b/Skins/prezes - Copy (2) - Copy/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-15.png b/Skins/prezes - Copy (2) - Copy/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-16.png b/Skins/prezes - Copy (2) - Copy/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-17.png b/Skins/prezes - Copy (2) - Copy/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-18.png b/Skins/prezes - Copy (2) - Copy/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-19.png b/Skins/prezes - Copy (2) - Copy/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-2.png b/Skins/prezes - Copy (2) - Copy/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-20.png b/Skins/prezes - Copy (2) - Copy/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-21.png b/Skins/prezes - Copy (2) - Copy/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-22.png b/Skins/prezes - Copy (2) - Copy/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-23.png b/Skins/prezes - Copy (2) - Copy/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-3.png b/Skins/prezes - Copy (2) - Copy/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-4.png b/Skins/prezes - Copy (2) - Copy/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-5.png b/Skins/prezes - Copy (2) - Copy/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-6.png b/Skins/prezes - Copy (2) - Copy/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-7.png b/Skins/prezes - Copy (2) - Copy/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-8.png b/Skins/prezes - Copy (2) - Copy/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint-9.png b/Skins/prezes - Copy (2) - Copy/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2) - Copy/followpoint.png b/Skins/prezes - Copy (2) - Copy/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/prezes - Copy (2) - Copy/go.png b/Skins/prezes - Copy (2) - Copy/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/hit0-0.png b/Skins/prezes - Copy (2) - Copy/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/prezes - Copy (2) - Copy/hit0.png b/Skins/prezes - Copy (2) - Copy/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/hit100-0.png b/Skins/prezes - Copy (2) - Copy/hit100-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes - Copy (2) - Copy/hit100.png b/Skins/prezes - Copy (2) - Copy/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/hit100k-0.png b/Skins/prezes - Copy (2) - Copy/hit100k-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes - Copy (2) - Copy/hit100k.png b/Skins/prezes - Copy (2) - Copy/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/hit300.png b/Skins/prezes - Copy (2) - Copy/hit300.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/hit300g.png b/Skins/prezes - Copy (2) - Copy/hit300g.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/hit300k.png b/Skins/prezes - Copy (2) - Copy/hit300k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/hit50-0.png b/Skins/prezes - Copy (2) - Copy/hit50-0.png new file mode 100644 index 00000000..378cdf1e --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1317680bf0c857731dbc67d8689fb11a031033ec4527ff1b25023e0ed4361 +size 1956 diff --git a/Skins/prezes - Copy (2) - Copy/hit50.png b/Skins/prezes - Copy (2) - Copy/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/hitcircle.png b/Skins/prezes - Copy (2) - Copy/hitcircle.png new file mode 100644 index 00000000..8d6d9877 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc62e3351b2da3459ddb3d64fef3e14215836b1e55cced9a65e6fc5f8b5146a +size 7716 diff --git a/Skins/prezes - Copy (2) - Copy/hitcircleoverlay@2x.png b/Skins/prezes - Copy (2) - Copy/hitcircleoverlay@2x.png new file mode 100644 index 00000000..c091ca92 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9389187c584e8ffe1cb3aaf27e85a7ef21f877fb13fb3f012f6037b2ec465e +size 12219 diff --git a/Skins/prezes - Copy (2) - Copy/inputoverlay-background.png b/Skins/prezes - Copy (2) - Copy/inputoverlay-background.png new file mode 100644 index 00000000..faa8d637 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1c00c316056a6b1db2ae050db243344e6e1da6a106a8cf30a2658a8ae68147 +size 148 diff --git a/Skins/prezes - Copy (2) - Copy/inputoverlay-key.png b/Skins/prezes - Copy (2) - Copy/inputoverlay-key.png new file mode 100644 index 00000000..192e33f5 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94479ac8e798ff3c6431722e565c29914ad02ed3ee87c872ffb68625b6406b7 +size 1841 diff --git a/Skins/prezes - Copy (2) - Copy/key-confirm.ogg b/Skins/prezes - Copy (2) - Copy/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/key-delete.ogg b/Skins/prezes - Copy (2) - Copy/key-delete.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/key-movement.ogg b/Skins/prezes - Copy (2) - Copy/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/key-press-1.ogg b/Skins/prezes - Copy (2) - Copy/key-press-1.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/key-press-2.ogg b/Skins/prezes - Copy (2) - Copy/key-press-2.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/key-press-3.ogg b/Skins/prezes - Copy (2) - Copy/key-press-3.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/key-press-4.ogg b/Skins/prezes - Copy (2) - Copy/key-press-4.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/menu-button-background.png b/Skins/prezes - Copy (2) - Copy/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/prezes - Copy (2) - Copy/normal-hitclap.wav b/Skins/prezes - Copy (2) - Copy/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/prezes - Copy (2) - Copy/normal-hitfinish.wav b/Skins/prezes - Copy (2) - Copy/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/prezes - Copy (2) - Copy/normal-hitnormal.wav b/Skins/prezes - Copy (2) - Copy/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/prezes - Copy (2) - Copy/normal-hitwhistle.wav b/Skins/prezes - Copy (2) - Copy/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy (2) - Copy/normal-sliderslide.wav b/Skins/prezes - Copy (2) - Copy/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/prezes - Copy (2) - Copy/normal-slidertick.wav b/Skins/prezes - Copy (2) - Copy/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/prezes - Copy (2) - Copy/normal-sliderwhistle.wav b/Skins/prezes - Copy (2) - Copy/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/prezes - Copy (2) - Copy/pause-back.png b/Skins/prezes - Copy (2) - Copy/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/prezes - Copy (2) - Copy/pause-continue.png b/Skins/prezes - Copy (2) - Copy/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/prezes - Copy (2) - Copy/pause-replay.png b/Skins/prezes - Copy (2) - Copy/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/prezes - Copy (2) - Copy/pause-retry.png b/Skins/prezes - Copy (2) - Copy/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/prezes - Copy (2) - Copy/play-skip.png b/Skins/prezes - Copy (2) - Copy/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/play-unranked.png b/Skins/prezes - Copy (2) - Copy/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/play-warningarrow.png b/Skins/prezes - Copy (2) - Copy/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-A-small.png b/Skins/prezes - Copy (2) - Copy/ranking-A-small.png new file mode 100644 index 00000000..1f031d7c --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50870a7551614721716fcdf59901a1b7c5320ae83ba6a0f34b55d2a899a5adcf +size 4703 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-B-small.png b/Skins/prezes - Copy (2) - Copy/ranking-B-small.png new file mode 100644 index 00000000..47cbeb6c --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febbeb30e8b5e76cf402a997797edfa35faa35aa8308ab7eb822a91a0daa9410 +size 4490 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-C-small.png b/Skins/prezes - Copy (2) - Copy/ranking-C-small.png new file mode 100644 index 00000000..741b51fd --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241c1833fc5daf588ebaab8e1e487d30e1670065a4eee5f633d2dbf1aedaec06 +size 4555 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-D-small.png b/Skins/prezes - Copy (2) - Copy/ranking-D-small.png new file mode 100644 index 00000000..4dd50ac2 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60553c613ebb581bfc535daaa805c3250c753ec2ce6e13e8c07444c73e8c14 +size 4365 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-S-small.png b/Skins/prezes - Copy (2) - Copy/ranking-S-small.png new file mode 100644 index 00000000..46824491 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b57053a2015070c2e7d305f50e15368eeb311acad7c7be4eb7a1c4fa5f2af3 +size 4768 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-SH-small.png b/Skins/prezes - Copy (2) - Copy/ranking-SH-small.png new file mode 100644 index 00000000..9874a6eb --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dfd8fd78d8b2a32b7992cf987cc0dd8b86cdfb46c1fd9286379c658e7219a3 +size 4547 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-X-small.png b/Skins/prezes - Copy (2) - Copy/ranking-X-small.png new file mode 100644 index 00000000..6401b38b --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc163849993b7a223529b496163782fe172f9c1e5fb4585973260eb3618b1744 +size 5563 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-XH-small.png b/Skins/prezes - Copy (2) - Copy/ranking-XH-small.png new file mode 100644 index 00000000..2e6a8046 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b002b5c666212d5e7435332ac24f6c0e354666e9f69e13ecb41d7ace30dd0a +size 5313 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-accuracy.png b/Skins/prezes - Copy (2) - Copy/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-graph.png b/Skins/prezes - Copy (2) - Copy/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-graph@2x.png b/Skins/prezes - Copy (2) - Copy/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-maxcombo.png b/Skins/prezes - Copy (2) - Copy/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-panel.png b/Skins/prezes - Copy (2) - Copy/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-panel@2x.png b/Skins/prezes - Copy (2) - Copy/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-perfect.png b/Skins/prezes - Copy (2) - Copy/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-title.png b/Skins/prezes - Copy (2) - Copy/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/ranking-winner.png b/Skins/prezes - Copy (2) - Copy/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/ready.png b/Skins/prezes - Copy (2) - Copy/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/readys.ogg b/Skins/prezes - Copy (2) - Copy/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/reversearrow@2x.png b/Skins/prezes - Copy (2) - Copy/reversearrow@2x.png new file mode 100644 index 00000000..c43eefd2 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75207941e4314a98129cd0c54492c176cd56390e3019a9e12a3ba93547c58a5 +size 16861 diff --git a/Skins/prezes - Copy (2) - Copy/score-percent.png b/Skins/prezes - Copy (2) - Copy/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/score-x.png b/Skins/prezes - Copy (2) - Copy/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/score-x@2x.png b/Skins/prezes - Copy (2) - Copy/score-x@2x.png new file mode 100644 index 00000000..204e1d32 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c81714a5f028ec516d58fa2431b2f9c0622dfff7ff1d31dc911d69b00276524 +size 5041 diff --git a/Skins/prezes - Copy (2) - Copy/scorebar-bg.png b/Skins/prezes - Copy (2) - Copy/scorebar-bg.png new file mode 100644 index 00000000..58406986 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c918577a6c30740788ca3e8b1808f125a23a464f770181099975e608dcf723b +size 73994 diff --git a/Skins/prezes - Copy (2) - Copy/scorebar-colour.png b/Skins/prezes - Copy (2) - Copy/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/scorebar-marker.png b/Skins/prezes - Copy (2) - Copy/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/scoreentry-comma.png b/Skins/prezes - Copy (2) - Copy/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes - Copy (2) - Copy/scoreentry-dot.png b/Skins/prezes - Copy (2) - Copy/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes - Copy (2) - Copy/scoreentry-percent.png b/Skins/prezes - Copy (2) - Copy/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/scoreentry-x.png b/Skins/prezes - Copy (2) - Copy/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-autoplay@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..ed189d6e --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d16303be865ce02feede1845dcdefbc115f2f9fbd8b3dc3baff1ba650997724 +size 13667 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-cinema@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-cinema@2x.png new file mode 100644 index 00000000..db84c414 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45df8def051cfbbb31115a28ab9c02c0a20bd8b426f19900f337a7816acfebd6 +size 22259 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-doubletime@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6f471799 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b579edd7458a28dc8063e5ab01ce9be32ee0dd94388aad6f2c0189ac216c3c +size 21202 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-easy@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-easy@2x.png new file mode 100644 index 00000000..52fa94c8 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb4dadafd8964a3bfd702763cf675917453afe4dc3a4abafe72896beb02e7bc +size 13043 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-flashlight@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..bd178b55 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bf5cc4153a4c77e1eb4208c7ef6020e47c49fcb014567139dc3e79be3f5900 +size 15503 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-halftime@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-halftime@2x.png new file mode 100644 index 00000000..595b8452 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f8a011ceb3082ee82f0ea40d2750cab07ba3e066208f28f62fd56d62551d70 +size 12853 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-hardrock@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..d78a8b5c --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2398e0471f2ad18083bad94f1d78c5ddccdb24a9d44586bcda0ea23551cc3e +size 17560 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-hidden@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-hidden@2x.png new file mode 100644 index 00000000..b4cbf002 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e0c218610a22452283aeb7976391cb6164f9a69f454736bea7a42dc9763ac4 +size 22127 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-nightcore@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..aeaba637 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876ba95cb756fa07b2920afde80b3c13a1c1afab29eed2d95c3658e92daccab5 +size 16358 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-nofail@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-nofail@2x.png new file mode 100644 index 00000000..7812d0f7 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e50c010bc36bcbd5feee98ae3808425482715ddb4954364891e21468513842 +size 20945 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-perfect@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-perfect@2x.png new file mode 100644 index 00000000..1fadb52f --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8e6fa28838f08e3b9768642aa3766e4f16d0800a242b6de2139006534d9592 +size 16077 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-relax2@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-relax2@2x.png new file mode 100644 index 00000000..4f87a207 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703d9ceb29648ae8ced917353b79c337a3bf384fc974176b2bbdeea979ba98f3 +size 17362 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-relax@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-relax@2x.png new file mode 100644 index 00000000..9ce08619 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b30631a4296e085afdeadb5d413ba489350078bb723af445d65931ad6d1e19 +size 13251 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-spunout@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-spunout@2x.png new file mode 100644 index 00000000..c902b31e --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e98f9b2ea1464b96ae7d6ef6a375a6490d2e5473d08e61221a785c1a52e387 +size 19156 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-suddendeath@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..ca40518a --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069e192fcfff644c94134100d1493c1b81c7f166a42db0d45c080fa938c9029c +size 22918 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mod-target@2x.png b/Skins/prezes - Copy (2) - Copy/selection-mod-target@2x.png new file mode 100644 index 00000000..629cd028 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d502463c96d96daaf96e7d68276e209c4afe3a33d5289a6eca14280da5edf7ec +size 27959 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mode.png b/Skins/prezes - Copy (2) - Copy/selection-mode.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mods-over.png b/Skins/prezes - Copy (2) - Copy/selection-mods-over.png new file mode 100644 index 00000000..b68deba2 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247c4032d4bceaf2c5bc380a6761583186916fe949438ab9cf5b31393e2345dc +size 16609 diff --git a/Skins/prezes - Copy (2) - Copy/selection-mods.png b/Skins/prezes - Copy (2) - Copy/selection-mods.png new file mode 100644 index 00000000..b937e7fa --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9644f163ebb55787dd2dd976e51ede91efa9a4ce21a7665ca9e8d5b04d79bfb0 +size 7337 diff --git a/Skins/prezes - Copy (2) - Copy/selection-options-over.png b/Skins/prezes - Copy (2) - Copy/selection-options-over.png new file mode 100644 index 00000000..e760aeaf --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6531c2c5723ea65d52661409c7949985b12d066990ec192a7b1937c9dee1079 +size 17478 diff --git a/Skins/prezes - Copy (2) - Copy/selection-options.png b/Skins/prezes - Copy (2) - Copy/selection-options.png new file mode 100644 index 00000000..2e0b74c2 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac6966279e9161e4707df554d0f1ec4a139c1577d74c33d1515bd1378d7e579 +size 7473 diff --git a/Skins/prezes - Copy (2) - Copy/selection-random-over.png b/Skins/prezes - Copy (2) - Copy/selection-random-over.png new file mode 100644 index 00000000..a1261c0b --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2af8ae50ad9d8cbb42e1e0139af3cd685d5118b409a550b9ddf7702730502ef +size 17203 diff --git a/Skins/prezes - Copy (2) - Copy/selection-random.png b/Skins/prezes - Copy (2) - Copy/selection-random.png new file mode 100644 index 00000000..d21606ce --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dec06d576cbb139d25c0a3186cafc903ae696575f81173bf00a42a85271d3fb +size 7125 diff --git a/Skins/prezes - Copy (2) - Copy/selection-selectoptions-over.png b/Skins/prezes - Copy (2) - Copy/selection-selectoptions-over.png new file mode 100644 index 00000000..294f8e15 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213f480c6712a87336599b9cc3cf7a31d68bb625369ffe46c2b13a6b42394c77 +size 17185 diff --git a/Skins/prezes - Copy (2) - Copy/selection-selectoptions.png b/Skins/prezes - Copy (2) - Copy/selection-selectoptions.png new file mode 100644 index 00000000..038d6d8e --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e6c080739692e511f0cd8a6063866340d8f9978a6f1563cc45c0391a2c58cc +size 7308 diff --git a/Skins/prezes - Copy (2) - Copy/selection-tab.png b/Skins/prezes - Copy (2) - Copy/selection-tab.png new file mode 100644 index 00000000..a35bf13f --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb5ba814f28906665ff0918c3dae701b1461cf11d9535f96aa410ab427db79b +size 1884 diff --git a/Skins/prezes - Copy (2) - Copy/shutter.ogg b/Skins/prezes - Copy (2) - Copy/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2) - Copy/skin.ini b/Skins/prezes - Copy (2) - Copy/skin.ini new file mode 100644 index 00000000..7712bb98 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/skin.ini @@ -0,0 +1,23 @@ +// skin.ini generated by osu! skin mixer v2.9.0 + +[General] +Name: prezes diff combo numbers and hitsounds +Version: latest +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 + +[Colours] +SliderBorder: 60,60,60 +SliderTrackOverride: 0,0,0 +Combo1: 255,102,102 +Combo2: 255,153,153 +Combo3: 255,204,204 +SongSelectActiveText: 255,153,153 +SongSelectInactiveText: 255,153,153 + +[Fonts] +ScoreOverlap: 0 +ScorePrefix: score +ComboOverlap: 0 +HitCircleOverlap: 20 diff --git a/Skins/prezes - Copy (2) - Copy/sliderb.png b/Skins/prezes - Copy (2) - Copy/sliderb.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes - Copy (2) - Copy/sliderb@2x.png b/Skins/prezes - Copy (2) - Copy/sliderb@2x.png new file mode 100644 index 00000000..b1504a18 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ac739f478cc6d9e64c3a4071ba5fbfb7c5e05c48a6bda234f149e2fc300a7e +size 5675 diff --git a/Skins/prezes - Copy (2) - Copy/sliderendcircle.png b/Skins/prezes - Copy (2) - Copy/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes - Copy (2) - Copy/sliderfollowcircle.png b/Skins/prezes - Copy (2) - Copy/sliderfollowcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/sliderscorepoint.png b/Skins/prezes - Copy (2) - Copy/sliderscorepoint.png new file mode 100644 index 00000000..c39cb2e1 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72f25f445940b166868007fd83eba1117812b907b5c58bcd8cc9014715c6afc +size 5091 diff --git a/Skins/prezes - Copy (2) - Copy/soft-hitclap.wav b/Skins/prezes - Copy (2) - Copy/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/prezes - Copy (2) - Copy/soft-hitfinish.wav b/Skins/prezes - Copy (2) - Copy/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/prezes - Copy (2) - Copy/soft-hitnormal.wav b/Skins/prezes - Copy (2) - Copy/soft-hitnormal.wav new file mode 100644 index 00000000..d26e6c9d --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24b4b6fb8c45831611a811b4ef7cbe521ab807a7c60cee82a9873f3a60a5a20 +size 39922 diff --git a/Skins/prezes - Copy (2) - Copy/soft-hitwhistle.wav b/Skins/prezes - Copy (2) - Copy/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy (2) - Copy/soft-sliderslide.wav b/Skins/prezes - Copy (2) - Copy/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/prezes - Copy (2) - Copy/soft-slidertick.wav b/Skins/prezes - Copy (2) - Copy/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/prezes - Copy (2) - Copy/soft-sliderwhistle.wav b/Skins/prezes - Copy (2) - Copy/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/prezes - Copy (2) - Copy/spinner-approachcircle.png b/Skins/prezes - Copy (2) - Copy/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/spinner-background.png b/Skins/prezes - Copy (2) - Copy/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/spinner-circle@2x.png b/Skins/prezes - Copy (2) - Copy/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/prezes - Copy (2) - Copy/spinner-clear.png b/Skins/prezes - Copy (2) - Copy/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/spinner-rpm.png b/Skins/prezes - Copy (2) - Copy/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/spinner-spin.png b/Skins/prezes - Copy (2) - Copy/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/spinnerbonus.wav b/Skins/prezes - Copy (2) - Copy/spinnerbonus.wav new file mode 100644 index 00000000..4eeeb4b8 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a207a6a8e703df332c545b7a8e26282eca46ed72b619eb10e857797cdd98be +size 81574 diff --git a/Skins/prezes - Copy (2) - Copy/spinnerspin.wav b/Skins/prezes - Copy (2) - Copy/spinnerspin.wav new file mode 100644 index 00000000..875566af --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d78a8ca9586439e7ec23cdf6d3118b2d89668a60d4884d9cdb3fda00119da1e +size 180140 diff --git a/Skins/prezes - Copy (2) - Copy/star.png b/Skins/prezes - Copy (2) - Copy/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/star2.png b/Skins/prezes - Copy (2) - Copy/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2) - Copy/star2@2x.png b/Skins/prezes - Copy (2) - Copy/star2@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2) - Copy/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2)/Score-0@2x.png b/Skins/prezes - Copy (2)/Score-0@2x.png new file mode 100644 index 00000000..9cd3963a --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9ff35588b818a904422b136c94e8183a0dd5d6604f9e5af0dbc202d7347e45 +size 4787 diff --git a/Skins/prezes - Copy (2)/Score-1@2x.png b/Skins/prezes - Copy (2)/Score-1@2x.png new file mode 100644 index 00000000..92b1d95f --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb837459da0a71ea721642f1542528dff9bd3323a20bc9642a91f36fa7ecf1d +size 4520 diff --git a/Skins/prezes - Copy (2)/Score-2@2x.png b/Skins/prezes - Copy (2)/Score-2@2x.png new file mode 100644 index 00000000..eef2b5e8 --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3daee5b5eebb1725629e719964b859f6695fa1192369602e90b7b282b5deb2b +size 6056 diff --git a/Skins/prezes - Copy (2)/Score-3@2x.png b/Skins/prezes - Copy (2)/Score-3@2x.png new file mode 100644 index 00000000..95840a7c --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25349b8a326ef088b831f3c2df5ad690c2e6a791d2f9992192107852d3940a3e +size 5578 diff --git a/Skins/prezes - Copy (2)/Score-4@2x.png b/Skins/prezes - Copy (2)/Score-4@2x.png new file mode 100644 index 00000000..baeae8b4 --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc9e701986f6e718e1d55078a8b3330f94eca60703aea470537648070efb399c +size 5139 diff --git a/Skins/prezes - Copy (2)/Score-5@2x.png b/Skins/prezes - Copy (2)/Score-5@2x.png new file mode 100644 index 00000000..44e622b5 --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b402d802f3324d6f160842b06a0c66b0fe5ae0facc351dd5b677aa9027426b9 +size 5324 diff --git a/Skins/prezes - Copy (2)/Score-6@2x.png b/Skins/prezes - Copy (2)/Score-6@2x.png new file mode 100644 index 00000000..21aebd07 --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa7a817766fee8e6b09f55daf2d24a5d8c198ce01b098e91173c2b609706eecb +size 5537 diff --git a/Skins/prezes - Copy (2)/Score-7@2x.png b/Skins/prezes - Copy (2)/Score-7@2x.png new file mode 100644 index 00000000..8f16241d --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9901abf426c0777187edbef2a05ceb09075dfba70f675c3a251936cdeb6a936 +size 5730 diff --git a/Skins/prezes - Copy (2)/Score-8@2x.png b/Skins/prezes - Copy (2)/Score-8@2x.png new file mode 100644 index 00000000..cc1d4c6b --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd2603936f48f459f0ca1c03dcf41125df847aab37107625c8319ee382226aa +size 5702 diff --git a/Skins/prezes - Copy (2)/Score-9@2x.png b/Skins/prezes - Copy (2)/Score-9@2x.png new file mode 100644 index 00000000..c2c2c448 --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fee10d7e8b3fc1083eace9b6fdd1ceab6c78429ea2698be616564a4968c555a +size 5547 diff --git a/Skins/prezes - Copy (2)/Score-comma@2x.png b/Skins/prezes - Copy (2)/Score-comma@2x.png new file mode 100644 index 00000000..f41cd720 --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34576e947c862d31a161033fe2854ed299ca3f2c208fa588c6faa5c8e50d3fc +size 4009 diff --git a/Skins/prezes - Copy (2)/Score-percent@2x.png b/Skins/prezes - Copy (2)/Score-percent@2x.png new file mode 100644 index 00000000..d3d096b2 --- /dev/null +++ b/Skins/prezes - Copy (2)/Score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45c59f692945350caa5996b106e07b0e541487984b5782c53d42de7ab853303 +size 6358 diff --git a/Skins/prezes - Copy (2)/applause.mp3 b/Skins/prezes - Copy (2)/applause.mp3 new file mode 100644 index 00000000..aeb2d742 --- /dev/null +++ b/Skins/prezes - Copy (2)/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f571204649b205de430776952a078b006405892f310bd6807e054dc454d783e +size 309464 diff --git a/Skins/prezes - Copy (2)/approachcircle.png b/Skins/prezes - Copy (2)/approachcircle.png new file mode 100644 index 00000000..8d7ca8db --- /dev/null +++ b/Skins/prezes - Copy (2)/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d435ccbd1c44abab9d9b94ed850f80476d1bfc509b89031c8c94ae0edc4611c +size 14700 diff --git a/Skins/prezes - Copy (2)/approachcircle@2x.png b/Skins/prezes - Copy (2)/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/prezes - Copy (2)/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/prezes - Copy (2)/button-left.png b/Skins/prezes - Copy (2)/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/button-middle.png b/Skins/prezes - Copy (2)/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/button-right.png b/Skins/prezes - Copy (2)/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/count1.png b/Skins/prezes - Copy (2)/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/count2.png b/Skins/prezes - Copy (2)/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/count3.png b/Skins/prezes - Copy (2)/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/cursor-smoke.png b/Skins/prezes - Copy (2)/cursor-smoke.png new file mode 100644 index 00000000..072c56dc --- /dev/null +++ b/Skins/prezes - Copy (2)/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ce8c21a36db630ffafb9c05a78a911370fd199f6e2b7a5853e94b0cbcd32ed +size 2801 diff --git a/Skins/prezes - Copy (2)/cursor.png b/Skins/prezes - Copy (2)/cursor.png new file mode 100644 index 00000000..0ac7c315 --- /dev/null +++ b/Skins/prezes - Copy (2)/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c728c0777f227ad6e0fde252848584787dd63a22acd661df2c88a3eb111bf6 +size 6899 diff --git a/Skins/prezes - Copy (2)/cursortrail.png b/Skins/prezes - Copy (2)/cursortrail.png new file mode 100644 index 00000000..0a140ab6 --- /dev/null +++ b/Skins/prezes - Copy (2)/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3844738c6b2395743f8b9d71942aad8a5600e94479c20ce6d45b5e572d2b5795 +size 5680 diff --git a/Skins/prezes - Copy (2)/default-0.png b/Skins/prezes - Copy (2)/default-0.png new file mode 100644 index 00000000..05dc9667 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cfeddb009d9640c23159e6c78404ee8eb5fbae5469f48145ad6bc4c81d8b50 +size 2150 diff --git a/Skins/prezes - Copy (2)/default-0@2x.png b/Skins/prezes - Copy (2)/default-0@2x.png new file mode 100644 index 00000000..e677e4e2 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691bb62cbe70ddda43a9f3019071f314dd1bfb177b060903b018c3ab4916e1ae +size 7509 diff --git a/Skins/prezes - Copy (2)/default-1.png b/Skins/prezes - Copy (2)/default-1.png new file mode 100644 index 00000000..2a8ad996 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e51e876fe0242f0c4b3f6ee5505440fe8392933751a296832aeb9f47e4a4922 +size 1092 diff --git a/Skins/prezes - Copy (2)/default-1@2x.png b/Skins/prezes - Copy (2)/default-1@2x.png new file mode 100644 index 00000000..0dcfed20 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dffb89e9e7e6a35e523ab81d0f7693763b1d8cf88e0ad51813ca07a43e77bf9 +size 4038 diff --git a/Skins/prezes - Copy (2)/default-2.png b/Skins/prezes - Copy (2)/default-2.png new file mode 100644 index 00000000..f37bca6c --- /dev/null +++ b/Skins/prezes - Copy (2)/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94e56cb01c5061c5932fd7f7ff1479a059bf00b59e9ca4971d858343dbc2320 +size 1931 diff --git a/Skins/prezes - Copy (2)/default-2@2x.png b/Skins/prezes - Copy (2)/default-2@2x.png new file mode 100644 index 00000000..2ac6977e --- /dev/null +++ b/Skins/prezes - Copy (2)/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437a4328a0a09d2e536d5d1c78a9556f90bc30312fec64c65ffb34e8a574accd +size 6848 diff --git a/Skins/prezes - Copy (2)/default-3.png b/Skins/prezes - Copy (2)/default-3.png new file mode 100644 index 00000000..4e043f2e --- /dev/null +++ b/Skins/prezes - Copy (2)/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d310a0f1f6d9928ed9b71e126cd86a9c5e3e2d091898787b71db01d33adb8b +size 1993 diff --git a/Skins/prezes - Copy (2)/default-3@2x.png b/Skins/prezes - Copy (2)/default-3@2x.png new file mode 100644 index 00000000..931fdfcf --- /dev/null +++ b/Skins/prezes - Copy (2)/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d3952bd605acd5da2ca8820fc1ef5011df66dfc0f5eeeb689cc1ac00a155cd +size 7175 diff --git a/Skins/prezes - Copy (2)/default-4.png b/Skins/prezes - Copy (2)/default-4.png new file mode 100644 index 00000000..5f0b0b40 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e4afcaca838096fd7b855e6873f4ae262b1f89f70c60af3d8e866546ce58c1f +size 1691 diff --git a/Skins/prezes - Copy (2)/default-4@2x.png b/Skins/prezes - Copy (2)/default-4@2x.png new file mode 100644 index 00000000..25c15b0e --- /dev/null +++ b/Skins/prezes - Copy (2)/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89a153fead7b6d5ff3db49da53f7ee4fb85ee59ea8fbfe9b8c75e28f44865fb +size 5999 diff --git a/Skins/prezes - Copy (2)/default-5.png b/Skins/prezes - Copy (2)/default-5.png new file mode 100644 index 00000000..1aeac5fa --- /dev/null +++ b/Skins/prezes - Copy (2)/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189caad7ce0af937284426143399156a70bc1306e2360ca7518aca7601090c67 +size 1944 diff --git a/Skins/prezes - Copy (2)/default-5@2x.png b/Skins/prezes - Copy (2)/default-5@2x.png new file mode 100644 index 00000000..c436b65f --- /dev/null +++ b/Skins/prezes - Copy (2)/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48275ddb189bff5826a3311b720b7867d6deb49c80c9d038b98dff3b73fdc19 +size 6941 diff --git a/Skins/prezes - Copy (2)/default-6.png b/Skins/prezes - Copy (2)/default-6.png new file mode 100644 index 00000000..4c98a3e9 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29922c9f2767333157884ac0b2425d84b66ff6d90482ce2d4c3be9e5d2f60a93 +size 1937 diff --git a/Skins/prezes - Copy (2)/default-6@2x.png b/Skins/prezes - Copy (2)/default-6@2x.png new file mode 100644 index 00000000..f95fd0ac --- /dev/null +++ b/Skins/prezes - Copy (2)/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bec247d84519db88f0466b6106e2535f131a57827530b22b9424ed3ee59b77f +size 6823 diff --git a/Skins/prezes - Copy (2)/default-7.png b/Skins/prezes - Copy (2)/default-7.png new file mode 100644 index 00000000..fcb5ccb6 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b4fd2a4bb4f49af299623df217feda98dbd9454dc734fda981f351e11eaf77 +size 1714 diff --git a/Skins/prezes - Copy (2)/default-7@2x.png b/Skins/prezes - Copy (2)/default-7@2x.png new file mode 100644 index 00000000..7054fd57 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2d02625a1f0bfb51a3a0083570b8d4aa045abdde903d491aa2c2c54c5e0d3c +size 5974 diff --git a/Skins/prezes - Copy (2)/default-8.png b/Skins/prezes - Copy (2)/default-8.png new file mode 100644 index 00000000..0e3f1277 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5777e14c0196cae71fe7361619e9711ac9d1e2964aa6ec5458d55de1c9bd5e7 +size 1992 diff --git a/Skins/prezes - Copy (2)/default-8@2x.png b/Skins/prezes - Copy (2)/default-8@2x.png new file mode 100644 index 00000000..92724fb7 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a78b5aa5f15978214b14dc24cea99d89efa36d1db1e0a584e90c8f45041160 +size 7004 diff --git a/Skins/prezes - Copy (2)/default-9.png b/Skins/prezes - Copy (2)/default-9.png new file mode 100644 index 00000000..912e1a56 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3030d165a0fed2e569fd7b9097f323126d39f1a5be3602790cb290065af71b6 +size 1881 diff --git a/Skins/prezes - Copy (2)/default-9@2x.png b/Skins/prezes - Copy (2)/default-9@2x.png new file mode 100644 index 00000000..091742b9 --- /dev/null +++ b/Skins/prezes - Copy (2)/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052a316769678c5a6bf62699c4ea21d13e980ce7dc1deae1251cf8e2ba29a5e8 +size 7363 diff --git a/Skins/prezes - Copy (2)/drum-hitclap.ogg b/Skins/prezes - Copy (2)/drum-hitclap.ogg new file mode 100644 index 00000000..f72b6ba6 --- /dev/null +++ b/Skins/prezes - Copy (2)/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b855f7affaa94ea029d9244089de243682c5e670b34b2a8ea3a0f7e899db8fe +size 5151 diff --git a/Skins/prezes - Copy (2)/drum-hitfinish.ogg b/Skins/prezes - Copy (2)/drum-hitfinish.ogg new file mode 100644 index 00000000..f320932f --- /dev/null +++ b/Skins/prezes - Copy (2)/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd88f8b4502908cff6252307a3952e8c908daa49cbcea95f5bbc48d28df7c4c +size 5763 diff --git a/Skins/prezes - Copy (2)/drum-hitnormal.ogg b/Skins/prezes - Copy (2)/drum-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes - Copy (2)/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes - Copy (2)/drum-hitwhistle.wav b/Skins/prezes - Copy (2)/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy (2)/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy (2)/drum-sliderslide.ogg b/Skins/prezes - Copy (2)/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/drum-slidertick.ogg b/Skins/prezes - Copy (2)/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/drum-sliderwhistle.ogg b/Skins/prezes - Copy (2)/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/followpoint-0.png b/Skins/prezes - Copy (2)/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy (2)/followpoint-1.png b/Skins/prezes - Copy (2)/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy (2)/followpoint-11.png b/Skins/prezes - Copy (2)/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/prezes - Copy (2)/followpoint-12.png b/Skins/prezes - Copy (2)/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/prezes - Copy (2)/followpoint-13.png b/Skins/prezes - Copy (2)/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/prezes - Copy (2)/followpoint-14.png b/Skins/prezes - Copy (2)/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/prezes - Copy (2)/followpoint-15.png b/Skins/prezes - Copy (2)/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/prezes - Copy (2)/followpoint-16.png b/Skins/prezes - Copy (2)/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/prezes - Copy (2)/followpoint-17.png b/Skins/prezes - Copy (2)/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/prezes - Copy (2)/followpoint-18.png b/Skins/prezes - Copy (2)/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/prezes - Copy (2)/followpoint-19.png b/Skins/prezes - Copy (2)/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/prezes - Copy (2)/followpoint-2.png b/Skins/prezes - Copy (2)/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy (2)/followpoint-20.png b/Skins/prezes - Copy (2)/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/prezes - Copy (2)/followpoint-21.png b/Skins/prezes - Copy (2)/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/prezes - Copy (2)/followpoint-22.png b/Skins/prezes - Copy (2)/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/prezes - Copy (2)/followpoint-23.png b/Skins/prezes - Copy (2)/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/prezes - Copy (2)/followpoint-3.png b/Skins/prezes - Copy (2)/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/prezes - Copy (2)/followpoint-4.png b/Skins/prezes - Copy (2)/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2)/followpoint-5.png b/Skins/prezes - Copy (2)/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2)/followpoint-6.png b/Skins/prezes - Copy (2)/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2)/followpoint-7.png b/Skins/prezes - Copy (2)/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2)/followpoint-8.png b/Skins/prezes - Copy (2)/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2)/followpoint-9.png b/Skins/prezes - Copy (2)/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy (2)/followpoint.png b/Skins/prezes - Copy (2)/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/prezes - Copy (2)/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/prezes - Copy (2)/go.png b/Skins/prezes - Copy (2)/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/hit0-0.png b/Skins/prezes - Copy (2)/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/prezes - Copy (2)/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/prezes - Copy (2)/hit0.png b/Skins/prezes - Copy (2)/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/hit100-0.png b/Skins/prezes - Copy (2)/hit100-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes - Copy (2)/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes - Copy (2)/hit100.png b/Skins/prezes - Copy (2)/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/hit100k-0.png b/Skins/prezes - Copy (2)/hit100k-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes - Copy (2)/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes - Copy (2)/hit100k.png b/Skins/prezes - Copy (2)/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/hit300.png b/Skins/prezes - Copy (2)/hit300.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/hit300g.png b/Skins/prezes - Copy (2)/hit300g.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/hit300k.png b/Skins/prezes - Copy (2)/hit300k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/hit50-0.png b/Skins/prezes - Copy (2)/hit50-0.png new file mode 100644 index 00000000..378cdf1e --- /dev/null +++ b/Skins/prezes - Copy (2)/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1317680bf0c857731dbc67d8689fb11a031033ec4527ff1b25023e0ed4361 +size 1956 diff --git a/Skins/prezes - Copy (2)/hit50.png b/Skins/prezes - Copy (2)/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/hitcircle.png b/Skins/prezes - Copy (2)/hitcircle.png new file mode 100644 index 00000000..8d6d9877 --- /dev/null +++ b/Skins/prezes - Copy (2)/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc62e3351b2da3459ddb3d64fef3e14215836b1e55cced9a65e6fc5f8b5146a +size 7716 diff --git a/Skins/prezes - Copy (2)/hitcircleoverlay@2x.png b/Skins/prezes - Copy (2)/hitcircleoverlay@2x.png new file mode 100644 index 00000000..c091ca92 --- /dev/null +++ b/Skins/prezes - Copy (2)/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9389187c584e8ffe1cb3aaf27e85a7ef21f877fb13fb3f012f6037b2ec465e +size 12219 diff --git a/Skins/prezes - Copy (2)/inputoverlay-background.png b/Skins/prezes - Copy (2)/inputoverlay-background.png new file mode 100644 index 00000000..faa8d637 --- /dev/null +++ b/Skins/prezes - Copy (2)/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1c00c316056a6b1db2ae050db243344e6e1da6a106a8cf30a2658a8ae68147 +size 148 diff --git a/Skins/prezes - Copy (2)/inputoverlay-key.png b/Skins/prezes - Copy (2)/inputoverlay-key.png new file mode 100644 index 00000000..192e33f5 --- /dev/null +++ b/Skins/prezes - Copy (2)/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94479ac8e798ff3c6431722e565c29914ad02ed3ee87c872ffb68625b6406b7 +size 1841 diff --git a/Skins/prezes - Copy (2)/key-confirm.ogg b/Skins/prezes - Copy (2)/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/key-delete.ogg b/Skins/prezes - Copy (2)/key-delete.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/key-movement.ogg b/Skins/prezes - Copy (2)/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/key-press-1.ogg b/Skins/prezes - Copy (2)/key-press-1.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/key-press-2.ogg b/Skins/prezes - Copy (2)/key-press-2.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/key-press-3.ogg b/Skins/prezes - Copy (2)/key-press-3.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/key-press-4.ogg b/Skins/prezes - Copy (2)/key-press-4.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/menu-button-background.png b/Skins/prezes - Copy (2)/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/prezes - Copy (2)/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/prezes - Copy (2)/nightcore-clap.ogg b/Skins/prezes - Copy (2)/nightcore-clap.ogg new file mode 100644 index 00000000..a1cf7c71 --- /dev/null +++ b/Skins/prezes - Copy (2)/nightcore-clap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8207912bc05bf89590d1c6bc2f3454ea5af65e36bd691d50a4859885cf8c72d +size 4465 diff --git a/Skins/prezes - Copy (2)/nightcore-finish.ogg b/Skins/prezes - Copy (2)/nightcore-finish.ogg new file mode 100644 index 00000000..458b08aa --- /dev/null +++ b/Skins/prezes - Copy (2)/nightcore-finish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6aaa47cfd2b5d7d7648d67b57d626b0bd802abd8efe8ecaa34a44de6e8e387 +size 4465 diff --git a/Skins/prezes - Copy (2)/nightcore-hat.ogg b/Skins/prezes - Copy (2)/nightcore-hat.ogg new file mode 100644 index 00000000..953bfb1a --- /dev/null +++ b/Skins/prezes - Copy (2)/nightcore-hat.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc445489d224cac39374676877ecba8a61695f0d7ef79b89c4d5fc0b833a0931 +size 4464 diff --git a/Skins/prezes - Copy (2)/nightcore-kick.ogg b/Skins/prezes - Copy (2)/nightcore-kick.ogg new file mode 100644 index 00000000..2de1425b --- /dev/null +++ b/Skins/prezes - Copy (2)/nightcore-kick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e67f0f9850933b0cc1ec339ce9c14bb8c9952c2cf4fc4e182626cec3949b0e +size 4465 diff --git a/Skins/prezes - Copy (2)/normal-hitclap.ogg b/Skins/prezes - Copy (2)/normal-hitclap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/normal-hitfinish.ogg b/Skins/prezes - Copy (2)/normal-hitfinish.ogg new file mode 100644 index 00000000..a44e5922 --- /dev/null +++ b/Skins/prezes - Copy (2)/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7923246734d3e789070e853ae1755f0b7c3c9dd80a1326e82eec46f61c120195 +size 5970 diff --git a/Skins/prezes - Copy (2)/normal-hitnormal.ogg b/Skins/prezes - Copy (2)/normal-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes - Copy (2)/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes - Copy (2)/normal-hitwhistle.ogg b/Skins/prezes - Copy (2)/normal-hitwhistle.ogg new file mode 100644 index 00000000..db5b140b --- /dev/null +++ b/Skins/prezes - Copy (2)/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c87455b018f84cc4c1d863919e0a327533f9ceff6f2dc2ba049ecb74b38903c8 +size 15353 diff --git a/Skins/prezes - Copy (2)/normal-hitwhistle.wav b/Skins/prezes - Copy (2)/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy (2)/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy (2)/normal-sliderslide.ogg b/Skins/prezes - Copy (2)/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/normal-slidertick.ogg b/Skins/prezes - Copy (2)/normal-slidertick.ogg new file mode 100644 index 00000000..a3dd50db --- /dev/null +++ b/Skins/prezes - Copy (2)/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941388fc58f94fc256f34db8c0a72b726fc5de11285ca2d6cbbbc5e662da668f +size 5851 diff --git a/Skins/prezes - Copy (2)/normal-sliderwhistle.ogg b/Skins/prezes - Copy (2)/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/pause-back.png b/Skins/prezes - Copy (2)/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/prezes - Copy (2)/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/prezes - Copy (2)/pause-continue.png b/Skins/prezes - Copy (2)/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/prezes - Copy (2)/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/prezes - Copy (2)/pause-replay.png b/Skins/prezes - Copy (2)/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/prezes - Copy (2)/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/prezes - Copy (2)/pause-retry.png b/Skins/prezes - Copy (2)/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/prezes - Copy (2)/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/prezes - Copy (2)/play-skip.png b/Skins/prezes - Copy (2)/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/play-unranked.png b/Skins/prezes - Copy (2)/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/play-warningarrow.png b/Skins/prezes - Copy (2)/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/prezes - Copy (2)/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/prezes - Copy (2)/ranking-A-small.png b/Skins/prezes - Copy (2)/ranking-A-small.png new file mode 100644 index 00000000..1f031d7c --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50870a7551614721716fcdf59901a1b7c5320ae83ba6a0f34b55d2a899a5adcf +size 4703 diff --git a/Skins/prezes - Copy (2)/ranking-B-small.png b/Skins/prezes - Copy (2)/ranking-B-small.png new file mode 100644 index 00000000..47cbeb6c --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febbeb30e8b5e76cf402a997797edfa35faa35aa8308ab7eb822a91a0daa9410 +size 4490 diff --git a/Skins/prezes - Copy (2)/ranking-C-small.png b/Skins/prezes - Copy (2)/ranking-C-small.png new file mode 100644 index 00000000..741b51fd --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241c1833fc5daf588ebaab8e1e487d30e1670065a4eee5f633d2dbf1aedaec06 +size 4555 diff --git a/Skins/prezes - Copy (2)/ranking-D-small.png b/Skins/prezes - Copy (2)/ranking-D-small.png new file mode 100644 index 00000000..4dd50ac2 --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60553c613ebb581bfc535daaa805c3250c753ec2ce6e13e8c07444c73e8c14 +size 4365 diff --git a/Skins/prezes - Copy (2)/ranking-S-small.png b/Skins/prezes - Copy (2)/ranking-S-small.png new file mode 100644 index 00000000..46824491 --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b57053a2015070c2e7d305f50e15368eeb311acad7c7be4eb7a1c4fa5f2af3 +size 4768 diff --git a/Skins/prezes - Copy (2)/ranking-SH-small.png b/Skins/prezes - Copy (2)/ranking-SH-small.png new file mode 100644 index 00000000..9874a6eb --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dfd8fd78d8b2a32b7992cf987cc0dd8b86cdfb46c1fd9286379c658e7219a3 +size 4547 diff --git a/Skins/prezes - Copy (2)/ranking-X-small.png b/Skins/prezes - Copy (2)/ranking-X-small.png new file mode 100644 index 00000000..6401b38b --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc163849993b7a223529b496163782fe172f9c1e5fb4585973260eb3618b1744 +size 5563 diff --git a/Skins/prezes - Copy (2)/ranking-XH-small.png b/Skins/prezes - Copy (2)/ranking-XH-small.png new file mode 100644 index 00000000..2e6a8046 --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b002b5c666212d5e7435332ac24f6c0e354666e9f69e13ecb41d7ace30dd0a +size 5313 diff --git a/Skins/prezes - Copy (2)/ranking-accuracy.png b/Skins/prezes - Copy (2)/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2)/ranking-graph.png b/Skins/prezes - Copy (2)/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/prezes - Copy (2)/ranking-graph@2x.png b/Skins/prezes - Copy (2)/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/prezes - Copy (2)/ranking-maxcombo.png b/Skins/prezes - Copy (2)/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/prezes - Copy (2)/ranking-panel.png b/Skins/prezes - Copy (2)/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/prezes - Copy (2)/ranking-panel@2x.png b/Skins/prezes - Copy (2)/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/prezes - Copy (2)/ranking-perfect.png b/Skins/prezes - Copy (2)/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2)/ranking-title.png b/Skins/prezes - Copy (2)/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2)/ranking-winner.png b/Skins/prezes - Copy (2)/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2)/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2)/ready.png b/Skins/prezes - Copy (2)/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/readys.ogg b/Skins/prezes - Copy (2)/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/reversearrow@2x.png b/Skins/prezes - Copy (2)/reversearrow@2x.png new file mode 100644 index 00000000..c43eefd2 --- /dev/null +++ b/Skins/prezes - Copy (2)/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75207941e4314a98129cd0c54492c176cd56390e3019a9e12a3ba93547c58a5 +size 16861 diff --git a/Skins/prezes - Copy (2)/score-percent.png b/Skins/prezes - Copy (2)/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/score-x.png b/Skins/prezes - Copy (2)/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/score-x@2x.png b/Skins/prezes - Copy (2)/score-x@2x.png new file mode 100644 index 00000000..204e1d32 --- /dev/null +++ b/Skins/prezes - Copy (2)/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c81714a5f028ec516d58fa2431b2f9c0622dfff7ff1d31dc911d69b00276524 +size 5041 diff --git a/Skins/prezes - Copy (2)/scorebar-bg.png b/Skins/prezes - Copy (2)/scorebar-bg.png new file mode 100644 index 00000000..58406986 --- /dev/null +++ b/Skins/prezes - Copy (2)/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c918577a6c30740788ca3e8b1808f125a23a464f770181099975e608dcf723b +size 73994 diff --git a/Skins/prezes - Copy (2)/scorebar-colour.png b/Skins/prezes - Copy (2)/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/scorebar-marker.png b/Skins/prezes - Copy (2)/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/scoreentry-comma.png b/Skins/prezes - Copy (2)/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes - Copy (2)/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes - Copy (2)/scoreentry-dot.png b/Skins/prezes - Copy (2)/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes - Copy (2)/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes - Copy (2)/scoreentry-percent.png b/Skins/prezes - Copy (2)/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/scoreentry-x.png b/Skins/prezes - Copy (2)/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/selection-mod-autoplay@2x.png b/Skins/prezes - Copy (2)/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..ed189d6e --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d16303be865ce02feede1845dcdefbc115f2f9fbd8b3dc3baff1ba650997724 +size 13667 diff --git a/Skins/prezes - Copy (2)/selection-mod-cinema@2x.png b/Skins/prezes - Copy (2)/selection-mod-cinema@2x.png new file mode 100644 index 00000000..db84c414 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45df8def051cfbbb31115a28ab9c02c0a20bd8b426f19900f337a7816acfebd6 +size 22259 diff --git a/Skins/prezes - Copy (2)/selection-mod-doubletime@2x.png b/Skins/prezes - Copy (2)/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6f471799 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b579edd7458a28dc8063e5ab01ce9be32ee0dd94388aad6f2c0189ac216c3c +size 21202 diff --git a/Skins/prezes - Copy (2)/selection-mod-easy@2x.png b/Skins/prezes - Copy (2)/selection-mod-easy@2x.png new file mode 100644 index 00000000..52fa94c8 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb4dadafd8964a3bfd702763cf675917453afe4dc3a4abafe72896beb02e7bc +size 13043 diff --git a/Skins/prezes - Copy (2)/selection-mod-flashlight@2x.png b/Skins/prezes - Copy (2)/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..bd178b55 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bf5cc4153a4c77e1eb4208c7ef6020e47c49fcb014567139dc3e79be3f5900 +size 15503 diff --git a/Skins/prezes - Copy (2)/selection-mod-halftime@2x.png b/Skins/prezes - Copy (2)/selection-mod-halftime@2x.png new file mode 100644 index 00000000..595b8452 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f8a011ceb3082ee82f0ea40d2750cab07ba3e066208f28f62fd56d62551d70 +size 12853 diff --git a/Skins/prezes - Copy (2)/selection-mod-hardrock@2x.png b/Skins/prezes - Copy (2)/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..d78a8b5c --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2398e0471f2ad18083bad94f1d78c5ddccdb24a9d44586bcda0ea23551cc3e +size 17560 diff --git a/Skins/prezes - Copy (2)/selection-mod-hidden@2x.png b/Skins/prezes - Copy (2)/selection-mod-hidden@2x.png new file mode 100644 index 00000000..b4cbf002 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e0c218610a22452283aeb7976391cb6164f9a69f454736bea7a42dc9763ac4 +size 22127 diff --git a/Skins/prezes - Copy (2)/selection-mod-nightcore@2x.png b/Skins/prezes - Copy (2)/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..aeaba637 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876ba95cb756fa07b2920afde80b3c13a1c1afab29eed2d95c3658e92daccab5 +size 16358 diff --git a/Skins/prezes - Copy (2)/selection-mod-nofail@2x.png b/Skins/prezes - Copy (2)/selection-mod-nofail@2x.png new file mode 100644 index 00000000..7812d0f7 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e50c010bc36bcbd5feee98ae3808425482715ddb4954364891e21468513842 +size 20945 diff --git a/Skins/prezes - Copy (2)/selection-mod-perfect@2x.png b/Skins/prezes - Copy (2)/selection-mod-perfect@2x.png new file mode 100644 index 00000000..1fadb52f --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8e6fa28838f08e3b9768642aa3766e4f16d0800a242b6de2139006534d9592 +size 16077 diff --git a/Skins/prezes - Copy (2)/selection-mod-relax2@2x.png b/Skins/prezes - Copy (2)/selection-mod-relax2@2x.png new file mode 100644 index 00000000..4f87a207 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703d9ceb29648ae8ced917353b79c337a3bf384fc974176b2bbdeea979ba98f3 +size 17362 diff --git a/Skins/prezes - Copy (2)/selection-mod-relax@2x.png b/Skins/prezes - Copy (2)/selection-mod-relax@2x.png new file mode 100644 index 00000000..9ce08619 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b30631a4296e085afdeadb5d413ba489350078bb723af445d65931ad6d1e19 +size 13251 diff --git a/Skins/prezes - Copy (2)/selection-mod-spunout@2x.png b/Skins/prezes - Copy (2)/selection-mod-spunout@2x.png new file mode 100644 index 00000000..c902b31e --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e98f9b2ea1464b96ae7d6ef6a375a6490d2e5473d08e61221a785c1a52e387 +size 19156 diff --git a/Skins/prezes - Copy (2)/selection-mod-suddendeath@2x.png b/Skins/prezes - Copy (2)/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..ca40518a --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069e192fcfff644c94134100d1493c1b81c7f166a42db0d45c080fa938c9029c +size 22918 diff --git a/Skins/prezes - Copy (2)/selection-mod-target@2x.png b/Skins/prezes - Copy (2)/selection-mod-target@2x.png new file mode 100644 index 00000000..629cd028 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d502463c96d96daaf96e7d68276e209c4afe3a33d5289a6eca14280da5edf7ec +size 27959 diff --git a/Skins/prezes - Copy (2)/selection-mode.png b/Skins/prezes - Copy (2)/selection-mode.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2)/selection-mods-over.png b/Skins/prezes - Copy (2)/selection-mods-over.png new file mode 100644 index 00000000..b68deba2 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247c4032d4bceaf2c5bc380a6761583186916fe949438ab9cf5b31393e2345dc +size 16609 diff --git a/Skins/prezes - Copy (2)/selection-mods.png b/Skins/prezes - Copy (2)/selection-mods.png new file mode 100644 index 00000000..b937e7fa --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9644f163ebb55787dd2dd976e51ede91efa9a4ce21a7665ca9e8d5b04d79bfb0 +size 7337 diff --git a/Skins/prezes - Copy (2)/selection-options-over.png b/Skins/prezes - Copy (2)/selection-options-over.png new file mode 100644 index 00000000..e760aeaf --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6531c2c5723ea65d52661409c7949985b12d066990ec192a7b1937c9dee1079 +size 17478 diff --git a/Skins/prezes - Copy (2)/selection-options.png b/Skins/prezes - Copy (2)/selection-options.png new file mode 100644 index 00000000..2e0b74c2 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac6966279e9161e4707df554d0f1ec4a139c1577d74c33d1515bd1378d7e579 +size 7473 diff --git a/Skins/prezes - Copy (2)/selection-random-over.png b/Skins/prezes - Copy (2)/selection-random-over.png new file mode 100644 index 00000000..a1261c0b --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2af8ae50ad9d8cbb42e1e0139af3cd685d5118b409a550b9ddf7702730502ef +size 17203 diff --git a/Skins/prezes - Copy (2)/selection-random.png b/Skins/prezes - Copy (2)/selection-random.png new file mode 100644 index 00000000..d21606ce --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dec06d576cbb139d25c0a3186cafc903ae696575f81173bf00a42a85271d3fb +size 7125 diff --git a/Skins/prezes - Copy (2)/selection-selectoptions-over.png b/Skins/prezes - Copy (2)/selection-selectoptions-over.png new file mode 100644 index 00000000..294f8e15 --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213f480c6712a87336599b9cc3cf7a31d68bb625369ffe46c2b13a6b42394c77 +size 17185 diff --git a/Skins/prezes - Copy (2)/selection-selectoptions.png b/Skins/prezes - Copy (2)/selection-selectoptions.png new file mode 100644 index 00000000..038d6d8e --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e6c080739692e511f0cd8a6063866340d8f9978a6f1563cc45c0391a2c58cc +size 7308 diff --git a/Skins/prezes - Copy (2)/selection-tab.png b/Skins/prezes - Copy (2)/selection-tab.png new file mode 100644 index 00000000..a35bf13f --- /dev/null +++ b/Skins/prezes - Copy (2)/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb5ba814f28906665ff0918c3dae701b1461cf11d9535f96aa410ab427db79b +size 1884 diff --git a/Skins/prezes - Copy (2)/shutter.ogg b/Skins/prezes - Copy (2)/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/skin.ini b/Skins/prezes - Copy (2)/skin.ini new file mode 100644 index 00000000..5cdffda8 --- /dev/null +++ b/Skins/prezes - Copy (2)/skin.ini @@ -0,0 +1,24 @@ +[General] +Name: prezes diff combo numbers +// polska podziemna maliszewski mix pozdrawiam rebella i niko +Version: latest +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 + +[Colours] +SliderBorder: 60,60,60 +SliderTrackOverride: 0,0,0 +Combo1: 255,102,102 +Combo2: 255,153,153 +Combo3: 255,204,204 +SongSelectActiveText: 255,153,153 +SongSelectInactiveText: 255,153,153 + +[Fonts] +ScoreOverlap: 0 +ScorePrefix: score +ComboOverlap: 0 +HitCircleOverlap: 20 + + diff --git a/Skins/prezes - Copy (2)/sliderb.png b/Skins/prezes - Copy (2)/sliderb.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes - Copy (2)/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes - Copy (2)/sliderb@2x.png b/Skins/prezes - Copy (2)/sliderb@2x.png new file mode 100644 index 00000000..b1504a18 --- /dev/null +++ b/Skins/prezes - Copy (2)/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ac739f478cc6d9e64c3a4071ba5fbfb7c5e05c48a6bda234f149e2fc300a7e +size 5675 diff --git a/Skins/prezes - Copy (2)/sliderendcircle.png b/Skins/prezes - Copy (2)/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes - Copy (2)/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes - Copy (2)/sliderfollowcircle.png b/Skins/prezes - Copy (2)/sliderfollowcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/sliderscorepoint.png b/Skins/prezes - Copy (2)/sliderscorepoint.png new file mode 100644 index 00000000..c39cb2e1 --- /dev/null +++ b/Skins/prezes - Copy (2)/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72f25f445940b166868007fd83eba1117812b907b5c58bcd8cc9014715c6afc +size 5091 diff --git a/Skins/prezes - Copy (2)/soft-hitclap.wav b/Skins/prezes - Copy (2)/soft-hitclap.wav new file mode 100644 index 00000000..a599636b --- /dev/null +++ b/Skins/prezes - Copy (2)/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b85e7b8c41153eefdd3cd543fe992310638f973eb6fd79af842bdb184dd90122 +size 4436 diff --git a/Skins/prezes - Copy (2)/soft-hitfinish.ogg b/Skins/prezes - Copy (2)/soft-hitfinish.ogg new file mode 100644 index 00000000..115a6027 --- /dev/null +++ b/Skins/prezes - Copy (2)/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850ed6f0b7aa2a2207a7f2072c204f1f4d8ecc8422a0be1af7c1697dd1a09927 +size 5763 diff --git a/Skins/prezes - Copy (2)/soft-hitnormal.ogg b/Skins/prezes - Copy (2)/soft-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes - Copy (2)/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes - Copy (2)/soft-hitwhistle.wav b/Skins/prezes - Copy (2)/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy (2)/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy (2)/soft-sliderslide.ogg b/Skins/prezes - Copy (2)/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/soft-slidertick.ogg b/Skins/prezes - Copy (2)/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/soft-sliderwhistle.ogg b/Skins/prezes - Copy (2)/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/spinner-approachcircle.png b/Skins/prezes - Copy (2)/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/spinner-background.png b/Skins/prezes - Copy (2)/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/spinner-circle@2x.png b/Skins/prezes - Copy (2)/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/prezes - Copy (2)/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/prezes - Copy (2)/spinner-clear.png b/Skins/prezes - Copy (2)/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/spinner-rpm.png b/Skins/prezes - Copy (2)/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/spinner-spin.png b/Skins/prezes - Copy (2)/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/spinnerbonus.ogg b/Skins/prezes - Copy (2)/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/spinnerspin.ogg b/Skins/prezes - Copy (2)/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy (2)/star.png b/Skins/prezes - Copy (2)/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy (2)/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy (2)/star2.png b/Skins/prezes - Copy (2)/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2)/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy (2)/star2@2x.png b/Skins/prezes - Copy (2)/star2@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy (2)/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy - Copy/Score-0@2x.png b/Skins/prezes - Copy - Copy/Score-0@2x.png new file mode 100644 index 00000000..9cd3963a --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9ff35588b818a904422b136c94e8183a0dd5d6604f9e5af0dbc202d7347e45 +size 4787 diff --git a/Skins/prezes - Copy - Copy/Score-1@2x.png b/Skins/prezes - Copy - Copy/Score-1@2x.png new file mode 100644 index 00000000..92b1d95f --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb837459da0a71ea721642f1542528dff9bd3323a20bc9642a91f36fa7ecf1d +size 4520 diff --git a/Skins/prezes - Copy - Copy/Score-2@2x.png b/Skins/prezes - Copy - Copy/Score-2@2x.png new file mode 100644 index 00000000..eef2b5e8 --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3daee5b5eebb1725629e719964b859f6695fa1192369602e90b7b282b5deb2b +size 6056 diff --git a/Skins/prezes - Copy - Copy/Score-3@2x.png b/Skins/prezes - Copy - Copy/Score-3@2x.png new file mode 100644 index 00000000..95840a7c --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25349b8a326ef088b831f3c2df5ad690c2e6a791d2f9992192107852d3940a3e +size 5578 diff --git a/Skins/prezes - Copy - Copy/Score-4@2x.png b/Skins/prezes - Copy - Copy/Score-4@2x.png new file mode 100644 index 00000000..baeae8b4 --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc9e701986f6e718e1d55078a8b3330f94eca60703aea470537648070efb399c +size 5139 diff --git a/Skins/prezes - Copy - Copy/Score-5@2x.png b/Skins/prezes - Copy - Copy/Score-5@2x.png new file mode 100644 index 00000000..44e622b5 --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b402d802f3324d6f160842b06a0c66b0fe5ae0facc351dd5b677aa9027426b9 +size 5324 diff --git a/Skins/prezes - Copy - Copy/Score-6@2x.png b/Skins/prezes - Copy - Copy/Score-6@2x.png new file mode 100644 index 00000000..21aebd07 --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa7a817766fee8e6b09f55daf2d24a5d8c198ce01b098e91173c2b609706eecb +size 5537 diff --git a/Skins/prezes - Copy - Copy/Score-7@2x.png b/Skins/prezes - Copy - Copy/Score-7@2x.png new file mode 100644 index 00000000..8f16241d --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9901abf426c0777187edbef2a05ceb09075dfba70f675c3a251936cdeb6a936 +size 5730 diff --git a/Skins/prezes - Copy - Copy/Score-8@2x.png b/Skins/prezes - Copy - Copy/Score-8@2x.png new file mode 100644 index 00000000..cc1d4c6b --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd2603936f48f459f0ca1c03dcf41125df847aab37107625c8319ee382226aa +size 5702 diff --git a/Skins/prezes - Copy - Copy/Score-9@2x.png b/Skins/prezes - Copy - Copy/Score-9@2x.png new file mode 100644 index 00000000..c2c2c448 --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fee10d7e8b3fc1083eace9b6fdd1ceab6c78429ea2698be616564a4968c555a +size 5547 diff --git a/Skins/prezes - Copy - Copy/Score-comma@2x.png b/Skins/prezes - Copy - Copy/Score-comma@2x.png new file mode 100644 index 00000000..f41cd720 --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34576e947c862d31a161033fe2854ed299ca3f2c208fa588c6faa5c8e50d3fc +size 4009 diff --git a/Skins/prezes - Copy - Copy/Score-percent@2x.png b/Skins/prezes - Copy - Copy/Score-percent@2x.png new file mode 100644 index 00000000..d3d096b2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/Score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45c59f692945350caa5996b106e07b0e541487984b5782c53d42de7ab853303 +size 6358 diff --git a/Skins/prezes - Copy - Copy/applause.mp3 b/Skins/prezes - Copy - Copy/applause.mp3 new file mode 100644 index 00000000..aeb2d742 --- /dev/null +++ b/Skins/prezes - Copy - Copy/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f571204649b205de430776952a078b006405892f310bd6807e054dc454d783e +size 309464 diff --git a/Skins/prezes - Copy - Copy/approachcircle.png b/Skins/prezes - Copy - Copy/approachcircle.png new file mode 100644 index 00000000..8d7ca8db --- /dev/null +++ b/Skins/prezes - Copy - Copy/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d435ccbd1c44abab9d9b94ed850f80476d1bfc509b89031c8c94ae0edc4611c +size 14700 diff --git a/Skins/prezes - Copy - Copy/approachcircle@2x.png b/Skins/prezes - Copy - Copy/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/prezes - Copy - Copy/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/prezes - Copy - Copy/button-left.png b/Skins/prezes - Copy - Copy/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/button-middle.png b/Skins/prezes - Copy - Copy/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/button-right.png b/Skins/prezes - Copy - Copy/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/count1.png b/Skins/prezes - Copy - Copy/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/count2.png b/Skins/prezes - Copy - Copy/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/count3.png b/Skins/prezes - Copy - Copy/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/cursor-smoke.png b/Skins/prezes - Copy - Copy/cursor-smoke.png new file mode 100644 index 00000000..072c56dc --- /dev/null +++ b/Skins/prezes - Copy - Copy/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ce8c21a36db630ffafb9c05a78a911370fd199f6e2b7a5853e94b0cbcd32ed +size 2801 diff --git a/Skins/prezes - Copy - Copy/cursor.png b/Skins/prezes - Copy - Copy/cursor.png new file mode 100644 index 00000000..64e94d86 --- /dev/null +++ b/Skins/prezes - Copy - Copy/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5caf02f82dea629a299b326848edb1b85fc2b6789535b8af4a53c17e9e9c5728 +size 3048 diff --git a/Skins/prezes - Copy - Copy/cursortrail.png b/Skins/prezes - Copy - Copy/cursortrail.png new file mode 100644 index 00000000..87efdbc2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e3d85678c5c5adfe8c77a089db6a805ec9a817cead23b39c213e6e30462a31 +size 1721 diff --git a/Skins/prezes - Copy - Copy/default-0.png b/Skins/prezes - Copy - Copy/default-0.png new file mode 100644 index 00000000..64858f31 --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbf5a57bc4ddb3c7c85f75f90f2843d6532459545610bf51f8eae5dce4c326b +size 5310 diff --git a/Skins/prezes - Copy - Copy/default-1.png b/Skins/prezes - Copy - Copy/default-1.png new file mode 100644 index 00000000..aa4f3307 --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b2536e0af1f5632b841db73aec1136c9174cba10cb8303f0c0e065584fd19 +size 3645 diff --git a/Skins/prezes - Copy - Copy/default-2.png b/Skins/prezes - Copy - Copy/default-2.png new file mode 100644 index 00000000..55beb36f --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829ca68fc1fc9e0aaba0f2f6d41a92adc9de6bf9c2511365ba70baa3d61790cb +size 5709 diff --git a/Skins/prezes - Copy - Copy/default-3.png b/Skins/prezes - Copy - Copy/default-3.png new file mode 100644 index 00000000..265b0dac --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a098dfe1bf81dc21d017d8dfe5e944cd49c63208ddb5c032ce7f518cf208f5c6 +size 5741 diff --git a/Skins/prezes - Copy - Copy/default-4.png b/Skins/prezes - Copy - Copy/default-4.png new file mode 100644 index 00000000..9f003f7f --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747a290ca5ee9b65839c3193176a8ce57d09382c974a609ee5148b688ddd550d +size 4796 diff --git a/Skins/prezes - Copy - Copy/default-5.png b/Skins/prezes - Copy - Copy/default-5.png new file mode 100644 index 00000000..2c1bf42f --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab00a8ec33a6c69157bb68367aa74a27d34917a163c4d31429ab08a471ca688 +size 5492 diff --git a/Skins/prezes - Copy - Copy/default-6.png b/Skins/prezes - Copy - Copy/default-6.png new file mode 100644 index 00000000..7c18c2b4 --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa75ef2541e3759644705f565ff2ac90184c37d83ef676b163ce380ed0c91ebd +size 5489 diff --git a/Skins/prezes - Copy - Copy/default-7.png b/Skins/prezes - Copy - Copy/default-7.png new file mode 100644 index 00000000..d018b09e --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de8149971f96b584196147374f168bdfac4dca1b6d6b4485409df0026e181b7 +size 5107 diff --git a/Skins/prezes - Copy - Copy/default-8.png b/Skins/prezes - Copy - Copy/default-8.png new file mode 100644 index 00000000..8d653450 --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc23776e5e57efc3854b65b023f89dfb44dca2a9a1d44a6228e63cfabe832947 +size 5602 diff --git a/Skins/prezes - Copy - Copy/default-9.png b/Skins/prezes - Copy - Copy/default-9.png new file mode 100644 index 00000000..4a53267c --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882725cf243743606128440651a4328157311def82fc00ea7415a38ccaf3d02e +size 5451 diff --git a/Skins/prezes - Copy - Copy/default-comma.png b/Skins/prezes - Copy - Copy/default-comma.png new file mode 100644 index 00000000..3b6e0669 --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f2fbefae4f4920da6907f804fe0def6c1dc28ec5b9df9bda2c48f6a0d70a36 +size 3270 diff --git a/Skins/prezes - Copy - Copy/default-dot.png b/Skins/prezes - Copy - Copy/default-dot.png new file mode 100644 index 00000000..75793082 --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f410a7e07284c1af0333ab04da39a388ed9e8f6df56406547c34d0c419daaa +size 3116 diff --git a/Skins/prezes - Copy - Copy/default-percent.png b/Skins/prezes - Copy - Copy/default-percent.png new file mode 100644 index 00000000..13738bf2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0277c786118bc12571f9686fc19a952604433b5441f3dd2ebe1ef62f27f10e10 +size 5590 diff --git a/Skins/prezes - Copy - Copy/default-x.png b/Skins/prezes - Copy - Copy/default-x.png new file mode 100644 index 00000000..57409519 --- /dev/null +++ b/Skins/prezes - Copy - Copy/default-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f6ace6aba385ec929d69c4d3bf8d780036ddec7f101d9b2dcebc534abf5f01 +size 4714 diff --git a/Skins/prezes - Copy - Copy/drum-hitclap.ogg b/Skins/prezes - Copy - Copy/drum-hitclap.ogg new file mode 100644 index 00000000..f72b6ba6 --- /dev/null +++ b/Skins/prezes - Copy - Copy/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b855f7affaa94ea029d9244089de243682c5e670b34b2a8ea3a0f7e899db8fe +size 5151 diff --git a/Skins/prezes - Copy - Copy/drum-hitfinish.ogg b/Skins/prezes - Copy - Copy/drum-hitfinish.ogg new file mode 100644 index 00000000..f320932f --- /dev/null +++ b/Skins/prezes - Copy - Copy/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd88f8b4502908cff6252307a3952e8c908daa49cbcea95f5bbc48d28df7c4c +size 5763 diff --git a/Skins/prezes - Copy - Copy/drum-hitnormal.ogg b/Skins/prezes - Copy - Copy/drum-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes - Copy - Copy/drum-hitwhistle.wav b/Skins/prezes - Copy - Copy/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy - Copy/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy - Copy/drum-sliderslide.ogg b/Skins/prezes - Copy - Copy/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/drum-slidertick.ogg b/Skins/prezes - Copy - Copy/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/drum-sliderwhistle.ogg b/Skins/prezes - Copy - Copy/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/followpoint-0.png b/Skins/prezes - Copy - Copy/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy - Copy/followpoint-1.png b/Skins/prezes - Copy - Copy/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy - Copy/followpoint-11.png b/Skins/prezes - Copy - Copy/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/prezes - Copy - Copy/followpoint-12.png b/Skins/prezes - Copy - Copy/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/prezes - Copy - Copy/followpoint-13.png b/Skins/prezes - Copy - Copy/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/prezes - Copy - Copy/followpoint-14.png b/Skins/prezes - Copy - Copy/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/prezes - Copy - Copy/followpoint-15.png b/Skins/prezes - Copy - Copy/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/prezes - Copy - Copy/followpoint-16.png b/Skins/prezes - Copy - Copy/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/prezes - Copy - Copy/followpoint-17.png b/Skins/prezes - Copy - Copy/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/prezes - Copy - Copy/followpoint-18.png b/Skins/prezes - Copy - Copy/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/prezes - Copy - Copy/followpoint-19.png b/Skins/prezes - Copy - Copy/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/prezes - Copy - Copy/followpoint-2.png b/Skins/prezes - Copy - Copy/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy - Copy/followpoint-20.png b/Skins/prezes - Copy - Copy/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/prezes - Copy - Copy/followpoint-21.png b/Skins/prezes - Copy - Copy/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/prezes - Copy - Copy/followpoint-22.png b/Skins/prezes - Copy - Copy/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/prezes - Copy - Copy/followpoint-23.png b/Skins/prezes - Copy - Copy/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/prezes - Copy - Copy/followpoint-3.png b/Skins/prezes - Copy - Copy/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/prezes - Copy - Copy/followpoint-4.png b/Skins/prezes - Copy - Copy/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy - Copy/followpoint-5.png b/Skins/prezes - Copy - Copy/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy - Copy/followpoint-6.png b/Skins/prezes - Copy - Copy/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy - Copy/followpoint-7.png b/Skins/prezes - Copy - Copy/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy - Copy/followpoint-8.png b/Skins/prezes - Copy - Copy/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy - Copy/followpoint-9.png b/Skins/prezes - Copy - Copy/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy - Copy/followpoint.png b/Skins/prezes - Copy - Copy/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/prezes - Copy - Copy/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/prezes - Copy - Copy/go.png b/Skins/prezes - Copy - Copy/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/hit0-0.png b/Skins/prezes - Copy - Copy/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/prezes - Copy - Copy/hit0.png b/Skins/prezes - Copy - Copy/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/hit100-0.png b/Skins/prezes - Copy - Copy/hit100-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes - Copy - Copy/hit100.png b/Skins/prezes - Copy - Copy/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/hit100k-0.png b/Skins/prezes - Copy - Copy/hit100k-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes - Copy - Copy/hit100k.png b/Skins/prezes - Copy - Copy/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/hit300.png b/Skins/prezes - Copy - Copy/hit300.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/hit300g.png b/Skins/prezes - Copy - Copy/hit300g.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/hit300k.png b/Skins/prezes - Copy - Copy/hit300k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/hit50-0.png b/Skins/prezes - Copy - Copy/hit50-0.png new file mode 100644 index 00000000..378cdf1e --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1317680bf0c857731dbc67d8689fb11a031033ec4527ff1b25023e0ed4361 +size 1956 diff --git a/Skins/prezes - Copy - Copy/hit50.png b/Skins/prezes - Copy - Copy/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/hitcircle.png b/Skins/prezes - Copy - Copy/hitcircle.png new file mode 100644 index 00000000..8d6d9877 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc62e3351b2da3459ddb3d64fef3e14215836b1e55cced9a65e6fc5f8b5146a +size 7716 diff --git a/Skins/prezes - Copy - Copy/hitcircleoverlay@2x.png b/Skins/prezes - Copy - Copy/hitcircleoverlay@2x.png new file mode 100644 index 00000000..c091ca92 --- /dev/null +++ b/Skins/prezes - Copy - Copy/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9389187c584e8ffe1cb3aaf27e85a7ef21f877fb13fb3f012f6037b2ec465e +size 12219 diff --git a/Skins/prezes - Copy - Copy/inputoverlay-background.png b/Skins/prezes - Copy - Copy/inputoverlay-background.png new file mode 100644 index 00000000..faa8d637 --- /dev/null +++ b/Skins/prezes - Copy - Copy/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1c00c316056a6b1db2ae050db243344e6e1da6a106a8cf30a2658a8ae68147 +size 148 diff --git a/Skins/prezes - Copy - Copy/inputoverlay-key.png b/Skins/prezes - Copy - Copy/inputoverlay-key.png new file mode 100644 index 00000000..192e33f5 --- /dev/null +++ b/Skins/prezes - Copy - Copy/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94479ac8e798ff3c6431722e565c29914ad02ed3ee87c872ffb68625b6406b7 +size 1841 diff --git a/Skins/prezes - Copy - Copy/key-confirm.ogg b/Skins/prezes - Copy - Copy/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/key-delete.ogg b/Skins/prezes - Copy - Copy/key-delete.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/key-movement.ogg b/Skins/prezes - Copy - Copy/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/key-press-1.ogg b/Skins/prezes - Copy - Copy/key-press-1.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/key-press-2.ogg b/Skins/prezes - Copy - Copy/key-press-2.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/key-press-3.ogg b/Skins/prezes - Copy - Copy/key-press-3.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/key-press-4.ogg b/Skins/prezes - Copy - Copy/key-press-4.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/menu-button-background.png b/Skins/prezes - Copy - Copy/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/prezes - Copy - Copy/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/prezes - Copy - Copy/nightcore-clap.ogg b/Skins/prezes - Copy - Copy/nightcore-clap.ogg new file mode 100644 index 00000000..a1cf7c71 --- /dev/null +++ b/Skins/prezes - Copy - Copy/nightcore-clap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8207912bc05bf89590d1c6bc2f3454ea5af65e36bd691d50a4859885cf8c72d +size 4465 diff --git a/Skins/prezes - Copy - Copy/nightcore-finish.ogg b/Skins/prezes - Copy - Copy/nightcore-finish.ogg new file mode 100644 index 00000000..458b08aa --- /dev/null +++ b/Skins/prezes - Copy - Copy/nightcore-finish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6aaa47cfd2b5d7d7648d67b57d626b0bd802abd8efe8ecaa34a44de6e8e387 +size 4465 diff --git a/Skins/prezes - Copy - Copy/nightcore-hat.ogg b/Skins/prezes - Copy - Copy/nightcore-hat.ogg new file mode 100644 index 00000000..953bfb1a --- /dev/null +++ b/Skins/prezes - Copy - Copy/nightcore-hat.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc445489d224cac39374676877ecba8a61695f0d7ef79b89c4d5fc0b833a0931 +size 4464 diff --git a/Skins/prezes - Copy - Copy/nightcore-kick.ogg b/Skins/prezes - Copy - Copy/nightcore-kick.ogg new file mode 100644 index 00000000..2de1425b --- /dev/null +++ b/Skins/prezes - Copy - Copy/nightcore-kick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e67f0f9850933b0cc1ec339ce9c14bb8c9952c2cf4fc4e182626cec3949b0e +size 4465 diff --git a/Skins/prezes - Copy - Copy/normal-hitclap.ogg b/Skins/prezes - Copy - Copy/normal-hitclap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/normal-hitfinish.ogg b/Skins/prezes - Copy - Copy/normal-hitfinish.ogg new file mode 100644 index 00000000..a44e5922 --- /dev/null +++ b/Skins/prezes - Copy - Copy/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7923246734d3e789070e853ae1755f0b7c3c9dd80a1326e82eec46f61c120195 +size 5970 diff --git a/Skins/prezes - Copy - Copy/normal-hitnormal.ogg b/Skins/prezes - Copy - Copy/normal-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes - Copy - Copy/normal-hitwhistle.ogg b/Skins/prezes - Copy - Copy/normal-hitwhistle.ogg new file mode 100644 index 00000000..db5b140b --- /dev/null +++ b/Skins/prezes - Copy - Copy/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c87455b018f84cc4c1d863919e0a327533f9ceff6f2dc2ba049ecb74b38903c8 +size 15353 diff --git a/Skins/prezes - Copy - Copy/normal-hitwhistle.wav b/Skins/prezes - Copy - Copy/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy - Copy/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy - Copy/normal-sliderslide.ogg b/Skins/prezes - Copy - Copy/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/normal-slidertick.ogg b/Skins/prezes - Copy - Copy/normal-slidertick.ogg new file mode 100644 index 00000000..a3dd50db --- /dev/null +++ b/Skins/prezes - Copy - Copy/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941388fc58f94fc256f34db8c0a72b726fc5de11285ca2d6cbbbc5e662da668f +size 5851 diff --git a/Skins/prezes - Copy - Copy/normal-sliderwhistle.ogg b/Skins/prezes - Copy - Copy/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/pause-back.png b/Skins/prezes - Copy - Copy/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/prezes - Copy - Copy/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/prezes - Copy - Copy/pause-continue.png b/Skins/prezes - Copy - Copy/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/prezes - Copy - Copy/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/prezes - Copy - Copy/pause-replay.png b/Skins/prezes - Copy - Copy/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/prezes - Copy - Copy/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/prezes - Copy - Copy/pause-retry.png b/Skins/prezes - Copy - Copy/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/prezes - Copy - Copy/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/prezes - Copy - Copy/play-skip.png b/Skins/prezes - Copy - Copy/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/play-unranked.png b/Skins/prezes - Copy - Copy/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/play-warningarrow.png b/Skins/prezes - Copy - Copy/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/prezes - Copy - Copy/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/prezes - Copy - Copy/ranking-A-small.png b/Skins/prezes - Copy - Copy/ranking-A-small.png new file mode 100644 index 00000000..1f031d7c --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50870a7551614721716fcdf59901a1b7c5320ae83ba6a0f34b55d2a899a5adcf +size 4703 diff --git a/Skins/prezes - Copy - Copy/ranking-B-small.png b/Skins/prezes - Copy - Copy/ranking-B-small.png new file mode 100644 index 00000000..47cbeb6c --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febbeb30e8b5e76cf402a997797edfa35faa35aa8308ab7eb822a91a0daa9410 +size 4490 diff --git a/Skins/prezes - Copy - Copy/ranking-C-small.png b/Skins/prezes - Copy - Copy/ranking-C-small.png new file mode 100644 index 00000000..741b51fd --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241c1833fc5daf588ebaab8e1e487d30e1670065a4eee5f633d2dbf1aedaec06 +size 4555 diff --git a/Skins/prezes - Copy - Copy/ranking-D-small.png b/Skins/prezes - Copy - Copy/ranking-D-small.png new file mode 100644 index 00000000..4dd50ac2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60553c613ebb581bfc535daaa805c3250c753ec2ce6e13e8c07444c73e8c14 +size 4365 diff --git a/Skins/prezes - Copy - Copy/ranking-S-small.png b/Skins/prezes - Copy - Copy/ranking-S-small.png new file mode 100644 index 00000000..46824491 --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b57053a2015070c2e7d305f50e15368eeb311acad7c7be4eb7a1c4fa5f2af3 +size 4768 diff --git a/Skins/prezes - Copy - Copy/ranking-SH-small.png b/Skins/prezes - Copy - Copy/ranking-SH-small.png new file mode 100644 index 00000000..9874a6eb --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dfd8fd78d8b2a32b7992cf987cc0dd8b86cdfb46c1fd9286379c658e7219a3 +size 4547 diff --git a/Skins/prezes - Copy - Copy/ranking-X-small.png b/Skins/prezes - Copy - Copy/ranking-X-small.png new file mode 100644 index 00000000..6401b38b --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc163849993b7a223529b496163782fe172f9c1e5fb4585973260eb3618b1744 +size 5563 diff --git a/Skins/prezes - Copy - Copy/ranking-XH-small.png b/Skins/prezes - Copy - Copy/ranking-XH-small.png new file mode 100644 index 00000000..2e6a8046 --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b002b5c666212d5e7435332ac24f6c0e354666e9f69e13ecb41d7ace30dd0a +size 5313 diff --git a/Skins/prezes - Copy - Copy/ranking-accuracy.png b/Skins/prezes - Copy - Copy/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy - Copy/ranking-graph.png b/Skins/prezes - Copy - Copy/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/prezes - Copy - Copy/ranking-graph@2x.png b/Skins/prezes - Copy - Copy/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/prezes - Copy - Copy/ranking-maxcombo.png b/Skins/prezes - Copy - Copy/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/prezes - Copy - Copy/ranking-panel.png b/Skins/prezes - Copy - Copy/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/prezes - Copy - Copy/ranking-panel@2x.png b/Skins/prezes - Copy - Copy/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/prezes - Copy - Copy/ranking-perfect.png b/Skins/prezes - Copy - Copy/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy - Copy/ranking-title.png b/Skins/prezes - Copy - Copy/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy - Copy/ranking-winner.png b/Skins/prezes - Copy - Copy/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy - Copy/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy - Copy/ready.png b/Skins/prezes - Copy - Copy/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/readys.ogg b/Skins/prezes - Copy - Copy/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/reversearrow@2x.png b/Skins/prezes - Copy - Copy/reversearrow@2x.png new file mode 100644 index 00000000..c43eefd2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75207941e4314a98129cd0c54492c176cd56390e3019a9e12a3ba93547c58a5 +size 16861 diff --git a/Skins/prezes - Copy - Copy/score-percent.png b/Skins/prezes - Copy - Copy/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/score-x.png b/Skins/prezes - Copy - Copy/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/score-x@2x.png b/Skins/prezes - Copy - Copy/score-x@2x.png new file mode 100644 index 00000000..204e1d32 --- /dev/null +++ b/Skins/prezes - Copy - Copy/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c81714a5f028ec516d58fa2431b2f9c0622dfff7ff1d31dc911d69b00276524 +size 5041 diff --git a/Skins/prezes - Copy - Copy/scorebar-bg.png b/Skins/prezes - Copy - Copy/scorebar-bg.png new file mode 100644 index 00000000..58406986 --- /dev/null +++ b/Skins/prezes - Copy - Copy/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c918577a6c30740788ca3e8b1808f125a23a464f770181099975e608dcf723b +size 73994 diff --git a/Skins/prezes - Copy - Copy/scorebar-colour.png b/Skins/prezes - Copy - Copy/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/scorebar-marker.png b/Skins/prezes - Copy - Copy/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/scoreentry-comma.png b/Skins/prezes - Copy - Copy/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes - Copy - Copy/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes - Copy - Copy/scoreentry-dot.png b/Skins/prezes - Copy - Copy/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes - Copy - Copy/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes - Copy - Copy/scoreentry-percent.png b/Skins/prezes - Copy - Copy/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/scoreentry-x.png b/Skins/prezes - Copy - Copy/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/selection-mod-autoplay@2x.png b/Skins/prezes - Copy - Copy/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..ed189d6e --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d16303be865ce02feede1845dcdefbc115f2f9fbd8b3dc3baff1ba650997724 +size 13667 diff --git a/Skins/prezes - Copy - Copy/selection-mod-cinema@2x.png b/Skins/prezes - Copy - Copy/selection-mod-cinema@2x.png new file mode 100644 index 00000000..db84c414 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45df8def051cfbbb31115a28ab9c02c0a20bd8b426f19900f337a7816acfebd6 +size 22259 diff --git a/Skins/prezes - Copy - Copy/selection-mod-doubletime@2x.png b/Skins/prezes - Copy - Copy/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6f471799 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b579edd7458a28dc8063e5ab01ce9be32ee0dd94388aad6f2c0189ac216c3c +size 21202 diff --git a/Skins/prezes - Copy - Copy/selection-mod-easy@2x.png b/Skins/prezes - Copy - Copy/selection-mod-easy@2x.png new file mode 100644 index 00000000..52fa94c8 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb4dadafd8964a3bfd702763cf675917453afe4dc3a4abafe72896beb02e7bc +size 13043 diff --git a/Skins/prezes - Copy - Copy/selection-mod-flashlight@2x.png b/Skins/prezes - Copy - Copy/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..bd178b55 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bf5cc4153a4c77e1eb4208c7ef6020e47c49fcb014567139dc3e79be3f5900 +size 15503 diff --git a/Skins/prezes - Copy - Copy/selection-mod-halftime@2x.png b/Skins/prezes - Copy - Copy/selection-mod-halftime@2x.png new file mode 100644 index 00000000..595b8452 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f8a011ceb3082ee82f0ea40d2750cab07ba3e066208f28f62fd56d62551d70 +size 12853 diff --git a/Skins/prezes - Copy - Copy/selection-mod-hardrock@2x.png b/Skins/prezes - Copy - Copy/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..d78a8b5c --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2398e0471f2ad18083bad94f1d78c5ddccdb24a9d44586bcda0ea23551cc3e +size 17560 diff --git a/Skins/prezes - Copy - Copy/selection-mod-hidden@2x.png b/Skins/prezes - Copy - Copy/selection-mod-hidden@2x.png new file mode 100644 index 00000000..b4cbf002 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e0c218610a22452283aeb7976391cb6164f9a69f454736bea7a42dc9763ac4 +size 22127 diff --git a/Skins/prezes - Copy - Copy/selection-mod-nightcore@2x.png b/Skins/prezes - Copy - Copy/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..aeaba637 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876ba95cb756fa07b2920afde80b3c13a1c1afab29eed2d95c3658e92daccab5 +size 16358 diff --git a/Skins/prezes - Copy - Copy/selection-mod-nofail@2x.png b/Skins/prezes - Copy - Copy/selection-mod-nofail@2x.png new file mode 100644 index 00000000..7812d0f7 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e50c010bc36bcbd5feee98ae3808425482715ddb4954364891e21468513842 +size 20945 diff --git a/Skins/prezes - Copy - Copy/selection-mod-perfect@2x.png b/Skins/prezes - Copy - Copy/selection-mod-perfect@2x.png new file mode 100644 index 00000000..1fadb52f --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8e6fa28838f08e3b9768642aa3766e4f16d0800a242b6de2139006534d9592 +size 16077 diff --git a/Skins/prezes - Copy - Copy/selection-mod-relax2@2x.png b/Skins/prezes - Copy - Copy/selection-mod-relax2@2x.png new file mode 100644 index 00000000..4f87a207 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703d9ceb29648ae8ced917353b79c337a3bf384fc974176b2bbdeea979ba98f3 +size 17362 diff --git a/Skins/prezes - Copy - Copy/selection-mod-relax@2x.png b/Skins/prezes - Copy - Copy/selection-mod-relax@2x.png new file mode 100644 index 00000000..9ce08619 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b30631a4296e085afdeadb5d413ba489350078bb723af445d65931ad6d1e19 +size 13251 diff --git a/Skins/prezes - Copy - Copy/selection-mod-spunout@2x.png b/Skins/prezes - Copy - Copy/selection-mod-spunout@2x.png new file mode 100644 index 00000000..c902b31e --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e98f9b2ea1464b96ae7d6ef6a375a6490d2e5473d08e61221a785c1a52e387 +size 19156 diff --git a/Skins/prezes - Copy - Copy/selection-mod-suddendeath@2x.png b/Skins/prezes - Copy - Copy/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..ca40518a --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069e192fcfff644c94134100d1493c1b81c7f166a42db0d45c080fa938c9029c +size 22918 diff --git a/Skins/prezes - Copy - Copy/selection-mod-target@2x.png b/Skins/prezes - Copy - Copy/selection-mod-target@2x.png new file mode 100644 index 00000000..629cd028 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d502463c96d96daaf96e7d68276e209c4afe3a33d5289a6eca14280da5edf7ec +size 27959 diff --git a/Skins/prezes - Copy - Copy/selection-mode.png b/Skins/prezes - Copy - Copy/selection-mode.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy - Copy/selection-mods-over.png b/Skins/prezes - Copy - Copy/selection-mods-over.png new file mode 100644 index 00000000..b68deba2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247c4032d4bceaf2c5bc380a6761583186916fe949438ab9cf5b31393e2345dc +size 16609 diff --git a/Skins/prezes - Copy - Copy/selection-mods.png b/Skins/prezes - Copy - Copy/selection-mods.png new file mode 100644 index 00000000..b937e7fa --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9644f163ebb55787dd2dd976e51ede91efa9a4ce21a7665ca9e8d5b04d79bfb0 +size 7337 diff --git a/Skins/prezes - Copy - Copy/selection-options-over.png b/Skins/prezes - Copy - Copy/selection-options-over.png new file mode 100644 index 00000000..e760aeaf --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6531c2c5723ea65d52661409c7949985b12d066990ec192a7b1937c9dee1079 +size 17478 diff --git a/Skins/prezes - Copy - Copy/selection-options.png b/Skins/prezes - Copy - Copy/selection-options.png new file mode 100644 index 00000000..2e0b74c2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac6966279e9161e4707df554d0f1ec4a139c1577d74c33d1515bd1378d7e579 +size 7473 diff --git a/Skins/prezes - Copy - Copy/selection-random-over.png b/Skins/prezes - Copy - Copy/selection-random-over.png new file mode 100644 index 00000000..a1261c0b --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2af8ae50ad9d8cbb42e1e0139af3cd685d5118b409a550b9ddf7702730502ef +size 17203 diff --git a/Skins/prezes - Copy - Copy/selection-random.png b/Skins/prezes - Copy - Copy/selection-random.png new file mode 100644 index 00000000..d21606ce --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dec06d576cbb139d25c0a3186cafc903ae696575f81173bf00a42a85271d3fb +size 7125 diff --git a/Skins/prezes - Copy - Copy/selection-selectoptions-over.png b/Skins/prezes - Copy - Copy/selection-selectoptions-over.png new file mode 100644 index 00000000..294f8e15 --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213f480c6712a87336599b9cc3cf7a31d68bb625369ffe46c2b13a6b42394c77 +size 17185 diff --git a/Skins/prezes - Copy - Copy/selection-selectoptions.png b/Skins/prezes - Copy - Copy/selection-selectoptions.png new file mode 100644 index 00000000..038d6d8e --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e6c080739692e511f0cd8a6063866340d8f9978a6f1563cc45c0391a2c58cc +size 7308 diff --git a/Skins/prezes - Copy - Copy/selection-tab.png b/Skins/prezes - Copy - Copy/selection-tab.png new file mode 100644 index 00000000..a35bf13f --- /dev/null +++ b/Skins/prezes - Copy - Copy/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb5ba814f28906665ff0918c3dae701b1461cf11d9535f96aa410ab427db79b +size 1884 diff --git a/Skins/prezes - Copy - Copy/shutter.ogg b/Skins/prezes - Copy - Copy/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/skin.ini b/Skins/prezes - Copy - Copy/skin.ini new file mode 100644 index 00000000..d5ed9533 --- /dev/null +++ b/Skins/prezes - Copy - Copy/skin.ini @@ -0,0 +1,23 @@ +// skin.ini generated by osu! skin mixer v2.8.1 + +[General] +Name: prezes blue +Version: latest +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 + +[Colours] +SliderBorder: 60,60,60 +SliderTrackOverride: 0,0,0 +Combo1: 255,102,102 +Combo2: 255,153,153 +Combo3: 255,204,204 +SongSelectActiveText: 255,153,153 +SongSelectInactiveText: 255,153,153 + +[Fonts] +ScoreOverlap: 0 +ScorePrefix: score +ComboOverlap: 0 +HitCircleOverlap: 20 diff --git a/Skins/prezes - Copy - Copy/sliderb.png b/Skins/prezes - Copy - Copy/sliderb.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes - Copy - Copy/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes - Copy - Copy/sliderb@2x.png b/Skins/prezes - Copy - Copy/sliderb@2x.png new file mode 100644 index 00000000..b1504a18 --- /dev/null +++ b/Skins/prezes - Copy - Copy/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ac739f478cc6d9e64c3a4071ba5fbfb7c5e05c48a6bda234f149e2fc300a7e +size 5675 diff --git a/Skins/prezes - Copy - Copy/sliderendcircle.png b/Skins/prezes - Copy - Copy/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes - Copy - Copy/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes - Copy - Copy/sliderfollowcircle.png b/Skins/prezes - Copy - Copy/sliderfollowcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/sliderscorepoint.png b/Skins/prezes - Copy - Copy/sliderscorepoint.png new file mode 100644 index 00000000..c39cb2e1 --- /dev/null +++ b/Skins/prezes - Copy - Copy/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72f25f445940b166868007fd83eba1117812b907b5c58bcd8cc9014715c6afc +size 5091 diff --git a/Skins/prezes - Copy - Copy/soft-hitclap.wav b/Skins/prezes - Copy - Copy/soft-hitclap.wav new file mode 100644 index 00000000..a599636b --- /dev/null +++ b/Skins/prezes - Copy - Copy/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b85e7b8c41153eefdd3cd543fe992310638f973eb6fd79af842bdb184dd90122 +size 4436 diff --git a/Skins/prezes - Copy - Copy/soft-hitfinish.ogg b/Skins/prezes - Copy - Copy/soft-hitfinish.ogg new file mode 100644 index 00000000..115a6027 --- /dev/null +++ b/Skins/prezes - Copy - Copy/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850ed6f0b7aa2a2207a7f2072c204f1f4d8ecc8422a0be1af7c1697dd1a09927 +size 5763 diff --git a/Skins/prezes - Copy - Copy/soft-hitnormal.ogg b/Skins/prezes - Copy - Copy/soft-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes - Copy - Copy/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes - Copy - Copy/soft-hitwhistle.wav b/Skins/prezes - Copy - Copy/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy - Copy/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy - Copy/soft-sliderslide.ogg b/Skins/prezes - Copy - Copy/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/soft-slidertick.ogg b/Skins/prezes - Copy - Copy/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/soft-sliderwhistle.ogg b/Skins/prezes - Copy - Copy/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/spinner-approachcircle.png b/Skins/prezes - Copy - Copy/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/spinner-background.png b/Skins/prezes - Copy - Copy/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/spinner-circle@2x.png b/Skins/prezes - Copy - Copy/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/prezes - Copy - Copy/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/prezes - Copy - Copy/spinner-clear.png b/Skins/prezes - Copy - Copy/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/spinner-rpm.png b/Skins/prezes - Copy - Copy/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/spinner-spin.png b/Skins/prezes - Copy - Copy/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/spinnerbonus.ogg b/Skins/prezes - Copy - Copy/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/spinnerspin.ogg b/Skins/prezes - Copy - Copy/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy - Copy/star.png b/Skins/prezes - Copy - Copy/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy - Copy/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy - Copy/star2.png b/Skins/prezes - Copy - Copy/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy - Copy/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy - Copy/star2@2x.png b/Skins/prezes - Copy - Copy/star2@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy - Copy/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy/Score-0@2x.png b/Skins/prezes - Copy/Score-0@2x.png new file mode 100644 index 00000000..9cd3963a --- /dev/null +++ b/Skins/prezes - Copy/Score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9ff35588b818a904422b136c94e8183a0dd5d6604f9e5af0dbc202d7347e45 +size 4787 diff --git a/Skins/prezes - Copy/Score-1@2x.png b/Skins/prezes - Copy/Score-1@2x.png new file mode 100644 index 00000000..92b1d95f --- /dev/null +++ b/Skins/prezes - Copy/Score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb837459da0a71ea721642f1542528dff9bd3323a20bc9642a91f36fa7ecf1d +size 4520 diff --git a/Skins/prezes - Copy/Score-2@2x.png b/Skins/prezes - Copy/Score-2@2x.png new file mode 100644 index 00000000..eef2b5e8 --- /dev/null +++ b/Skins/prezes - Copy/Score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3daee5b5eebb1725629e719964b859f6695fa1192369602e90b7b282b5deb2b +size 6056 diff --git a/Skins/prezes - Copy/Score-3@2x.png b/Skins/prezes - Copy/Score-3@2x.png new file mode 100644 index 00000000..95840a7c --- /dev/null +++ b/Skins/prezes - Copy/Score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25349b8a326ef088b831f3c2df5ad690c2e6a791d2f9992192107852d3940a3e +size 5578 diff --git a/Skins/prezes - Copy/Score-4@2x.png b/Skins/prezes - Copy/Score-4@2x.png new file mode 100644 index 00000000..baeae8b4 --- /dev/null +++ b/Skins/prezes - Copy/Score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc9e701986f6e718e1d55078a8b3330f94eca60703aea470537648070efb399c +size 5139 diff --git a/Skins/prezes - Copy/Score-5@2x.png b/Skins/prezes - Copy/Score-5@2x.png new file mode 100644 index 00000000..44e622b5 --- /dev/null +++ b/Skins/prezes - Copy/Score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b402d802f3324d6f160842b06a0c66b0fe5ae0facc351dd5b677aa9027426b9 +size 5324 diff --git a/Skins/prezes - Copy/Score-6@2x.png b/Skins/prezes - Copy/Score-6@2x.png new file mode 100644 index 00000000..21aebd07 --- /dev/null +++ b/Skins/prezes - Copy/Score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa7a817766fee8e6b09f55daf2d24a5d8c198ce01b098e91173c2b609706eecb +size 5537 diff --git a/Skins/prezes - Copy/Score-7@2x.png b/Skins/prezes - Copy/Score-7@2x.png new file mode 100644 index 00000000..8f16241d --- /dev/null +++ b/Skins/prezes - Copy/Score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9901abf426c0777187edbef2a05ceb09075dfba70f675c3a251936cdeb6a936 +size 5730 diff --git a/Skins/prezes - Copy/Score-8@2x.png b/Skins/prezes - Copy/Score-8@2x.png new file mode 100644 index 00000000..cc1d4c6b --- /dev/null +++ b/Skins/prezes - Copy/Score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd2603936f48f459f0ca1c03dcf41125df847aab37107625c8319ee382226aa +size 5702 diff --git a/Skins/prezes - Copy/Score-9@2x.png b/Skins/prezes - Copy/Score-9@2x.png new file mode 100644 index 00000000..c2c2c448 --- /dev/null +++ b/Skins/prezes - Copy/Score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fee10d7e8b3fc1083eace9b6fdd1ceab6c78429ea2698be616564a4968c555a +size 5547 diff --git a/Skins/prezes - Copy/Score-comma@2x.png b/Skins/prezes - Copy/Score-comma@2x.png new file mode 100644 index 00000000..f41cd720 --- /dev/null +++ b/Skins/prezes - Copy/Score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34576e947c862d31a161033fe2854ed299ca3f2c208fa588c6faa5c8e50d3fc +size 4009 diff --git a/Skins/prezes - Copy/Score-percent@2x.png b/Skins/prezes - Copy/Score-percent@2x.png new file mode 100644 index 00000000..d3d096b2 --- /dev/null +++ b/Skins/prezes - Copy/Score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45c59f692945350caa5996b106e07b0e541487984b5782c53d42de7ab853303 +size 6358 diff --git a/Skins/prezes - Copy/applause.mp3 b/Skins/prezes - Copy/applause.mp3 new file mode 100644 index 00000000..aeb2d742 --- /dev/null +++ b/Skins/prezes - Copy/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f571204649b205de430776952a078b006405892f310bd6807e054dc454d783e +size 309464 diff --git a/Skins/prezes - Copy/approachcircle.png b/Skins/prezes - Copy/approachcircle.png new file mode 100644 index 00000000..8d7ca8db --- /dev/null +++ b/Skins/prezes - Copy/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d435ccbd1c44abab9d9b94ed850f80476d1bfc509b89031c8c94ae0edc4611c +size 14700 diff --git a/Skins/prezes - Copy/approachcircle@2x.png b/Skins/prezes - Copy/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/prezes - Copy/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/prezes - Copy/button-left.png b/Skins/prezes - Copy/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/button-middle.png b/Skins/prezes - Copy/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/button-right.png b/Skins/prezes - Copy/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/count1.png b/Skins/prezes - Copy/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/count2.png b/Skins/prezes - Copy/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/count3.png b/Skins/prezes - Copy/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/cursor-smoke.png b/Skins/prezes - Copy/cursor-smoke.png new file mode 100644 index 00000000..072c56dc --- /dev/null +++ b/Skins/prezes - Copy/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ce8c21a36db630ffafb9c05a78a911370fd199f6e2b7a5853e94b0cbcd32ed +size 2801 diff --git a/Skins/prezes - Copy/cursor.png b/Skins/prezes - Copy/cursor.png new file mode 100644 index 00000000..1d17678f --- /dev/null +++ b/Skins/prezes - Copy/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50b154abdaf85ff3d6f0be69f0c1b771e26b7ca85424bab6c6c4679b570a67c +size 3312 diff --git a/Skins/prezes - Copy/cursortrail.png b/Skins/prezes - Copy/cursortrail.png new file mode 100644 index 00000000..5b7f45f2 --- /dev/null +++ b/Skins/prezes - Copy/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b58a6fdb308ed6c9a3ae6b73c7fcabde9105fc495f5093f13eb0740d7bd9f8a +size 1740 diff --git a/Skins/prezes - Copy/default-0.png b/Skins/prezes - Copy/default-0.png new file mode 100644 index 00000000..64858f31 --- /dev/null +++ b/Skins/prezes - Copy/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbf5a57bc4ddb3c7c85f75f90f2843d6532459545610bf51f8eae5dce4c326b +size 5310 diff --git a/Skins/prezes - Copy/default-1.png b/Skins/prezes - Copy/default-1.png new file mode 100644 index 00000000..aa4f3307 --- /dev/null +++ b/Skins/prezes - Copy/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b2536e0af1f5632b841db73aec1136c9174cba10cb8303f0c0e065584fd19 +size 3645 diff --git a/Skins/prezes - Copy/default-2.png b/Skins/prezes - Copy/default-2.png new file mode 100644 index 00000000..55beb36f --- /dev/null +++ b/Skins/prezes - Copy/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829ca68fc1fc9e0aaba0f2f6d41a92adc9de6bf9c2511365ba70baa3d61790cb +size 5709 diff --git a/Skins/prezes - Copy/default-3.png b/Skins/prezes - Copy/default-3.png new file mode 100644 index 00000000..265b0dac --- /dev/null +++ b/Skins/prezes - Copy/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a098dfe1bf81dc21d017d8dfe5e944cd49c63208ddb5c032ce7f518cf208f5c6 +size 5741 diff --git a/Skins/prezes - Copy/default-4.png b/Skins/prezes - Copy/default-4.png new file mode 100644 index 00000000..9f003f7f --- /dev/null +++ b/Skins/prezes - Copy/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747a290ca5ee9b65839c3193176a8ce57d09382c974a609ee5148b688ddd550d +size 4796 diff --git a/Skins/prezes - Copy/default-5.png b/Skins/prezes - Copy/default-5.png new file mode 100644 index 00000000..2c1bf42f --- /dev/null +++ b/Skins/prezes - Copy/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab00a8ec33a6c69157bb68367aa74a27d34917a163c4d31429ab08a471ca688 +size 5492 diff --git a/Skins/prezes - Copy/default-6.png b/Skins/prezes - Copy/default-6.png new file mode 100644 index 00000000..7c18c2b4 --- /dev/null +++ b/Skins/prezes - Copy/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa75ef2541e3759644705f565ff2ac90184c37d83ef676b163ce380ed0c91ebd +size 5489 diff --git a/Skins/prezes - Copy/default-7.png b/Skins/prezes - Copy/default-7.png new file mode 100644 index 00000000..d018b09e --- /dev/null +++ b/Skins/prezes - Copy/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de8149971f96b584196147374f168bdfac4dca1b6d6b4485409df0026e181b7 +size 5107 diff --git a/Skins/prezes - Copy/default-8.png b/Skins/prezes - Copy/default-8.png new file mode 100644 index 00000000..8d653450 --- /dev/null +++ b/Skins/prezes - Copy/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc23776e5e57efc3854b65b023f89dfb44dca2a9a1d44a6228e63cfabe832947 +size 5602 diff --git a/Skins/prezes - Copy/default-9.png b/Skins/prezes - Copy/default-9.png new file mode 100644 index 00000000..4a53267c --- /dev/null +++ b/Skins/prezes - Copy/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882725cf243743606128440651a4328157311def82fc00ea7415a38ccaf3d02e +size 5451 diff --git a/Skins/prezes - Copy/default-comma.png b/Skins/prezes - Copy/default-comma.png new file mode 100644 index 00000000..3b6e0669 --- /dev/null +++ b/Skins/prezes - Copy/default-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f2fbefae4f4920da6907f804fe0def6c1dc28ec5b9df9bda2c48f6a0d70a36 +size 3270 diff --git a/Skins/prezes - Copy/default-dot.png b/Skins/prezes - Copy/default-dot.png new file mode 100644 index 00000000..75793082 --- /dev/null +++ b/Skins/prezes - Copy/default-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f410a7e07284c1af0333ab04da39a388ed9e8f6df56406547c34d0c419daaa +size 3116 diff --git a/Skins/prezes - Copy/default-percent.png b/Skins/prezes - Copy/default-percent.png new file mode 100644 index 00000000..13738bf2 --- /dev/null +++ b/Skins/prezes - Copy/default-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0277c786118bc12571f9686fc19a952604433b5441f3dd2ebe1ef62f27f10e10 +size 5590 diff --git a/Skins/prezes - Copy/default-x.png b/Skins/prezes - Copy/default-x.png new file mode 100644 index 00000000..57409519 --- /dev/null +++ b/Skins/prezes - Copy/default-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f6ace6aba385ec929d69c4d3bf8d780036ddec7f101d9b2dcebc534abf5f01 +size 4714 diff --git a/Skins/prezes - Copy/drum-hitclap.ogg b/Skins/prezes - Copy/drum-hitclap.ogg new file mode 100644 index 00000000..f72b6ba6 --- /dev/null +++ b/Skins/prezes - Copy/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b855f7affaa94ea029d9244089de243682c5e670b34b2a8ea3a0f7e899db8fe +size 5151 diff --git a/Skins/prezes - Copy/drum-hitfinish.ogg b/Skins/prezes - Copy/drum-hitfinish.ogg new file mode 100644 index 00000000..f320932f --- /dev/null +++ b/Skins/prezes - Copy/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd88f8b4502908cff6252307a3952e8c908daa49cbcea95f5bbc48d28df7c4c +size 5763 diff --git a/Skins/prezes - Copy/drum-hitnormal.ogg b/Skins/prezes - Copy/drum-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes - Copy/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes - Copy/drum-hitwhistle.wav b/Skins/prezes - Copy/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy/drum-sliderslide.ogg b/Skins/prezes - Copy/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/drum-slidertick.ogg b/Skins/prezes - Copy/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/drum-sliderwhistle.ogg b/Skins/prezes - Copy/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/followpoint-0.png b/Skins/prezes - Copy/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy/followpoint-1.png b/Skins/prezes - Copy/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy/followpoint-11.png b/Skins/prezes - Copy/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/prezes - Copy/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/prezes - Copy/followpoint-12.png b/Skins/prezes - Copy/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/prezes - Copy/followpoint-13.png b/Skins/prezes - Copy/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/prezes - Copy/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/prezes - Copy/followpoint-14.png b/Skins/prezes - Copy/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/prezes - Copy/followpoint-15.png b/Skins/prezes - Copy/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/prezes - Copy/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/prezes - Copy/followpoint-16.png b/Skins/prezes - Copy/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/prezes - Copy/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/prezes - Copy/followpoint-17.png b/Skins/prezes - Copy/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/prezes - Copy/followpoint-18.png b/Skins/prezes - Copy/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/prezes - Copy/followpoint-19.png b/Skins/prezes - Copy/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/prezes - Copy/followpoint-2.png b/Skins/prezes - Copy/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes - Copy/followpoint-20.png b/Skins/prezes - Copy/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/prezes - Copy/followpoint-21.png b/Skins/prezes - Copy/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/prezes - Copy/followpoint-22.png b/Skins/prezes - Copy/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/prezes - Copy/followpoint-23.png b/Skins/prezes - Copy/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/prezes - Copy/followpoint-3.png b/Skins/prezes - Copy/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/prezes - Copy/followpoint-4.png b/Skins/prezes - Copy/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy/followpoint-5.png b/Skins/prezes - Copy/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy/followpoint-6.png b/Skins/prezes - Copy/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy/followpoint-7.png b/Skins/prezes - Copy/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy/followpoint-8.png b/Skins/prezes - Copy/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy/followpoint-9.png b/Skins/prezes - Copy/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes - Copy/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes - Copy/followpoint.png b/Skins/prezes - Copy/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/prezes - Copy/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/prezes - Copy/go.png b/Skins/prezes - Copy/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/hit0-0.png b/Skins/prezes - Copy/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/prezes - Copy/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/prezes - Copy/hit0.png b/Skins/prezes - Copy/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/hit100-0.png b/Skins/prezes - Copy/hit100-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes - Copy/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes - Copy/hit100.png b/Skins/prezes - Copy/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/hit100k-0.png b/Skins/prezes - Copy/hit100k-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes - Copy/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes - Copy/hit100k.png b/Skins/prezes - Copy/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/hit300.png b/Skins/prezes - Copy/hit300.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/hit300g.png b/Skins/prezes - Copy/hit300g.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/hit300k.png b/Skins/prezes - Copy/hit300k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/hit50-0.png b/Skins/prezes - Copy/hit50-0.png new file mode 100644 index 00000000..378cdf1e --- /dev/null +++ b/Skins/prezes - Copy/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1317680bf0c857731dbc67d8689fb11a031033ec4527ff1b25023e0ed4361 +size 1956 diff --git a/Skins/prezes - Copy/hit50.png b/Skins/prezes - Copy/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/hitcircle.png b/Skins/prezes - Copy/hitcircle.png new file mode 100644 index 00000000..8d6d9877 --- /dev/null +++ b/Skins/prezes - Copy/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc62e3351b2da3459ddb3d64fef3e14215836b1e55cced9a65e6fc5f8b5146a +size 7716 diff --git a/Skins/prezes - Copy/hitcircleoverlay@2x.png b/Skins/prezes - Copy/hitcircleoverlay@2x.png new file mode 100644 index 00000000..c091ca92 --- /dev/null +++ b/Skins/prezes - Copy/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9389187c584e8ffe1cb3aaf27e85a7ef21f877fb13fb3f012f6037b2ec465e +size 12219 diff --git a/Skins/prezes - Copy/inputoverlay-background.png b/Skins/prezes - Copy/inputoverlay-background.png new file mode 100644 index 00000000..faa8d637 --- /dev/null +++ b/Skins/prezes - Copy/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1c00c316056a6b1db2ae050db243344e6e1da6a106a8cf30a2658a8ae68147 +size 148 diff --git a/Skins/prezes - Copy/inputoverlay-key.png b/Skins/prezes - Copy/inputoverlay-key.png new file mode 100644 index 00000000..192e33f5 --- /dev/null +++ b/Skins/prezes - Copy/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94479ac8e798ff3c6431722e565c29914ad02ed3ee87c872ffb68625b6406b7 +size 1841 diff --git a/Skins/prezes - Copy/key-confirm.ogg b/Skins/prezes - Copy/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/key-delete.ogg b/Skins/prezes - Copy/key-delete.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/key-movement.ogg b/Skins/prezes - Copy/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/key-press-1.ogg b/Skins/prezes - Copy/key-press-1.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/key-press-2.ogg b/Skins/prezes - Copy/key-press-2.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/key-press-3.ogg b/Skins/prezes - Copy/key-press-3.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/key-press-4.ogg b/Skins/prezes - Copy/key-press-4.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/menu-button-background.png b/Skins/prezes - Copy/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/prezes - Copy/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/prezes - Copy/nightcore-clap.ogg b/Skins/prezes - Copy/nightcore-clap.ogg new file mode 100644 index 00000000..a1cf7c71 --- /dev/null +++ b/Skins/prezes - Copy/nightcore-clap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8207912bc05bf89590d1c6bc2f3454ea5af65e36bd691d50a4859885cf8c72d +size 4465 diff --git a/Skins/prezes - Copy/nightcore-finish.ogg b/Skins/prezes - Copy/nightcore-finish.ogg new file mode 100644 index 00000000..458b08aa --- /dev/null +++ b/Skins/prezes - Copy/nightcore-finish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6aaa47cfd2b5d7d7648d67b57d626b0bd802abd8efe8ecaa34a44de6e8e387 +size 4465 diff --git a/Skins/prezes - Copy/nightcore-hat.ogg b/Skins/prezes - Copy/nightcore-hat.ogg new file mode 100644 index 00000000..953bfb1a --- /dev/null +++ b/Skins/prezes - Copy/nightcore-hat.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc445489d224cac39374676877ecba8a61695f0d7ef79b89c4d5fc0b833a0931 +size 4464 diff --git a/Skins/prezes - Copy/nightcore-kick.ogg b/Skins/prezes - Copy/nightcore-kick.ogg new file mode 100644 index 00000000..2de1425b --- /dev/null +++ b/Skins/prezes - Copy/nightcore-kick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e67f0f9850933b0cc1ec339ce9c14bb8c9952c2cf4fc4e182626cec3949b0e +size 4465 diff --git a/Skins/prezes - Copy/normal-hitclap.ogg b/Skins/prezes - Copy/normal-hitclap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/normal-hitfinish.ogg b/Skins/prezes - Copy/normal-hitfinish.ogg new file mode 100644 index 00000000..a44e5922 --- /dev/null +++ b/Skins/prezes - Copy/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7923246734d3e789070e853ae1755f0b7c3c9dd80a1326e82eec46f61c120195 +size 5970 diff --git a/Skins/prezes - Copy/normal-hitnormal.ogg b/Skins/prezes - Copy/normal-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes - Copy/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes - Copy/normal-hitwhistle.ogg b/Skins/prezes - Copy/normal-hitwhistle.ogg new file mode 100644 index 00000000..db5b140b --- /dev/null +++ b/Skins/prezes - Copy/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c87455b018f84cc4c1d863919e0a327533f9ceff6f2dc2ba049ecb74b38903c8 +size 15353 diff --git a/Skins/prezes - Copy/normal-hitwhistle.wav b/Skins/prezes - Copy/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy/normal-sliderslide.ogg b/Skins/prezes - Copy/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/normal-slidertick.ogg b/Skins/prezes - Copy/normal-slidertick.ogg new file mode 100644 index 00000000..a3dd50db --- /dev/null +++ b/Skins/prezes - Copy/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941388fc58f94fc256f34db8c0a72b726fc5de11285ca2d6cbbbc5e662da668f +size 5851 diff --git a/Skins/prezes - Copy/normal-sliderwhistle.ogg b/Skins/prezes - Copy/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/pause-back.png b/Skins/prezes - Copy/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/prezes - Copy/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/prezes - Copy/pause-continue.png b/Skins/prezes - Copy/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/prezes - Copy/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/prezes - Copy/pause-replay.png b/Skins/prezes - Copy/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/prezes - Copy/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/prezes - Copy/pause-retry.png b/Skins/prezes - Copy/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/prezes - Copy/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/prezes - Copy/play-skip.png b/Skins/prezes - Copy/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/play-unranked.png b/Skins/prezes - Copy/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/play-warningarrow.png b/Skins/prezes - Copy/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/prezes - Copy/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/prezes - Copy/ranking-A-small.png b/Skins/prezes - Copy/ranking-A-small.png new file mode 100644 index 00000000..1f031d7c --- /dev/null +++ b/Skins/prezes - Copy/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50870a7551614721716fcdf59901a1b7c5320ae83ba6a0f34b55d2a899a5adcf +size 4703 diff --git a/Skins/prezes - Copy/ranking-B-small.png b/Skins/prezes - Copy/ranking-B-small.png new file mode 100644 index 00000000..47cbeb6c --- /dev/null +++ b/Skins/prezes - Copy/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febbeb30e8b5e76cf402a997797edfa35faa35aa8308ab7eb822a91a0daa9410 +size 4490 diff --git a/Skins/prezes - Copy/ranking-C-small.png b/Skins/prezes - Copy/ranking-C-small.png new file mode 100644 index 00000000..741b51fd --- /dev/null +++ b/Skins/prezes - Copy/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241c1833fc5daf588ebaab8e1e487d30e1670065a4eee5f633d2dbf1aedaec06 +size 4555 diff --git a/Skins/prezes - Copy/ranking-D-small.png b/Skins/prezes - Copy/ranking-D-small.png new file mode 100644 index 00000000..4dd50ac2 --- /dev/null +++ b/Skins/prezes - Copy/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60553c613ebb581bfc535daaa805c3250c753ec2ce6e13e8c07444c73e8c14 +size 4365 diff --git a/Skins/prezes - Copy/ranking-S-small.png b/Skins/prezes - Copy/ranking-S-small.png new file mode 100644 index 00000000..46824491 --- /dev/null +++ b/Skins/prezes - Copy/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b57053a2015070c2e7d305f50e15368eeb311acad7c7be4eb7a1c4fa5f2af3 +size 4768 diff --git a/Skins/prezes - Copy/ranking-SH-small.png b/Skins/prezes - Copy/ranking-SH-small.png new file mode 100644 index 00000000..9874a6eb --- /dev/null +++ b/Skins/prezes - Copy/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dfd8fd78d8b2a32b7992cf987cc0dd8b86cdfb46c1fd9286379c658e7219a3 +size 4547 diff --git a/Skins/prezes - Copy/ranking-X-small.png b/Skins/prezes - Copy/ranking-X-small.png new file mode 100644 index 00000000..6401b38b --- /dev/null +++ b/Skins/prezes - Copy/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc163849993b7a223529b496163782fe172f9c1e5fb4585973260eb3618b1744 +size 5563 diff --git a/Skins/prezes - Copy/ranking-XH-small.png b/Skins/prezes - Copy/ranking-XH-small.png new file mode 100644 index 00000000..2e6a8046 --- /dev/null +++ b/Skins/prezes - Copy/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b002b5c666212d5e7435332ac24f6c0e354666e9f69e13ecb41d7ace30dd0a +size 5313 diff --git a/Skins/prezes - Copy/ranking-accuracy.png b/Skins/prezes - Copy/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy/ranking-graph.png b/Skins/prezes - Copy/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/prezes - Copy/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/prezes - Copy/ranking-graph@2x.png b/Skins/prezes - Copy/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/prezes - Copy/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/prezes - Copy/ranking-maxcombo.png b/Skins/prezes - Copy/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/prezes - Copy/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/prezes - Copy/ranking-panel.png b/Skins/prezes - Copy/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/prezes - Copy/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/prezes - Copy/ranking-panel@2x.png b/Skins/prezes - Copy/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/prezes - Copy/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/prezes - Copy/ranking-perfect.png b/Skins/prezes - Copy/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy/ranking-title.png b/Skins/prezes - Copy/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy/ranking-winner.png b/Skins/prezes - Copy/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy/ready.png b/Skins/prezes - Copy/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/readys.ogg b/Skins/prezes - Copy/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/reversearrow@2x.png b/Skins/prezes - Copy/reversearrow@2x.png new file mode 100644 index 00000000..c43eefd2 --- /dev/null +++ b/Skins/prezes - Copy/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75207941e4314a98129cd0c54492c176cd56390e3019a9e12a3ba93547c58a5 +size 16861 diff --git a/Skins/prezes - Copy/score-percent.png b/Skins/prezes - Copy/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/score-x.png b/Skins/prezes - Copy/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/score-x@2x.png b/Skins/prezes - Copy/score-x@2x.png new file mode 100644 index 00000000..204e1d32 --- /dev/null +++ b/Skins/prezes - Copy/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c81714a5f028ec516d58fa2431b2f9c0622dfff7ff1d31dc911d69b00276524 +size 5041 diff --git a/Skins/prezes - Copy/scorebar-bg.png b/Skins/prezes - Copy/scorebar-bg.png new file mode 100644 index 00000000..58406986 --- /dev/null +++ b/Skins/prezes - Copy/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c918577a6c30740788ca3e8b1808f125a23a464f770181099975e608dcf723b +size 73994 diff --git a/Skins/prezes - Copy/scorebar-colour.png b/Skins/prezes - Copy/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/scorebar-marker.png b/Skins/prezes - Copy/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/scoreentry-comma.png b/Skins/prezes - Copy/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes - Copy/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes - Copy/scoreentry-dot.png b/Skins/prezes - Copy/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes - Copy/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes - Copy/scoreentry-percent.png b/Skins/prezes - Copy/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/scoreentry-x.png b/Skins/prezes - Copy/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/selection-mod-autoplay@2x.png b/Skins/prezes - Copy/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..ed189d6e --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d16303be865ce02feede1845dcdefbc115f2f9fbd8b3dc3baff1ba650997724 +size 13667 diff --git a/Skins/prezes - Copy/selection-mod-cinema@2x.png b/Skins/prezes - Copy/selection-mod-cinema@2x.png new file mode 100644 index 00000000..db84c414 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45df8def051cfbbb31115a28ab9c02c0a20bd8b426f19900f337a7816acfebd6 +size 22259 diff --git a/Skins/prezes - Copy/selection-mod-doubletime@2x.png b/Skins/prezes - Copy/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6f471799 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b579edd7458a28dc8063e5ab01ce9be32ee0dd94388aad6f2c0189ac216c3c +size 21202 diff --git a/Skins/prezes - Copy/selection-mod-easy@2x.png b/Skins/prezes - Copy/selection-mod-easy@2x.png new file mode 100644 index 00000000..52fa94c8 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb4dadafd8964a3bfd702763cf675917453afe4dc3a4abafe72896beb02e7bc +size 13043 diff --git a/Skins/prezes - Copy/selection-mod-flashlight@2x.png b/Skins/prezes - Copy/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..bd178b55 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bf5cc4153a4c77e1eb4208c7ef6020e47c49fcb014567139dc3e79be3f5900 +size 15503 diff --git a/Skins/prezes - Copy/selection-mod-halftime@2x.png b/Skins/prezes - Copy/selection-mod-halftime@2x.png new file mode 100644 index 00000000..595b8452 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f8a011ceb3082ee82f0ea40d2750cab07ba3e066208f28f62fd56d62551d70 +size 12853 diff --git a/Skins/prezes - Copy/selection-mod-hardrock@2x.png b/Skins/prezes - Copy/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..d78a8b5c --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2398e0471f2ad18083bad94f1d78c5ddccdb24a9d44586bcda0ea23551cc3e +size 17560 diff --git a/Skins/prezes - Copy/selection-mod-hidden@2x.png b/Skins/prezes - Copy/selection-mod-hidden@2x.png new file mode 100644 index 00000000..b4cbf002 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e0c218610a22452283aeb7976391cb6164f9a69f454736bea7a42dc9763ac4 +size 22127 diff --git a/Skins/prezes - Copy/selection-mod-nightcore@2x.png b/Skins/prezes - Copy/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..aeaba637 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876ba95cb756fa07b2920afde80b3c13a1c1afab29eed2d95c3658e92daccab5 +size 16358 diff --git a/Skins/prezes - Copy/selection-mod-nofail@2x.png b/Skins/prezes - Copy/selection-mod-nofail@2x.png new file mode 100644 index 00000000..7812d0f7 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e50c010bc36bcbd5feee98ae3808425482715ddb4954364891e21468513842 +size 20945 diff --git a/Skins/prezes - Copy/selection-mod-perfect@2x.png b/Skins/prezes - Copy/selection-mod-perfect@2x.png new file mode 100644 index 00000000..1fadb52f --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8e6fa28838f08e3b9768642aa3766e4f16d0800a242b6de2139006534d9592 +size 16077 diff --git a/Skins/prezes - Copy/selection-mod-relax2@2x.png b/Skins/prezes - Copy/selection-mod-relax2@2x.png new file mode 100644 index 00000000..4f87a207 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703d9ceb29648ae8ced917353b79c337a3bf384fc974176b2bbdeea979ba98f3 +size 17362 diff --git a/Skins/prezes - Copy/selection-mod-relax@2x.png b/Skins/prezes - Copy/selection-mod-relax@2x.png new file mode 100644 index 00000000..9ce08619 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b30631a4296e085afdeadb5d413ba489350078bb723af445d65931ad6d1e19 +size 13251 diff --git a/Skins/prezes - Copy/selection-mod-spunout@2x.png b/Skins/prezes - Copy/selection-mod-spunout@2x.png new file mode 100644 index 00000000..c902b31e --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e98f9b2ea1464b96ae7d6ef6a375a6490d2e5473d08e61221a785c1a52e387 +size 19156 diff --git a/Skins/prezes - Copy/selection-mod-suddendeath@2x.png b/Skins/prezes - Copy/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..ca40518a --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069e192fcfff644c94134100d1493c1b81c7f166a42db0d45c080fa938c9029c +size 22918 diff --git a/Skins/prezes - Copy/selection-mod-target@2x.png b/Skins/prezes - Copy/selection-mod-target@2x.png new file mode 100644 index 00000000..629cd028 --- /dev/null +++ b/Skins/prezes - Copy/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d502463c96d96daaf96e7d68276e209c4afe3a33d5289a6eca14280da5edf7ec +size 27959 diff --git a/Skins/prezes - Copy/selection-mode.png b/Skins/prezes - Copy/selection-mode.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy/selection-mods-over.png b/Skins/prezes - Copy/selection-mods-over.png new file mode 100644 index 00000000..b68deba2 --- /dev/null +++ b/Skins/prezes - Copy/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247c4032d4bceaf2c5bc380a6761583186916fe949438ab9cf5b31393e2345dc +size 16609 diff --git a/Skins/prezes - Copy/selection-mods.png b/Skins/prezes - Copy/selection-mods.png new file mode 100644 index 00000000..b937e7fa --- /dev/null +++ b/Skins/prezes - Copy/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9644f163ebb55787dd2dd976e51ede91efa9a4ce21a7665ca9e8d5b04d79bfb0 +size 7337 diff --git a/Skins/prezes - Copy/selection-options-over.png b/Skins/prezes - Copy/selection-options-over.png new file mode 100644 index 00000000..e760aeaf --- /dev/null +++ b/Skins/prezes - Copy/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6531c2c5723ea65d52661409c7949985b12d066990ec192a7b1937c9dee1079 +size 17478 diff --git a/Skins/prezes - Copy/selection-options.png b/Skins/prezes - Copy/selection-options.png new file mode 100644 index 00000000..2e0b74c2 --- /dev/null +++ b/Skins/prezes - Copy/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac6966279e9161e4707df554d0f1ec4a139c1577d74c33d1515bd1378d7e579 +size 7473 diff --git a/Skins/prezes - Copy/selection-random-over.png b/Skins/prezes - Copy/selection-random-over.png new file mode 100644 index 00000000..a1261c0b --- /dev/null +++ b/Skins/prezes - Copy/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2af8ae50ad9d8cbb42e1e0139af3cd685d5118b409a550b9ddf7702730502ef +size 17203 diff --git a/Skins/prezes - Copy/selection-random.png b/Skins/prezes - Copy/selection-random.png new file mode 100644 index 00000000..d21606ce --- /dev/null +++ b/Skins/prezes - Copy/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dec06d576cbb139d25c0a3186cafc903ae696575f81173bf00a42a85271d3fb +size 7125 diff --git a/Skins/prezes - Copy/selection-selectoptions-over.png b/Skins/prezes - Copy/selection-selectoptions-over.png new file mode 100644 index 00000000..294f8e15 --- /dev/null +++ b/Skins/prezes - Copy/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213f480c6712a87336599b9cc3cf7a31d68bb625369ffe46c2b13a6b42394c77 +size 17185 diff --git a/Skins/prezes - Copy/selection-selectoptions.png b/Skins/prezes - Copy/selection-selectoptions.png new file mode 100644 index 00000000..038d6d8e --- /dev/null +++ b/Skins/prezes - Copy/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e6c080739692e511f0cd8a6063866340d8f9978a6f1563cc45c0391a2c58cc +size 7308 diff --git a/Skins/prezes - Copy/selection-tab.png b/Skins/prezes - Copy/selection-tab.png new file mode 100644 index 00000000..a35bf13f --- /dev/null +++ b/Skins/prezes - Copy/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb5ba814f28906665ff0918c3dae701b1461cf11d9535f96aa410ab427db79b +size 1884 diff --git a/Skins/prezes - Copy/shutter.ogg b/Skins/prezes - Copy/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/skin.ini b/Skins/prezes - Copy/skin.ini new file mode 100644 index 00000000..3dd4505a --- /dev/null +++ b/Skins/prezes - Copy/skin.ini @@ -0,0 +1,24 @@ +[General] +Name: prezes red +// polska podziemna maliszewski mix pozdrawiam rebella i niko +Version: latest +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 + +[Colours] +SliderBorder: 60,60,60 +SliderTrackOverride: 0,0,0 +Combo1: 255,102,102 +Combo2: 255,153,153 +Combo3: 255,204,204 +SongSelectActiveText: 255,153,153 +SongSelectInactiveText: 255,153,153 + +[Fonts] +ScoreOverlap: 0 +ScorePrefix: score +ComboOverlap: 0 +HitCircleOverlap: 20 + + diff --git a/Skins/prezes - Copy/sliderb.png b/Skins/prezes - Copy/sliderb.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes - Copy/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes - Copy/sliderb@2x.png b/Skins/prezes - Copy/sliderb@2x.png new file mode 100644 index 00000000..b1504a18 --- /dev/null +++ b/Skins/prezes - Copy/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ac739f478cc6d9e64c3a4071ba5fbfb7c5e05c48a6bda234f149e2fc300a7e +size 5675 diff --git a/Skins/prezes - Copy/sliderendcircle.png b/Skins/prezes - Copy/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes - Copy/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes - Copy/sliderfollowcircle.png b/Skins/prezes - Copy/sliderfollowcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/sliderscorepoint.png b/Skins/prezes - Copy/sliderscorepoint.png new file mode 100644 index 00000000..c39cb2e1 --- /dev/null +++ b/Skins/prezes - Copy/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72f25f445940b166868007fd83eba1117812b907b5c58bcd8cc9014715c6afc +size 5091 diff --git a/Skins/prezes - Copy/soft-hitclap.wav b/Skins/prezes - Copy/soft-hitclap.wav new file mode 100644 index 00000000..a599636b --- /dev/null +++ b/Skins/prezes - Copy/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b85e7b8c41153eefdd3cd543fe992310638f973eb6fd79af842bdb184dd90122 +size 4436 diff --git a/Skins/prezes - Copy/soft-hitfinish.ogg b/Skins/prezes - Copy/soft-hitfinish.ogg new file mode 100644 index 00000000..115a6027 --- /dev/null +++ b/Skins/prezes - Copy/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850ed6f0b7aa2a2207a7f2072c204f1f4d8ecc8422a0be1af7c1697dd1a09927 +size 5763 diff --git a/Skins/prezes - Copy/soft-hitnormal.ogg b/Skins/prezes - Copy/soft-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes - Copy/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes - Copy/soft-hitwhistle.wav b/Skins/prezes - Copy/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes - Copy/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes - Copy/soft-sliderslide.ogg b/Skins/prezes - Copy/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/soft-slidertick.ogg b/Skins/prezes - Copy/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/soft-sliderwhistle.ogg b/Skins/prezes - Copy/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/spinner-approachcircle.png b/Skins/prezes - Copy/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/spinner-background.png b/Skins/prezes - Copy/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/spinner-circle@2x.png b/Skins/prezes - Copy/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/prezes - Copy/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/prezes - Copy/spinner-clear.png b/Skins/prezes - Copy/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/spinner-rpm.png b/Skins/prezes - Copy/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/spinner-spin.png b/Skins/prezes - Copy/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/spinnerbonus.ogg b/Skins/prezes - Copy/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/spinnerspin.ogg b/Skins/prezes - Copy/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes - Copy/star.png b/Skins/prezes - Copy/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes - Copy/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes - Copy/star2.png b/Skins/prezes - Copy/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes - Copy/star2@2x.png b/Skins/prezes - Copy/star2@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes - Copy/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes/Score-0@2x.png b/Skins/prezes/Score-0@2x.png new file mode 100644 index 00000000..9cd3963a --- /dev/null +++ b/Skins/prezes/Score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9ff35588b818a904422b136c94e8183a0dd5d6604f9e5af0dbc202d7347e45 +size 4787 diff --git a/Skins/prezes/Score-1@2x.png b/Skins/prezes/Score-1@2x.png new file mode 100644 index 00000000..92b1d95f --- /dev/null +++ b/Skins/prezes/Score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb837459da0a71ea721642f1542528dff9bd3323a20bc9642a91f36fa7ecf1d +size 4520 diff --git a/Skins/prezes/Score-2@2x.png b/Skins/prezes/Score-2@2x.png new file mode 100644 index 00000000..eef2b5e8 --- /dev/null +++ b/Skins/prezes/Score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3daee5b5eebb1725629e719964b859f6695fa1192369602e90b7b282b5deb2b +size 6056 diff --git a/Skins/prezes/Score-3@2x.png b/Skins/prezes/Score-3@2x.png new file mode 100644 index 00000000..95840a7c --- /dev/null +++ b/Skins/prezes/Score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25349b8a326ef088b831f3c2df5ad690c2e6a791d2f9992192107852d3940a3e +size 5578 diff --git a/Skins/prezes/Score-4@2x.png b/Skins/prezes/Score-4@2x.png new file mode 100644 index 00000000..baeae8b4 --- /dev/null +++ b/Skins/prezes/Score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc9e701986f6e718e1d55078a8b3330f94eca60703aea470537648070efb399c +size 5139 diff --git a/Skins/prezes/Score-5@2x.png b/Skins/prezes/Score-5@2x.png new file mode 100644 index 00000000..44e622b5 --- /dev/null +++ b/Skins/prezes/Score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b402d802f3324d6f160842b06a0c66b0fe5ae0facc351dd5b677aa9027426b9 +size 5324 diff --git a/Skins/prezes/Score-6@2x.png b/Skins/prezes/Score-6@2x.png new file mode 100644 index 00000000..21aebd07 --- /dev/null +++ b/Skins/prezes/Score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa7a817766fee8e6b09f55daf2d24a5d8c198ce01b098e91173c2b609706eecb +size 5537 diff --git a/Skins/prezes/Score-7@2x.png b/Skins/prezes/Score-7@2x.png new file mode 100644 index 00000000..8f16241d --- /dev/null +++ b/Skins/prezes/Score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9901abf426c0777187edbef2a05ceb09075dfba70f675c3a251936cdeb6a936 +size 5730 diff --git a/Skins/prezes/Score-8@2x.png b/Skins/prezes/Score-8@2x.png new file mode 100644 index 00000000..cc1d4c6b --- /dev/null +++ b/Skins/prezes/Score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd2603936f48f459f0ca1c03dcf41125df847aab37107625c8319ee382226aa +size 5702 diff --git a/Skins/prezes/Score-9@2x.png b/Skins/prezes/Score-9@2x.png new file mode 100644 index 00000000..c2c2c448 --- /dev/null +++ b/Skins/prezes/Score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fee10d7e8b3fc1083eace9b6fdd1ceab6c78429ea2698be616564a4968c555a +size 5547 diff --git a/Skins/prezes/Score-comma@2x.png b/Skins/prezes/Score-comma@2x.png new file mode 100644 index 00000000..f41cd720 --- /dev/null +++ b/Skins/prezes/Score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34576e947c862d31a161033fe2854ed299ca3f2c208fa588c6faa5c8e50d3fc +size 4009 diff --git a/Skins/prezes/Score-percent@2x.png b/Skins/prezes/Score-percent@2x.png new file mode 100644 index 00000000..d3d096b2 --- /dev/null +++ b/Skins/prezes/Score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45c59f692945350caa5996b106e07b0e541487984b5782c53d42de7ab853303 +size 6358 diff --git a/Skins/prezes/applause.mp3 b/Skins/prezes/applause.mp3 new file mode 100644 index 00000000..aeb2d742 --- /dev/null +++ b/Skins/prezes/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f571204649b205de430776952a078b006405892f310bd6807e054dc454d783e +size 309464 diff --git a/Skins/prezes/approachcircle.png b/Skins/prezes/approachcircle.png new file mode 100644 index 00000000..8d7ca8db --- /dev/null +++ b/Skins/prezes/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d435ccbd1c44abab9d9b94ed850f80476d1bfc509b89031c8c94ae0edc4611c +size 14700 diff --git a/Skins/prezes/approachcircle@2x.png b/Skins/prezes/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/prezes/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/prezes/button-left.png b/Skins/prezes/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/button-middle.png b/Skins/prezes/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/button-right.png b/Skins/prezes/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/count1.png b/Skins/prezes/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/count2.png b/Skins/prezes/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/count3.png b/Skins/prezes/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/cursor-smoke.png b/Skins/prezes/cursor-smoke.png new file mode 100644 index 00000000..072c56dc --- /dev/null +++ b/Skins/prezes/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ce8c21a36db630ffafb9c05a78a911370fd199f6e2b7a5853e94b0cbcd32ed +size 2801 diff --git a/Skins/prezes/cursor.png b/Skins/prezes/cursor.png new file mode 100644 index 00000000..0ac7c315 --- /dev/null +++ b/Skins/prezes/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c728c0777f227ad6e0fde252848584787dd63a22acd661df2c88a3eb111bf6 +size 6899 diff --git a/Skins/prezes/cursortrail.png b/Skins/prezes/cursortrail.png new file mode 100644 index 00000000..0a140ab6 --- /dev/null +++ b/Skins/prezes/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3844738c6b2395743f8b9d71942aad8a5600e94479c20ce6d45b5e572d2b5795 +size 5680 diff --git a/Skins/prezes/default-0.png b/Skins/prezes/default-0.png new file mode 100644 index 00000000..64858f31 --- /dev/null +++ b/Skins/prezes/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbf5a57bc4ddb3c7c85f75f90f2843d6532459545610bf51f8eae5dce4c326b +size 5310 diff --git a/Skins/prezes/default-1.png b/Skins/prezes/default-1.png new file mode 100644 index 00000000..aa4f3307 --- /dev/null +++ b/Skins/prezes/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b2536e0af1f5632b841db73aec1136c9174cba10cb8303f0c0e065584fd19 +size 3645 diff --git a/Skins/prezes/default-2.png b/Skins/prezes/default-2.png new file mode 100644 index 00000000..55beb36f --- /dev/null +++ b/Skins/prezes/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829ca68fc1fc9e0aaba0f2f6d41a92adc9de6bf9c2511365ba70baa3d61790cb +size 5709 diff --git a/Skins/prezes/default-3.png b/Skins/prezes/default-3.png new file mode 100644 index 00000000..265b0dac --- /dev/null +++ b/Skins/prezes/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a098dfe1bf81dc21d017d8dfe5e944cd49c63208ddb5c032ce7f518cf208f5c6 +size 5741 diff --git a/Skins/prezes/default-4.png b/Skins/prezes/default-4.png new file mode 100644 index 00000000..9f003f7f --- /dev/null +++ b/Skins/prezes/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747a290ca5ee9b65839c3193176a8ce57d09382c974a609ee5148b688ddd550d +size 4796 diff --git a/Skins/prezes/default-5.png b/Skins/prezes/default-5.png new file mode 100644 index 00000000..2c1bf42f --- /dev/null +++ b/Skins/prezes/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab00a8ec33a6c69157bb68367aa74a27d34917a163c4d31429ab08a471ca688 +size 5492 diff --git a/Skins/prezes/default-6.png b/Skins/prezes/default-6.png new file mode 100644 index 00000000..7c18c2b4 --- /dev/null +++ b/Skins/prezes/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa75ef2541e3759644705f565ff2ac90184c37d83ef676b163ce380ed0c91ebd +size 5489 diff --git a/Skins/prezes/default-7.png b/Skins/prezes/default-7.png new file mode 100644 index 00000000..d018b09e --- /dev/null +++ b/Skins/prezes/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de8149971f96b584196147374f168bdfac4dca1b6d6b4485409df0026e181b7 +size 5107 diff --git a/Skins/prezes/default-8.png b/Skins/prezes/default-8.png new file mode 100644 index 00000000..8d653450 --- /dev/null +++ b/Skins/prezes/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc23776e5e57efc3854b65b023f89dfb44dca2a9a1d44a6228e63cfabe832947 +size 5602 diff --git a/Skins/prezes/default-9.png b/Skins/prezes/default-9.png new file mode 100644 index 00000000..4a53267c --- /dev/null +++ b/Skins/prezes/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882725cf243743606128440651a4328157311def82fc00ea7415a38ccaf3d02e +size 5451 diff --git a/Skins/prezes/default-comma.png b/Skins/prezes/default-comma.png new file mode 100644 index 00000000..3b6e0669 --- /dev/null +++ b/Skins/prezes/default-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f2fbefae4f4920da6907f804fe0def6c1dc28ec5b9df9bda2c48f6a0d70a36 +size 3270 diff --git a/Skins/prezes/default-dot.png b/Skins/prezes/default-dot.png new file mode 100644 index 00000000..75793082 --- /dev/null +++ b/Skins/prezes/default-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f410a7e07284c1af0333ab04da39a388ed9e8f6df56406547c34d0c419daaa +size 3116 diff --git a/Skins/prezes/default-percent.png b/Skins/prezes/default-percent.png new file mode 100644 index 00000000..13738bf2 --- /dev/null +++ b/Skins/prezes/default-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0277c786118bc12571f9686fc19a952604433b5441f3dd2ebe1ef62f27f10e10 +size 5590 diff --git a/Skins/prezes/default-x.png b/Skins/prezes/default-x.png new file mode 100644 index 00000000..57409519 --- /dev/null +++ b/Skins/prezes/default-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f6ace6aba385ec929d69c4d3bf8d780036ddec7f101d9b2dcebc534abf5f01 +size 4714 diff --git a/Skins/prezes/drum-hitclap.ogg b/Skins/prezes/drum-hitclap.ogg new file mode 100644 index 00000000..f72b6ba6 --- /dev/null +++ b/Skins/prezes/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b855f7affaa94ea029d9244089de243682c5e670b34b2a8ea3a0f7e899db8fe +size 5151 diff --git a/Skins/prezes/drum-hitfinish.ogg b/Skins/prezes/drum-hitfinish.ogg new file mode 100644 index 00000000..f320932f --- /dev/null +++ b/Skins/prezes/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd88f8b4502908cff6252307a3952e8c908daa49cbcea95f5bbc48d28df7c4c +size 5763 diff --git a/Skins/prezes/drum-hitnormal.ogg b/Skins/prezes/drum-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes/drum-hitwhistle.wav b/Skins/prezes/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes/drum-sliderslide.ogg b/Skins/prezes/drum-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/drum-slidertick.ogg b/Skins/prezes/drum-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/drum-sliderwhistle.ogg b/Skins/prezes/drum-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/followpoint-0.png b/Skins/prezes/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes/followpoint-1.png b/Skins/prezes/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes/followpoint-11.png b/Skins/prezes/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/prezes/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/prezes/followpoint-12.png b/Skins/prezes/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/prezes/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/prezes/followpoint-13.png b/Skins/prezes/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/prezes/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/prezes/followpoint-14.png b/Skins/prezes/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/prezes/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/prezes/followpoint-15.png b/Skins/prezes/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/prezes/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/prezes/followpoint-16.png b/Skins/prezes/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/prezes/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/prezes/followpoint-17.png b/Skins/prezes/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/prezes/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/prezes/followpoint-18.png b/Skins/prezes/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/prezes/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/prezes/followpoint-19.png b/Skins/prezes/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/prezes/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/prezes/followpoint-2.png b/Skins/prezes/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/prezes/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/prezes/followpoint-20.png b/Skins/prezes/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/prezes/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/prezes/followpoint-21.png b/Skins/prezes/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/prezes/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/prezes/followpoint-22.png b/Skins/prezes/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/prezes/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/prezes/followpoint-23.png b/Skins/prezes/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/prezes/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/prezes/followpoint-3.png b/Skins/prezes/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/prezes/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/prezes/followpoint-4.png b/Skins/prezes/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes/followpoint-5.png b/Skins/prezes/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes/followpoint-6.png b/Skins/prezes/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes/followpoint-7.png b/Skins/prezes/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes/followpoint-8.png b/Skins/prezes/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes/followpoint-9.png b/Skins/prezes/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/prezes/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/prezes/followpoint.png b/Skins/prezes/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/prezes/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/prezes/go.png b/Skins/prezes/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/hit0-0.png b/Skins/prezes/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/prezes/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/prezes/hit0.png b/Skins/prezes/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/hit100-0.png b/Skins/prezes/hit100-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes/hit100.png b/Skins/prezes/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/hit100k-0.png b/Skins/prezes/hit100k-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/prezes/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/prezes/hit100k.png b/Skins/prezes/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/hit300.png b/Skins/prezes/hit300.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/hit300g.png b/Skins/prezes/hit300g.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/hit300k.png b/Skins/prezes/hit300k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/hit50-0.png b/Skins/prezes/hit50-0.png new file mode 100644 index 00000000..378cdf1e --- /dev/null +++ b/Skins/prezes/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1317680bf0c857731dbc67d8689fb11a031033ec4527ff1b25023e0ed4361 +size 1956 diff --git a/Skins/prezes/hit50.png b/Skins/prezes/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/hitcircle.png b/Skins/prezes/hitcircle.png new file mode 100644 index 00000000..8d6d9877 --- /dev/null +++ b/Skins/prezes/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc62e3351b2da3459ddb3d64fef3e14215836b1e55cced9a65e6fc5f8b5146a +size 7716 diff --git a/Skins/prezes/hitcircleoverlay@2x.png b/Skins/prezes/hitcircleoverlay@2x.png new file mode 100644 index 00000000..c091ca92 --- /dev/null +++ b/Skins/prezes/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9389187c584e8ffe1cb3aaf27e85a7ef21f877fb13fb3f012f6037b2ec465e +size 12219 diff --git a/Skins/prezes/inputoverlay-background.png b/Skins/prezes/inputoverlay-background.png new file mode 100644 index 00000000..faa8d637 --- /dev/null +++ b/Skins/prezes/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1c00c316056a6b1db2ae050db243344e6e1da6a106a8cf30a2658a8ae68147 +size 148 diff --git a/Skins/prezes/inputoverlay-key.png b/Skins/prezes/inputoverlay-key.png new file mode 100644 index 00000000..192e33f5 --- /dev/null +++ b/Skins/prezes/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94479ac8e798ff3c6431722e565c29914ad02ed3ee87c872ffb68625b6406b7 +size 1841 diff --git a/Skins/prezes/key-confirm.ogg b/Skins/prezes/key-confirm.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/key-delete.ogg b/Skins/prezes/key-delete.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/key-movement.ogg b/Skins/prezes/key-movement.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/key-press-1.ogg b/Skins/prezes/key-press-1.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/key-press-2.ogg b/Skins/prezes/key-press-2.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/key-press-3.ogg b/Skins/prezes/key-press-3.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/key-press-4.ogg b/Skins/prezes/key-press-4.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/menu-button-background.png b/Skins/prezes/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/prezes/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/prezes/nightcore-clap.ogg b/Skins/prezes/nightcore-clap.ogg new file mode 100644 index 00000000..a1cf7c71 --- /dev/null +++ b/Skins/prezes/nightcore-clap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8207912bc05bf89590d1c6bc2f3454ea5af65e36bd691d50a4859885cf8c72d +size 4465 diff --git a/Skins/prezes/nightcore-finish.ogg b/Skins/prezes/nightcore-finish.ogg new file mode 100644 index 00000000..458b08aa --- /dev/null +++ b/Skins/prezes/nightcore-finish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6aaa47cfd2b5d7d7648d67b57d626b0bd802abd8efe8ecaa34a44de6e8e387 +size 4465 diff --git a/Skins/prezes/nightcore-hat.ogg b/Skins/prezes/nightcore-hat.ogg new file mode 100644 index 00000000..953bfb1a --- /dev/null +++ b/Skins/prezes/nightcore-hat.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc445489d224cac39374676877ecba8a61695f0d7ef79b89c4d5fc0b833a0931 +size 4464 diff --git a/Skins/prezes/nightcore-kick.ogg b/Skins/prezes/nightcore-kick.ogg new file mode 100644 index 00000000..2de1425b --- /dev/null +++ b/Skins/prezes/nightcore-kick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e67f0f9850933b0cc1ec339ce9c14bb8c9952c2cf4fc4e182626cec3949b0e +size 4465 diff --git a/Skins/prezes/normal-hitclap.ogg b/Skins/prezes/normal-hitclap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/normal-hitfinish.ogg b/Skins/prezes/normal-hitfinish.ogg new file mode 100644 index 00000000..a44e5922 --- /dev/null +++ b/Skins/prezes/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7923246734d3e789070e853ae1755f0b7c3c9dd80a1326e82eec46f61c120195 +size 5970 diff --git a/Skins/prezes/normal-hitnormal.ogg b/Skins/prezes/normal-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes/normal-hitwhistle.ogg b/Skins/prezes/normal-hitwhistle.ogg new file mode 100644 index 00000000..db5b140b --- /dev/null +++ b/Skins/prezes/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c87455b018f84cc4c1d863919e0a327533f9ceff6f2dc2ba049ecb74b38903c8 +size 15353 diff --git a/Skins/prezes/normal-hitwhistle.wav b/Skins/prezes/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes/normal-sliderslide.ogg b/Skins/prezes/normal-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/normal-slidertick.ogg b/Skins/prezes/normal-slidertick.ogg new file mode 100644 index 00000000..a3dd50db --- /dev/null +++ b/Skins/prezes/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941388fc58f94fc256f34db8c0a72b726fc5de11285ca2d6cbbbc5e662da668f +size 5851 diff --git a/Skins/prezes/normal-sliderwhistle.ogg b/Skins/prezes/normal-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/pause-back.png b/Skins/prezes/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/prezes/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/prezes/pause-continue.png b/Skins/prezes/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/prezes/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/prezes/pause-replay.png b/Skins/prezes/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/prezes/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/prezes/pause-retry.png b/Skins/prezes/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/prezes/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/prezes/play-skip.png b/Skins/prezes/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/play-unranked.png b/Skins/prezes/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/play-warningarrow.png b/Skins/prezes/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/prezes/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/prezes/ranking-A-small.png b/Skins/prezes/ranking-A-small.png new file mode 100644 index 00000000..1f031d7c --- /dev/null +++ b/Skins/prezes/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50870a7551614721716fcdf59901a1b7c5320ae83ba6a0f34b55d2a899a5adcf +size 4703 diff --git a/Skins/prezes/ranking-B-small.png b/Skins/prezes/ranking-B-small.png new file mode 100644 index 00000000..47cbeb6c --- /dev/null +++ b/Skins/prezes/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febbeb30e8b5e76cf402a997797edfa35faa35aa8308ab7eb822a91a0daa9410 +size 4490 diff --git a/Skins/prezes/ranking-C-small.png b/Skins/prezes/ranking-C-small.png new file mode 100644 index 00000000..741b51fd --- /dev/null +++ b/Skins/prezes/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241c1833fc5daf588ebaab8e1e487d30e1670065a4eee5f633d2dbf1aedaec06 +size 4555 diff --git a/Skins/prezes/ranking-D-small.png b/Skins/prezes/ranking-D-small.png new file mode 100644 index 00000000..4dd50ac2 --- /dev/null +++ b/Skins/prezes/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60553c613ebb581bfc535daaa805c3250c753ec2ce6e13e8c07444c73e8c14 +size 4365 diff --git a/Skins/prezes/ranking-S-small.png b/Skins/prezes/ranking-S-small.png new file mode 100644 index 00000000..46824491 --- /dev/null +++ b/Skins/prezes/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b57053a2015070c2e7d305f50e15368eeb311acad7c7be4eb7a1c4fa5f2af3 +size 4768 diff --git a/Skins/prezes/ranking-SH-small.png b/Skins/prezes/ranking-SH-small.png new file mode 100644 index 00000000..9874a6eb --- /dev/null +++ b/Skins/prezes/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dfd8fd78d8b2a32b7992cf987cc0dd8b86cdfb46c1fd9286379c658e7219a3 +size 4547 diff --git a/Skins/prezes/ranking-X-small.png b/Skins/prezes/ranking-X-small.png new file mode 100644 index 00000000..6401b38b --- /dev/null +++ b/Skins/prezes/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc163849993b7a223529b496163782fe172f9c1e5fb4585973260eb3618b1744 +size 5563 diff --git a/Skins/prezes/ranking-XH-small.png b/Skins/prezes/ranking-XH-small.png new file mode 100644 index 00000000..2e6a8046 --- /dev/null +++ b/Skins/prezes/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b002b5c666212d5e7435332ac24f6c0e354666e9f69e13ecb41d7ace30dd0a +size 5313 diff --git a/Skins/prezes/ranking-accuracy.png b/Skins/prezes/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes/ranking-graph.png b/Skins/prezes/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/prezes/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/prezes/ranking-graph@2x.png b/Skins/prezes/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/prezes/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/prezes/ranking-maxcombo.png b/Skins/prezes/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/prezes/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/prezes/ranking-panel.png b/Skins/prezes/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/prezes/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/prezes/ranking-panel@2x.png b/Skins/prezes/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/prezes/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/prezes/ranking-perfect.png b/Skins/prezes/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes/ranking-title.png b/Skins/prezes/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes/ranking-winner.png b/Skins/prezes/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes/ready.png b/Skins/prezes/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/readys.ogg b/Skins/prezes/readys.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/reversearrow@2x.png b/Skins/prezes/reversearrow@2x.png new file mode 100644 index 00000000..c43eefd2 --- /dev/null +++ b/Skins/prezes/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75207941e4314a98129cd0c54492c176cd56390e3019a9e12a3ba93547c58a5 +size 16861 diff --git a/Skins/prezes/score-percent.png b/Skins/prezes/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/score-x.png b/Skins/prezes/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/score-x@2x.png b/Skins/prezes/score-x@2x.png new file mode 100644 index 00000000..204e1d32 --- /dev/null +++ b/Skins/prezes/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c81714a5f028ec516d58fa2431b2f9c0622dfff7ff1d31dc911d69b00276524 +size 5041 diff --git a/Skins/prezes/scorebar-bg.png b/Skins/prezes/scorebar-bg.png new file mode 100644 index 00000000..58406986 --- /dev/null +++ b/Skins/prezes/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c918577a6c30740788ca3e8b1808f125a23a464f770181099975e608dcf723b +size 73994 diff --git a/Skins/prezes/scorebar-colour.png b/Skins/prezes/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/scorebar-marker.png b/Skins/prezes/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/scoreentry-comma.png b/Skins/prezes/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes/scoreentry-dot.png b/Skins/prezes/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/prezes/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/prezes/scoreentry-percent.png b/Skins/prezes/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/scoreentry-x.png b/Skins/prezes/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/selection-mod-autoplay@2x.png b/Skins/prezes/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..ed189d6e --- /dev/null +++ b/Skins/prezes/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d16303be865ce02feede1845dcdefbc115f2f9fbd8b3dc3baff1ba650997724 +size 13667 diff --git a/Skins/prezes/selection-mod-cinema@2x.png b/Skins/prezes/selection-mod-cinema@2x.png new file mode 100644 index 00000000..db84c414 --- /dev/null +++ b/Skins/prezes/selection-mod-cinema@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45df8def051cfbbb31115a28ab9c02c0a20bd8b426f19900f337a7816acfebd6 +size 22259 diff --git a/Skins/prezes/selection-mod-doubletime@2x.png b/Skins/prezes/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6f471799 --- /dev/null +++ b/Skins/prezes/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b579edd7458a28dc8063e5ab01ce9be32ee0dd94388aad6f2c0189ac216c3c +size 21202 diff --git a/Skins/prezes/selection-mod-easy@2x.png b/Skins/prezes/selection-mod-easy@2x.png new file mode 100644 index 00000000..52fa94c8 --- /dev/null +++ b/Skins/prezes/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb4dadafd8964a3bfd702763cf675917453afe4dc3a4abafe72896beb02e7bc +size 13043 diff --git a/Skins/prezes/selection-mod-flashlight@2x.png b/Skins/prezes/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..bd178b55 --- /dev/null +++ b/Skins/prezes/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bf5cc4153a4c77e1eb4208c7ef6020e47c49fcb014567139dc3e79be3f5900 +size 15503 diff --git a/Skins/prezes/selection-mod-halftime@2x.png b/Skins/prezes/selection-mod-halftime@2x.png new file mode 100644 index 00000000..595b8452 --- /dev/null +++ b/Skins/prezes/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f8a011ceb3082ee82f0ea40d2750cab07ba3e066208f28f62fd56d62551d70 +size 12853 diff --git a/Skins/prezes/selection-mod-hardrock@2x.png b/Skins/prezes/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..d78a8b5c --- /dev/null +++ b/Skins/prezes/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2398e0471f2ad18083bad94f1d78c5ddccdb24a9d44586bcda0ea23551cc3e +size 17560 diff --git a/Skins/prezes/selection-mod-hidden@2x.png b/Skins/prezes/selection-mod-hidden@2x.png new file mode 100644 index 00000000..b4cbf002 --- /dev/null +++ b/Skins/prezes/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e0c218610a22452283aeb7976391cb6164f9a69f454736bea7a42dc9763ac4 +size 22127 diff --git a/Skins/prezes/selection-mod-nightcore@2x.png b/Skins/prezes/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..aeaba637 --- /dev/null +++ b/Skins/prezes/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876ba95cb756fa07b2920afde80b3c13a1c1afab29eed2d95c3658e92daccab5 +size 16358 diff --git a/Skins/prezes/selection-mod-nofail@2x.png b/Skins/prezes/selection-mod-nofail@2x.png new file mode 100644 index 00000000..7812d0f7 --- /dev/null +++ b/Skins/prezes/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e50c010bc36bcbd5feee98ae3808425482715ddb4954364891e21468513842 +size 20945 diff --git a/Skins/prezes/selection-mod-perfect@2x.png b/Skins/prezes/selection-mod-perfect@2x.png new file mode 100644 index 00000000..1fadb52f --- /dev/null +++ b/Skins/prezes/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8e6fa28838f08e3b9768642aa3766e4f16d0800a242b6de2139006534d9592 +size 16077 diff --git a/Skins/prezes/selection-mod-relax2@2x.png b/Skins/prezes/selection-mod-relax2@2x.png new file mode 100644 index 00000000..4f87a207 --- /dev/null +++ b/Skins/prezes/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703d9ceb29648ae8ced917353b79c337a3bf384fc974176b2bbdeea979ba98f3 +size 17362 diff --git a/Skins/prezes/selection-mod-relax@2x.png b/Skins/prezes/selection-mod-relax@2x.png new file mode 100644 index 00000000..9ce08619 --- /dev/null +++ b/Skins/prezes/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b30631a4296e085afdeadb5d413ba489350078bb723af445d65931ad6d1e19 +size 13251 diff --git a/Skins/prezes/selection-mod-spunout@2x.png b/Skins/prezes/selection-mod-spunout@2x.png new file mode 100644 index 00000000..c902b31e --- /dev/null +++ b/Skins/prezes/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e98f9b2ea1464b96ae7d6ef6a375a6490d2e5473d08e61221a785c1a52e387 +size 19156 diff --git a/Skins/prezes/selection-mod-suddendeath@2x.png b/Skins/prezes/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..ca40518a --- /dev/null +++ b/Skins/prezes/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069e192fcfff644c94134100d1493c1b81c7f166a42db0d45c080fa938c9029c +size 22918 diff --git a/Skins/prezes/selection-mod-target@2x.png b/Skins/prezes/selection-mod-target@2x.png new file mode 100644 index 00000000..629cd028 --- /dev/null +++ b/Skins/prezes/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d502463c96d96daaf96e7d68276e209c4afe3a33d5289a6eca14280da5edf7ec +size 27959 diff --git a/Skins/prezes/selection-mode.png b/Skins/prezes/selection-mode.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes/selection-mods-over.png b/Skins/prezes/selection-mods-over.png new file mode 100644 index 00000000..b68deba2 --- /dev/null +++ b/Skins/prezes/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247c4032d4bceaf2c5bc380a6761583186916fe949438ab9cf5b31393e2345dc +size 16609 diff --git a/Skins/prezes/selection-mods.png b/Skins/prezes/selection-mods.png new file mode 100644 index 00000000..b937e7fa --- /dev/null +++ b/Skins/prezes/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9644f163ebb55787dd2dd976e51ede91efa9a4ce21a7665ca9e8d5b04d79bfb0 +size 7337 diff --git a/Skins/prezes/selection-options-over.png b/Skins/prezes/selection-options-over.png new file mode 100644 index 00000000..e760aeaf --- /dev/null +++ b/Skins/prezes/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6531c2c5723ea65d52661409c7949985b12d066990ec192a7b1937c9dee1079 +size 17478 diff --git a/Skins/prezes/selection-options.png b/Skins/prezes/selection-options.png new file mode 100644 index 00000000..2e0b74c2 --- /dev/null +++ b/Skins/prezes/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac6966279e9161e4707df554d0f1ec4a139c1577d74c33d1515bd1378d7e579 +size 7473 diff --git a/Skins/prezes/selection-random-over.png b/Skins/prezes/selection-random-over.png new file mode 100644 index 00000000..a1261c0b --- /dev/null +++ b/Skins/prezes/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2af8ae50ad9d8cbb42e1e0139af3cd685d5118b409a550b9ddf7702730502ef +size 17203 diff --git a/Skins/prezes/selection-random.png b/Skins/prezes/selection-random.png new file mode 100644 index 00000000..d21606ce --- /dev/null +++ b/Skins/prezes/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dec06d576cbb139d25c0a3186cafc903ae696575f81173bf00a42a85271d3fb +size 7125 diff --git a/Skins/prezes/selection-selectoptions-over.png b/Skins/prezes/selection-selectoptions-over.png new file mode 100644 index 00000000..294f8e15 --- /dev/null +++ b/Skins/prezes/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213f480c6712a87336599b9cc3cf7a31d68bb625369ffe46c2b13a6b42394c77 +size 17185 diff --git a/Skins/prezes/selection-selectoptions.png b/Skins/prezes/selection-selectoptions.png new file mode 100644 index 00000000..038d6d8e --- /dev/null +++ b/Skins/prezes/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e6c080739692e511f0cd8a6063866340d8f9978a6f1563cc45c0391a2c58cc +size 7308 diff --git a/Skins/prezes/selection-tab.png b/Skins/prezes/selection-tab.png new file mode 100644 index 00000000..a35bf13f --- /dev/null +++ b/Skins/prezes/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb5ba814f28906665ff0918c3dae701b1461cf11d9535f96aa410ab427db79b +size 1884 diff --git a/Skins/prezes/shutter.ogg b/Skins/prezes/shutter.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/skin.ini b/Skins/prezes/skin.ini new file mode 100644 index 00000000..d70c3317 --- /dev/null +++ b/Skins/prezes/skin.ini @@ -0,0 +1,24 @@ +[General] +Name: prezes +// polska podziemna maliszewski mix pozdrawiam rebella i niko +Version: latest +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 + +[Colours] +SliderBorder: 60,60,60 +SliderTrackOverride: 0,0,0 +Combo1: 255,102,102 +Combo2: 255,153,153 +Combo3: 255,204,204 +SongSelectActiveText: 255,153,153 +SongSelectInactiveText: 255,153,153 + +[Fonts] +ScoreOverlap: 0 +ScorePrefix: score +ComboOverlap: 0 +HitCircleOverlap: 20 + + diff --git a/Skins/prezes/sliderb.png b/Skins/prezes/sliderb.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes/sliderb@2x.png b/Skins/prezes/sliderb@2x.png new file mode 100644 index 00000000..b1504a18 --- /dev/null +++ b/Skins/prezes/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ac739f478cc6d9e64c3a4071ba5fbfb7c5e05c48a6bda234f149e2fc300a7e +size 5675 diff --git a/Skins/prezes/sliderendcircle.png b/Skins/prezes/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/prezes/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/prezes/sliderfollowcircle.png b/Skins/prezes/sliderfollowcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/sliderscorepoint.png b/Skins/prezes/sliderscorepoint.png new file mode 100644 index 00000000..c39cb2e1 --- /dev/null +++ b/Skins/prezes/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72f25f445940b166868007fd83eba1117812b907b5c58bcd8cc9014715c6afc +size 5091 diff --git a/Skins/prezes/soft-hitclap.wav b/Skins/prezes/soft-hitclap.wav new file mode 100644 index 00000000..a599636b --- /dev/null +++ b/Skins/prezes/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b85e7b8c41153eefdd3cd543fe992310638f973eb6fd79af842bdb184dd90122 +size 4436 diff --git a/Skins/prezes/soft-hitfinish.ogg b/Skins/prezes/soft-hitfinish.ogg new file mode 100644 index 00000000..115a6027 --- /dev/null +++ b/Skins/prezes/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850ed6f0b7aa2a2207a7f2072c204f1f4d8ecc8422a0be1af7c1697dd1a09927 +size 5763 diff --git a/Skins/prezes/soft-hitnormal.ogg b/Skins/prezes/soft-hitnormal.ogg new file mode 100644 index 00000000..5e4a7cc2 --- /dev/null +++ b/Skins/prezes/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a09435f14e397d4cee92b93da3d6b17c63d30f14d6469719cfef349b3b4fb8 +size 6379 diff --git a/Skins/prezes/soft-hitwhistle.wav b/Skins/prezes/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/prezes/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/prezes/soft-sliderslide.ogg b/Skins/prezes/soft-sliderslide.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/soft-slidertick.ogg b/Skins/prezes/soft-slidertick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/soft-sliderwhistle.ogg b/Skins/prezes/soft-sliderwhistle.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/spinner-approachcircle.png b/Skins/prezes/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/spinner-background.png b/Skins/prezes/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/spinner-circle@2x.png b/Skins/prezes/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/prezes/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/prezes/spinner-clear.png b/Skins/prezes/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/spinner-rpm.png b/Skins/prezes/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/spinner-spin.png b/Skins/prezes/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/spinnerbonus.ogg b/Skins/prezes/spinnerbonus.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/spinnerspin.ogg b/Skins/prezes/spinnerspin.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/prezes/star.png b/Skins/prezes/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/prezes/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/prezes/star2.png b/Skins/prezes/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/prezes/star2@2x.png b/Skins/prezes/star2@2x.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/prezes/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/rafis gothic hs/4K.ini b/Skins/rafis gothic hs/4K.ini new file mode 100644 index 00000000..7e996620 --- /dev/null +++ b/Skins/rafis gothic hs/4K.ini @@ -0,0 +1,18 @@ +//Mania skin config +ColumnLineWidth: 0.7 +ColumnStart: 136 +BarlineWidth: 1.2 +HitPosition: 402 +SpecialStyle: 0 +SpecialPositionLeft: 1 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +FontCombo: score +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +ColumnLine: 1,1,1,1,1 +//Colours +//images +//Keys diff --git a/Skins/rafis gothic hs/applause.ogg b/Skins/rafis gothic hs/applause.ogg new file mode 100644 index 00000000..09a8ff8d --- /dev/null +++ b/Skins/rafis gothic hs/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5967d4cc318aa10d37d0b94ca1059e7c54fd9e9a55a7bb90485ac48a9325dc45 +size 207301 diff --git a/Skins/rafis gothic hs/applause.sfk b/Skins/rafis gothic hs/applause.sfk new file mode 100644 index 00000000..d0ab92fa --- /dev/null +++ b/Skins/rafis gothic hs/applause.sfk @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd61899419fefe914c47412fb047dcf5766e647bd59c21ff445c319c9638fb64 +size 2016 diff --git a/Skins/rafis gothic hs/approachcircle.png b/Skins/rafis gothic hs/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/rafis gothic hs/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/rafis gothic hs/button-left.png b/Skins/rafis gothic hs/button-left.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/rafis gothic hs/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/rafis gothic hs/button-middle.png b/Skins/rafis gothic hs/button-middle.png new file mode 100644 index 00000000..ff6450e6 --- /dev/null +++ b/Skins/rafis gothic hs/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26d1b2213d058c494c0e45c54638a1d05345e9317eaefee2e964e0cd45ae2be +size 2811 diff --git a/Skins/rafis gothic hs/button-right.png b/Skins/rafis gothic hs/button-right.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/rafis gothic hs/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/rafis gothic hs/coin.png b/Skins/rafis gothic hs/coin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/coin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/coins-bg.png b/Skins/rafis gothic hs/coins-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/coins-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/coins-buy.png b/Skins/rafis gothic hs/coins-buy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/coins-buy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/coins-earn.ogg b/Skins/rafis gothic hs/coins-earn.ogg new file mode 100644 index 00000000..c003fffc --- /dev/null +++ b/Skins/rafis gothic hs/coins-earn.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bb73cd5332977dc570d6c9a272f8237f0dd17242da9e57ba96ea0a782abc87 +size 4426 diff --git a/Skins/rafis gothic hs/coins-recharge.ogg b/Skins/rafis gothic hs/coins-recharge.ogg new file mode 100644 index 00000000..a997049e --- /dev/null +++ b/Skins/rafis gothic hs/coins-recharge.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb398a9eabb4e0cad7fc47335b0699c9198039f6e8dd3efb54927b7df57cc36c +size 4426 diff --git a/Skins/rafis gothic hs/coins-use.ogg b/Skins/rafis gothic hs/coins-use.ogg new file mode 100644 index 00000000..bbb5539b --- /dev/null +++ b/Skins/rafis gothic hs/coins-use.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b935490a33baff880be00a7b2e6f08b353b4869ad43a060bda2866c9dcd71b8d +size 4426 diff --git a/Skins/rafis gothic hs/coins.png b/Skins/rafis gothic hs/coins.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/coins.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/combobreak.mp3 b/Skins/rafis gothic hs/combobreak.mp3 new file mode 100644 index 00000000..fbab7fbc --- /dev/null +++ b/Skins/rafis gothic hs/combobreak.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c72afa38ecfd15afc50b24ea79a1c013ac9eafa3394f774efd229a5bad617f8 +size 8760 diff --git a/Skins/rafis gothic hs/comboburst.png b/Skins/rafis gothic hs/comboburst.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/rafis gothic hs/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/rafis gothic hs/count1.png b/Skins/rafis gothic hs/count1.png new file mode 100644 index 00000000..c26ec9e8 --- /dev/null +++ b/Skins/rafis gothic hs/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d00000e327042e5a22f066d622acb87a6900f1a83e58aecd2c66f8a8e4c10ea +size 17232 diff --git a/Skins/rafis gothic hs/count1s.ogg b/Skins/rafis gothic hs/count1s.ogg new file mode 100644 index 00000000..ad79a312 --- /dev/null +++ b/Skins/rafis gothic hs/count1s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b218483ecd7e1b99f908cf68482e485a7830bdaf27d17325a2064d6b333e5384 +size 4426 diff --git a/Skins/rafis gothic hs/count2.png b/Skins/rafis gothic hs/count2.png new file mode 100644 index 00000000..6409b082 --- /dev/null +++ b/Skins/rafis gothic hs/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593cd74803be2c97fe9f5eac38fc70fe397b3df4a99206f0f85c70d071e151ee +size 17232 diff --git a/Skins/rafis gothic hs/count2s.ogg b/Skins/rafis gothic hs/count2s.ogg new file mode 100644 index 00000000..b1d2c239 --- /dev/null +++ b/Skins/rafis gothic hs/count2s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b4326a552e47a5fbb8cebbf6d0f4c443caf043f020adae0b8d37e441911ff8 +size 4426 diff --git a/Skins/rafis gothic hs/count3.png b/Skins/rafis gothic hs/count3.png new file mode 100644 index 00000000..7bd2b02b --- /dev/null +++ b/Skins/rafis gothic hs/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf7ada11b48390117bc6f16c043e9939051dedcd7485f99d3a30f12582f2998 +size 17232 diff --git a/Skins/rafis gothic hs/count3s.ogg b/Skins/rafis gothic hs/count3s.ogg new file mode 100644 index 00000000..c537f8b3 --- /dev/null +++ b/Skins/rafis gothic hs/count3s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074c9e1f49202d170640348931591ecaa8a2de026bc017275c53aa1b6ceab485 +size 4426 diff --git a/Skins/rafis gothic hs/cursor.png b/Skins/rafis gothic hs/cursor.png new file mode 100644 index 00000000..2cfb2cea --- /dev/null +++ b/Skins/rafis gothic hs/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d811bfdffca5fe346d6fa459ff36c99645789a449e4e0628d17674b2ec9c92f +size 4704 diff --git a/Skins/rafis gothic hs/cursortail.png b/Skins/rafis gothic hs/cursortail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/cursortail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/cursortrail.png b/Skins/rafis gothic hs/cursortrail.png new file mode 100644 index 00000000..2aa9756c --- /dev/null +++ b/Skins/rafis gothic hs/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b49ad43bc70234d0ca5e58d93b729652a1deac8bc7a31abaf528b322236b626 +size 19154 diff --git a/Skins/rafis gothic hs/default-0.png b/Skins/rafis gothic hs/default-0.png new file mode 100644 index 00000000..27624edd --- /dev/null +++ b/Skins/rafis gothic hs/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc4def036c39e809e379945ac52f4f99a30203897e183b41e472b2b1c3aa4fe +size 3484 diff --git a/Skins/rafis gothic hs/default-1.png b/Skins/rafis gothic hs/default-1.png new file mode 100644 index 00000000..c184981f --- /dev/null +++ b/Skins/rafis gothic hs/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b758e16afe0f6d3f407d675fc9d76c547769de8d8a94f8a0307c832bb8ad7165 +size 3280 diff --git a/Skins/rafis gothic hs/default-2.png b/Skins/rafis gothic hs/default-2.png new file mode 100644 index 00000000..bdf76f58 --- /dev/null +++ b/Skins/rafis gothic hs/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4553bc1813cd85bb0d69e2ded2bb9af633536ee2f2bdb1ccb9111dfddc1404 +size 3496 diff --git a/Skins/rafis gothic hs/default-3.png b/Skins/rafis gothic hs/default-3.png new file mode 100644 index 00000000..45b3c1e5 --- /dev/null +++ b/Skins/rafis gothic hs/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef2a217a3c5819bcc0cc312049bd4e474e5c157fb91dcbd7a269881335d9283 +size 3566 diff --git a/Skins/rafis gothic hs/default-4.png b/Skins/rafis gothic hs/default-4.png new file mode 100644 index 00000000..96080836 --- /dev/null +++ b/Skins/rafis gothic hs/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90ef9f12b4277ff478ef74e608e4f72d17a809001383ee5f21bb332b082d9a7 +size 3432 diff --git a/Skins/rafis gothic hs/default-5.png b/Skins/rafis gothic hs/default-5.png new file mode 100644 index 00000000..1a7a174c --- /dev/null +++ b/Skins/rafis gothic hs/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07702506d6a8410d0cff20017b2cb5ecc4cbc00b6f873ae7339cf906160f7daf +size 3502 diff --git a/Skins/rafis gothic hs/default-6.png b/Skins/rafis gothic hs/default-6.png new file mode 100644 index 00000000..563dc4d4 --- /dev/null +++ b/Skins/rafis gothic hs/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecd457f629831aee13730621cb5326725fae24096953af7829325d9452f525f +size 3583 diff --git a/Skins/rafis gothic hs/default-7.png b/Skins/rafis gothic hs/default-7.png new file mode 100644 index 00000000..62113658 --- /dev/null +++ b/Skins/rafis gothic hs/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53df1cac5168aeca35b8c1af169b20658ddf7eb069bf8b0dacdf1c94600603c1 +size 3383 diff --git a/Skins/rafis gothic hs/default-8.png b/Skins/rafis gothic hs/default-8.png new file mode 100644 index 00000000..51c83957 --- /dev/null +++ b/Skins/rafis gothic hs/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6600798637d63504fecd5ae6fdf80d3542971ae63c93fc3b361fa03aef28c08 +size 3600 diff --git a/Skins/rafis gothic hs/default-9.png b/Skins/rafis gothic hs/default-9.png new file mode 100644 index 00000000..42b08d9e --- /dev/null +++ b/Skins/rafis gothic hs/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fef48e315a38645ff14ea8b2dd08afee8bebf279fe310ff8a9382d047b033cd +size 3564 diff --git a/Skins/rafis gothic hs/drum-hitclap.wav b/Skins/rafis gothic hs/drum-hitclap.wav new file mode 100644 index 00000000..8e9f3126 --- /dev/null +++ b/Skins/rafis gothic hs/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea61f7ec53a293b864a7b9f39126f9ae7d137ddde2691ec331deeb444a455b0 +size 25928 diff --git a/Skins/rafis gothic hs/drum-hitfinish.wav b/Skins/rafis gothic hs/drum-hitfinish.wav new file mode 100644 index 00000000..f4b936f6 --- /dev/null +++ b/Skins/rafis gothic hs/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37af8f8a582066fab8ef5a241d6b4b058a15cc20be0e1dce1fca1d8bedb5a4a9 +size 14472 diff --git a/Skins/rafis gothic hs/drum-hitnormal.wav b/Skins/rafis gothic hs/drum-hitnormal.wav new file mode 100644 index 00000000..4699c6d9 --- /dev/null +++ b/Skins/rafis gothic hs/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d24d47ce75ef4556ce3d6b3aa709667734a5e920f908edcb046985a2a43da9 +size 29352 diff --git a/Skins/rafis gothic hs/drum-hitwhistle.wav b/Skins/rafis gothic hs/drum-hitwhistle.wav new file mode 100644 index 00000000..c24c7f0c --- /dev/null +++ b/Skins/rafis gothic hs/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b188c0119b2d7426b46b07d60c7b600030368640670c9a7ec0359b4afa681cd3 +size 120330 diff --git a/Skins/rafis gothic hs/failsound.ogg b/Skins/rafis gothic hs/failsound.ogg new file mode 100644 index 00000000..4fe160c6 --- /dev/null +++ b/Skins/rafis gothic hs/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d7278404437fab0e8146f5949186b7bf0b499182f54617609cdf012d496cf4 +size 44902 diff --git a/Skins/rafis gothic hs/followpoint-0.png b/Skins/rafis gothic hs/followpoint-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/rafis gothic hs/followpoint-1.png b/Skins/rafis gothic hs/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/followpoint-2.png b/Skins/rafis gothic hs/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/followpoint-3.png b/Skins/rafis gothic hs/followpoint-3.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/rafis gothic hs/followpoint-4.png b/Skins/rafis gothic hs/followpoint-4.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/rafis gothic hs/followpoint-5.png b/Skins/rafis gothic hs/followpoint-5.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/rafis gothic hs/followpoint-6.png b/Skins/rafis gothic hs/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/followpoint-7.png b/Skins/rafis gothic hs/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/followpoint-8.png b/Skins/rafis gothic hs/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/followpoint-9.png b/Skins/rafis gothic hs/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/followpoint.png b/Skins/rafis gothic hs/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/rafis gothic hs/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/rafis gothic hs/go.png b/Skins/rafis gothic hs/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis gothic hs/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis gothic hs/gos.ogg b/Skins/rafis gothic hs/gos.ogg new file mode 100644 index 00000000..4d4118d0 --- /dev/null +++ b/Skins/rafis gothic hs/gos.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984bb54cb198ef4bb12b81b2861643990f1cfbc3053ecbf84276c1d577c41421 +size 4426 diff --git a/Skins/rafis gothic hs/hit0.png b/Skins/rafis gothic hs/hit0.png new file mode 100644 index 00000000..5234ccdc --- /dev/null +++ b/Skins/rafis gothic hs/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4cd4105f144f84a339d748422a71a5d69ff9ae122e1b284e804f2387a7892b +size 68458 diff --git a/Skins/rafis gothic hs/hit100-0.png b/Skins/rafis gothic hs/hit100-0.png new file mode 100644 index 00000000..eda5d98a --- /dev/null +++ b/Skins/rafis gothic hs/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9ab2c0af54c94e53b3e828ebbb24340833bb38daea49ddc2ef89866fa660f5 +size 7031 diff --git a/Skins/rafis gothic hs/hit100-0@2x.png b/Skins/rafis gothic hs/hit100-0@2x.png new file mode 100644 index 00000000..7086fc9d --- /dev/null +++ b/Skins/rafis gothic hs/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1926c7306214d4dc4a866e9a4c0c1c79e2725b135de3f9a3045566b9be9a5191 +size 6643 diff --git a/Skins/rafis gothic hs/hit100.png b/Skins/rafis gothic hs/hit100.png new file mode 100644 index 00000000..34d04279 --- /dev/null +++ b/Skins/rafis gothic hs/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9cc41ce28e07e020920b7924731cfafbca1921004e9640e5002493238bd2f1a +size 10869 diff --git a/Skins/rafis gothic hs/hit100@2x.png b/Skins/rafis gothic hs/hit100@2x.png new file mode 100644 index 00000000..165e1352 --- /dev/null +++ b/Skins/rafis gothic hs/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bb8815e994d9919a5a94ef0ba18a5a4952814464bcb555cecf19af9c8ff49d +size 9905 diff --git a/Skins/rafis gothic hs/hit100k-0.png b/Skins/rafis gothic hs/hit100k-0.png new file mode 100644 index 00000000..2465b0f0 --- /dev/null +++ b/Skins/rafis gothic hs/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b21caa32c0e422170e9d9c8d1203780536db12f23c724b5f82912397bb15ede +size 8624 diff --git a/Skins/rafis gothic hs/hit100k-0@2x.png b/Skins/rafis gothic hs/hit100k-0@2x.png new file mode 100644 index 00000000..6fe97234 --- /dev/null +++ b/Skins/rafis gothic hs/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d2d65d765d7af47a87cd93106ef56033e146960ed490a738fd5a962e0bb837 +size 13252 diff --git a/Skins/rafis gothic hs/hit100k.png b/Skins/rafis gothic hs/hit100k.png new file mode 100644 index 00000000..51939af7 --- /dev/null +++ b/Skins/rafis gothic hs/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42c317d7e74c60ecd0d5ef8c1b493b94b6749e82d5466d6840073801f117ea9 +size 14781 diff --git a/Skins/rafis gothic hs/hit100k@2x.png b/Skins/rafis gothic hs/hit100k@2x.png new file mode 100644 index 00000000..2f07b86a --- /dev/null +++ b/Skins/rafis gothic hs/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0554d1f5f80c40db813f2e885d389c8451f5c042ea36b7a2d2aa33432e8ed3f7 +size 19758 diff --git a/Skins/rafis gothic hs/hit300-0.png b/Skins/rafis gothic hs/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis gothic hs/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis gothic hs/hit300.png b/Skins/rafis gothic hs/hit300.png new file mode 100644 index 00000000..bebee13d --- /dev/null +++ b/Skins/rafis gothic hs/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92a0efa1f778b60e87c45472aefff9eca355205f548c97922982369f4ca67f9 +size 15303 diff --git a/Skins/rafis gothic hs/hit300g-0.png b/Skins/rafis gothic hs/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis gothic hs/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis gothic hs/hit300g.png b/Skins/rafis gothic hs/hit300g.png new file mode 100644 index 00000000..06898bd1 --- /dev/null +++ b/Skins/rafis gothic hs/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9dce9a7b07b046e0339f3d42f6533d4c192a82152a35c8604a6ca2acce8139 +size 15303 diff --git a/Skins/rafis gothic hs/hit300k-0.png b/Skins/rafis gothic hs/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis gothic hs/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis gothic hs/hit300k.png b/Skins/rafis gothic hs/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/rafis gothic hs/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/rafis gothic hs/hit50-0.png b/Skins/rafis gothic hs/hit50-0.png new file mode 100644 index 00000000..f5de3be1 --- /dev/null +++ b/Skins/rafis gothic hs/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe50dfacb4417c86b90d55eab2defd2d639f2100a01f69478c674e9bbf5bb956 +size 6034 diff --git a/Skins/rafis gothic hs/hit50-0@2x.png b/Skins/rafis gothic hs/hit50-0@2x.png new file mode 100644 index 00000000..b088dfe1 --- /dev/null +++ b/Skins/rafis gothic hs/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dd52aac33996a5e10a5363e998e9c618c799e2f56b1ac3a061322a8116d9a1 +size 7141 diff --git a/Skins/rafis gothic hs/hit50.png b/Skins/rafis gothic hs/hit50.png new file mode 100644 index 00000000..6b37b8a6 --- /dev/null +++ b/Skins/rafis gothic hs/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca60c16158ac3d0236c313732b758acd99b0bd3f1e0d66a6dfdfb7fdaf677253 +size 8973 diff --git a/Skins/rafis gothic hs/hit50@2x.png b/Skins/rafis gothic hs/hit50@2x.png new file mode 100644 index 00000000..63298ee7 --- /dev/null +++ b/Skins/rafis gothic hs/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86411bd11e3ae0108701e2d3eaa4d208c894315e568b41329788c4d8ffcf6e3 +size 11102 diff --git a/Skins/rafis gothic hs/hitcircle - Kopie.png b/Skins/rafis gothic hs/hitcircle - Kopie.png new file mode 100644 index 00000000..58edacff --- /dev/null +++ b/Skins/rafis gothic hs/hitcircle - Kopie.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e081bcb246d426acaac852fa4a6cd05e5c6804989d0187301144679128d77ec +size 9659 diff --git a/Skins/rafis gothic hs/hitcircle.png b/Skins/rafis gothic hs/hitcircle.png new file mode 100644 index 00000000..e849c635 --- /dev/null +++ b/Skins/rafis gothic hs/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:518a3626c0f6fd1e1d2864762ac25935c8a171fa41b8c50f6741906da466cb15 +size 1013 diff --git a/Skins/rafis gothic hs/hitcircleoverlay.png b/Skins/rafis gothic hs/hitcircleoverlay.png new file mode 100644 index 00000000..30e20a5e --- /dev/null +++ b/Skins/rafis gothic hs/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01cbc7f664f3b04104e9567ee24007bdb79545f56f12e4e418bfee163178de53 +size 9038 diff --git a/Skins/rafis gothic hs/hitcircleoverlay@2x.png b/Skins/rafis gothic hs/hitcircleoverlay@2x.png new file mode 100644 index 00000000..e78a11d3 --- /dev/null +++ b/Skins/rafis gothic hs/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3839e9cf205a3f012ab26533532f389a5f01ea25916d13e07ba95f65adcb0954 +size 29442 diff --git a/Skins/rafis gothic hs/hitcircleselect.png b/Skins/rafis gothic hs/hitcircleselect.png new file mode 100644 index 00000000..016ce9fc --- /dev/null +++ b/Skins/rafis gothic hs/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d2d6ea62c23d370b06640e82c190d995ebdcd97a11d4daad2813630442d2d4 +size 6957 diff --git a/Skins/rafis gothic hs/hitcircleselect@2x.png b/Skins/rafis gothic hs/hitcircleselect@2x.png new file mode 100644 index 00000000..796fa239 --- /dev/null +++ b/Skins/rafis gothic hs/hitcircleselect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948dc3875aea0743ff0c5e79cc4dea2d38e73909620296371c52e341af91e05 +size 10181 diff --git a/Skins/rafis gothic hs/inputoverlay-background.png b/Skins/rafis gothic hs/inputoverlay-background.png new file mode 100644 index 00000000..98692fce --- /dev/null +++ b/Skins/rafis gothic hs/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd822d24a4078d4e6be438962e5e3314ad14386eeb702dda06e82e2ab7c219b2 +size 4154 diff --git a/Skins/rafis gothic hs/inputoverlay-background@2x.png b/Skins/rafis gothic hs/inputoverlay-background@2x.png new file mode 100644 index 00000000..1332731e --- /dev/null +++ b/Skins/rafis gothic hs/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e056f914e28bcd028beb496ca31b7e72922f611ff1eeca2a81733ca4b5d978 +size 6305 diff --git a/Skins/rafis gothic hs/inputoverlay-key.png b/Skins/rafis gothic hs/inputoverlay-key.png new file mode 100644 index 00000000..a01fd519 --- /dev/null +++ b/Skins/rafis gothic hs/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:828d7aad27269fca30a20348688f3d566793e971519c848779e92ef49fee7ee3 +size 3544 diff --git a/Skins/rafis gothic hs/inputoverlay-key@2x.png b/Skins/rafis gothic hs/inputoverlay-key@2x.png new file mode 100644 index 00000000..7dad1f1e --- /dev/null +++ b/Skins/rafis gothic hs/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe382682230bea874d70aa399f8df041c14f4fe20f4b8e21135b741f4d38d3a9 +size 4317 diff --git a/Skins/rafis gothic hs/menu-back-0.PNG b/Skins/rafis gothic hs/menu-back-0.PNG new file mode 100644 index 00000000..83987805 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-0.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f0728dfd1d6ff65af0523cca75ba66b6afa41d59cd7a69563182acf5a41913 +size 37465 diff --git a/Skins/rafis gothic hs/menu-back-0@2x.png b/Skins/rafis gothic hs/menu-back-0@2x.png new file mode 100644 index 00000000..bdd9b0cc --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd12daa1645b24c0071433023e757a23f07d245ecc7ff5e2c62021a181c8f1 +size 93326 diff --git a/Skins/rafis gothic hs/menu-back-1.PNG b/Skins/rafis gothic hs/menu-back-1.PNG new file mode 100644 index 00000000..83987805 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-1.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f0728dfd1d6ff65af0523cca75ba66b6afa41d59cd7a69563182acf5a41913 +size 37465 diff --git a/Skins/rafis gothic hs/menu-back-10.PNG b/Skins/rafis gothic hs/menu-back-10.PNG new file mode 100644 index 00000000..1f39c042 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-10.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be160ac49ce520fa6d43e4b46bed27e7102e176c4da22f69963627b7a330432a +size 37310 diff --git a/Skins/rafis gothic hs/menu-back-10@2x.png b/Skins/rafis gothic hs/menu-back-10@2x.png new file mode 100644 index 00000000..37965dbc --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce7114d78f876d57c55468d3e00638c9fddc0a2090e2aef2d37c2d4362676bc +size 93057 diff --git a/Skins/rafis gothic hs/menu-back-11.PNG b/Skins/rafis gothic hs/menu-back-11.PNG new file mode 100644 index 00000000..1f39c042 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-11.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be160ac49ce520fa6d43e4b46bed27e7102e176c4da22f69963627b7a330432a +size 37310 diff --git a/Skins/rafis gothic hs/menu-back-11@2x.png b/Skins/rafis gothic hs/menu-back-11@2x.png new file mode 100644 index 00000000..37965dbc --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce7114d78f876d57c55468d3e00638c9fddc0a2090e2aef2d37c2d4362676bc +size 93057 diff --git a/Skins/rafis gothic hs/menu-back-1@2x.png b/Skins/rafis gothic hs/menu-back-1@2x.png new file mode 100644 index 00000000..bdd9b0cc --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd12daa1645b24c0071433023e757a23f07d245ecc7ff5e2c62021a181c8f1 +size 93326 diff --git a/Skins/rafis gothic hs/menu-back-2.png b/Skins/rafis gothic hs/menu-back-2.png new file mode 100644 index 00000000..83987805 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f0728dfd1d6ff65af0523cca75ba66b6afa41d59cd7a69563182acf5a41913 +size 37465 diff --git a/Skins/rafis gothic hs/menu-back-2@2x.png b/Skins/rafis gothic hs/menu-back-2@2x.png new file mode 100644 index 00000000..bdd9b0cc --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd12daa1645b24c0071433023e757a23f07d245ecc7ff5e2c62021a181c8f1 +size 93326 diff --git a/Skins/rafis gothic hs/menu-back-3.PNG b/Skins/rafis gothic hs/menu-back-3.PNG new file mode 100644 index 00000000..282c2f31 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-3.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37882664ff7ea4e3c0ce5774c31ee0258cc730226801dd29aba7652e1040ab24 +size 37283 diff --git a/Skins/rafis gothic hs/menu-back-3@2x.png b/Skins/rafis gothic hs/menu-back-3@2x.png new file mode 100644 index 00000000..ec9a0e90 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbc6c28a8cc354c4aa61e26ed303bfbaf7440167ddab6a6369df494bb7f2c5b +size 93119 diff --git a/Skins/rafis gothic hs/menu-back-4.png b/Skins/rafis gothic hs/menu-back-4.png new file mode 100644 index 00000000..282c2f31 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37882664ff7ea4e3c0ce5774c31ee0258cc730226801dd29aba7652e1040ab24 +size 37283 diff --git a/Skins/rafis gothic hs/menu-back-4@2x.png b/Skins/rafis gothic hs/menu-back-4@2x.png new file mode 100644 index 00000000..ec9a0e90 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbc6c28a8cc354c4aa61e26ed303bfbaf7440167ddab6a6369df494bb7f2c5b +size 93119 diff --git a/Skins/rafis gothic hs/menu-back-5.PNG b/Skins/rafis gothic hs/menu-back-5.PNG new file mode 100644 index 00000000..282c2f31 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-5.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37882664ff7ea4e3c0ce5774c31ee0258cc730226801dd29aba7652e1040ab24 +size 37283 diff --git a/Skins/rafis gothic hs/menu-back-5@2x.png b/Skins/rafis gothic hs/menu-back-5@2x.png new file mode 100644 index 00000000..ec9a0e90 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbc6c28a8cc354c4aa61e26ed303bfbaf7440167ddab6a6369df494bb7f2c5b +size 93119 diff --git a/Skins/rafis gothic hs/menu-back-6.PNG b/Skins/rafis gothic hs/menu-back-6.PNG new file mode 100644 index 00000000..4c4f1312 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-6.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4aa52070a63e536bb797378354c01c0bcc6b415faafce38ca2a7ed3024e51 +size 37271 diff --git a/Skins/rafis gothic hs/menu-back-6@2x.png b/Skins/rafis gothic hs/menu-back-6@2x.png new file mode 100644 index 00000000..4992cecd --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dbf83d2f9bbf96629aeb19e3f89ca7373f2daf9bc9366bf8b83e040df7d5e4 +size 93082 diff --git a/Skins/rafis gothic hs/menu-back-7.PNG b/Skins/rafis gothic hs/menu-back-7.PNG new file mode 100644 index 00000000..4c4f1312 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-7.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4aa52070a63e536bb797378354c01c0bcc6b415faafce38ca2a7ed3024e51 +size 37271 diff --git a/Skins/rafis gothic hs/menu-back-7@2x.png b/Skins/rafis gothic hs/menu-back-7@2x.png new file mode 100644 index 00000000..4992cecd --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dbf83d2f9bbf96629aeb19e3f89ca7373f2daf9bc9366bf8b83e040df7d5e4 +size 93082 diff --git a/Skins/rafis gothic hs/menu-back-8.PNG b/Skins/rafis gothic hs/menu-back-8.PNG new file mode 100644 index 00000000..4c4f1312 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-8.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4aa52070a63e536bb797378354c01c0bcc6b415faafce38ca2a7ed3024e51 +size 37271 diff --git a/Skins/rafis gothic hs/menu-back-8@2x.png b/Skins/rafis gothic hs/menu-back-8@2x.png new file mode 100644 index 00000000..4992cecd --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dbf83d2f9bbf96629aeb19e3f89ca7373f2daf9bc9366bf8b83e040df7d5e4 +size 93082 diff --git a/Skins/rafis gothic hs/menu-back-9.PNG b/Skins/rafis gothic hs/menu-back-9.PNG new file mode 100644 index 00000000..1f39c042 --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-9.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be160ac49ce520fa6d43e4b46bed27e7102e176c4da22f69963627b7a330432a +size 37310 diff --git a/Skins/rafis gothic hs/menu-back-9@2x.png b/Skins/rafis gothic hs/menu-back-9@2x.png new file mode 100644 index 00000000..37965dbc --- /dev/null +++ b/Skins/rafis gothic hs/menu-back-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce7114d78f876d57c55468d3e00638c9fddc0a2090e2aef2d37c2d4362676bc +size 93057 diff --git a/Skins/rafis gothic hs/menu-background.jpg b/Skins/rafis gothic hs/menu-background.jpg new file mode 100644 index 00000000..d194201a --- /dev/null +++ b/Skins/rafis gothic hs/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15523f24ed453d1abd699ed2ef26ed49befb9a3e505f1f47e42640b4305a73d0 +size 435652 diff --git a/Skins/rafis gothic hs/menu-button-background.png b/Skins/rafis gothic hs/menu-button-background.png new file mode 100644 index 00000000..1ea6975e --- /dev/null +++ b/Skins/rafis gothic hs/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5153e4c598d4a29e9c42a7eb7210696c1759b010b27b4f03da60e840f8546c61 +size 18633 diff --git a/Skins/rafis gothic hs/menu-snow.png b/Skins/rafis gothic hs/menu-snow.png new file mode 100644 index 00000000..1a99fc1c --- /dev/null +++ b/Skins/rafis gothic hs/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d074942bd55ab12d342ede71123d4face48997afb14c895e8c0aa9331817a830 +size 6570 diff --git a/Skins/rafis gothic hs/menu-snow@2x.png b/Skins/rafis gothic hs/menu-snow@2x.png new file mode 100644 index 00000000..7486006b --- /dev/null +++ b/Skins/rafis gothic hs/menu-snow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4f68274d893821a0de6a604c4759eca03270efcb9cbdfa244d0dae4cec023 +size 8157 diff --git a/Skins/rafis gothic hs/menuback.ogg b/Skins/rafis gothic hs/menuback.ogg new file mode 100644 index 00000000..63636a12 --- /dev/null +++ b/Skins/rafis gothic hs/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89457cfba16f8e37edf826a00b03024b0e15da6432dce485d60863c99f0f473 +size 5118 diff --git a/Skins/rafis gothic hs/menuclick.ogg b/Skins/rafis gothic hs/menuclick.ogg new file mode 100644 index 00000000..e0e0d08d --- /dev/null +++ b/Skins/rafis gothic hs/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a1e7c1dc48306a57367bacd0940c01a89c32ed08d825f7673021793fee20a3 +size 3967 diff --git a/Skins/rafis gothic hs/menuhit.ogg b/Skins/rafis gothic hs/menuhit.ogg new file mode 100644 index 00000000..b6270d1c --- /dev/null +++ b/Skins/rafis gothic hs/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da40ab88658dafbcd63f4e30aaf7e883be40c042de374a2e3e2747eb828dc5c0 +size 4784 diff --git a/Skins/rafis gothic hs/normal-hitclap.wav b/Skins/rafis gothic hs/normal-hitclap.wav new file mode 100644 index 00000000..8be061fb --- /dev/null +++ b/Skins/rafis gothic hs/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c99ecde3609fc798bab4d3c626f90081c90e60aa773ac1334bfb811986d4bf07 +size 107720 diff --git a/Skins/rafis gothic hs/normal-hitfinish.wav b/Skins/rafis gothic hs/normal-hitfinish.wav new file mode 100644 index 00000000..f4b936f6 --- /dev/null +++ b/Skins/rafis gothic hs/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37af8f8a582066fab8ef5a241d6b4b058a15cc20be0e1dce1fca1d8bedb5a4a9 +size 14472 diff --git a/Skins/rafis gothic hs/normal-hitnormal.wav b/Skins/rafis gothic hs/normal-hitnormal.wav new file mode 100644 index 00000000..4cfafa15 --- /dev/null +++ b/Skins/rafis gothic hs/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab08fe9860575030ae63ce123ee1db09413347127b8be4b559134ea53c43d76 +size 106526 diff --git a/Skins/rafis gothic hs/normal-hitwhistle.wav b/Skins/rafis gothic hs/normal-hitwhistle.wav new file mode 100644 index 00000000..e7d9ff8e --- /dev/null +++ b/Skins/rafis gothic hs/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8898f6f739ede3b4754b7edfc1af039b6e6dcfbf739ec547b8245001324b1940 +size 34348 diff --git a/Skins/rafis gothic hs/pause-back.png b/Skins/rafis gothic hs/pause-back.png new file mode 100644 index 00000000..72dc34eb --- /dev/null +++ b/Skins/rafis gothic hs/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab410942cd87d21f86ce16a42e6d92d3ac51aa5007ed0540e0bea9738ab621bf +size 201453 diff --git a/Skins/rafis gothic hs/pause-continue.png b/Skins/rafis gothic hs/pause-continue.png new file mode 100644 index 00000000..d00fc2d3 --- /dev/null +++ b/Skins/rafis gothic hs/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09be14408ea61690e593d76037a1c351ea129888fef4524330ac78f5a6a4ae9e +size 201437 diff --git a/Skins/rafis gothic hs/pause-overlay.png b/Skins/rafis gothic hs/pause-overlay.png new file mode 100644 index 00000000..73ea9bc7 --- /dev/null +++ b/Skins/rafis gothic hs/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7346e1f433d34ee96637f40548fc7b0064d916c2f8d2f87981f17197c14138 +size 2575414 diff --git a/Skins/rafis gothic hs/pause-replay.png b/Skins/rafis gothic hs/pause-replay.png new file mode 100644 index 00000000..12516c47 --- /dev/null +++ b/Skins/rafis gothic hs/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab0e01e3ac4f71b7683c136dce2d9956f986ac6ffd8fc8310fcce541ec842fd +size 10773 diff --git a/Skins/rafis gothic hs/pause-replay@2x.png b/Skins/rafis gothic hs/pause-replay@2x.png new file mode 100644 index 00000000..2ff6687a --- /dev/null +++ b/Skins/rafis gothic hs/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e737feb07fd2c5e915b3bb24e50af36104cb06d6d644249e967f25a131fc162 +size 16969 diff --git a/Skins/rafis gothic hs/pause-retry.png b/Skins/rafis gothic hs/pause-retry.png new file mode 100644 index 00000000..e1975c95 --- /dev/null +++ b/Skins/rafis gothic hs/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76f9fa46d46d2616503986ed09bc8a2b85fe212801c1b09878443ef146f57cc +size 201425 diff --git a/Skins/rafis gothic hs/play-skip-0.png b/Skins/rafis gothic hs/play-skip-0.png new file mode 100644 index 00000000..7a4ac870 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac945a4f1cb79142fcfb9203f5611c5e4dd6c50f5976a79826bcdb7d09315a10 +size 168253 diff --git a/Skins/rafis gothic hs/play-skip-0@2x.png b/Skins/rafis gothic hs/play-skip-0@2x.png new file mode 100644 index 00000000..b935fe57 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77903dd47078efb8ef1e527a2db1d4d19d9de512399e7c54383d7c94e33be283 +size 400443 diff --git a/Skins/rafis gothic hs/play-skip-1.PNG b/Skins/rafis gothic hs/play-skip-1.PNG new file mode 100644 index 00000000..7b3c5a5d --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-1.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9cd0b361c8a68fb4070956903d71962d8f6486409e31183accd424af061b4f +size 169480 diff --git a/Skins/rafis gothic hs/play-skip-10.PNG b/Skins/rafis gothic hs/play-skip-10.PNG new file mode 100644 index 00000000..74325723 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-10.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a045048ef31ab9e6e14b9eba5342b981f5d1aeb3a7c521a4e6ae97c3247554 +size 169392 diff --git a/Skins/rafis gothic hs/play-skip-10@2x.png b/Skins/rafis gothic hs/play-skip-10@2x.png new file mode 100644 index 00000000..bf7448cc --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e551f9c79477ec0e415e005a5c038cebbc29ca6adca6683fe88699ff20018545 +size 400753 diff --git a/Skins/rafis gothic hs/play-skip-11.PNG b/Skins/rafis gothic hs/play-skip-11.PNG new file mode 100644 index 00000000..2a9d1c1f --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-11.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56b87c12a0c0a20615dfd21d43e7334f3abd873c94a7fceed76176bcd9431a0 +size 169427 diff --git a/Skins/rafis gothic hs/play-skip-11@2x.png b/Skins/rafis gothic hs/play-skip-11@2x.png new file mode 100644 index 00000000..c97f43f8 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eed75a5f9c54cd853f8551ae8c322fe2e87336571eb3d57856a508ba5804bba +size 400862 diff --git a/Skins/rafis gothic hs/play-skip-12.PNG b/Skins/rafis gothic hs/play-skip-12.PNG new file mode 100644 index 00000000..3c0e78c6 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-12.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423353d667c357dd602c76a8b79a56a7b85eb7fe1fc01c4c07f0e36743e51a66 +size 169593 diff --git a/Skins/rafis gothic hs/play-skip-12@2x.png b/Skins/rafis gothic hs/play-skip-12@2x.png new file mode 100644 index 00000000..11f57bd7 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfe5d63f150308f61148d4e980c922582523532241d243d8b9ef4915272639e +size 400819 diff --git a/Skins/rafis gothic hs/play-skip-13.png b/Skins/rafis gothic hs/play-skip-13.png new file mode 100644 index 00000000..90847447 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008a6ef149e2e1345cf58b863c79bf3d9a5804fb916fcffd881cbc3db04cf9dc +size 169661 diff --git a/Skins/rafis gothic hs/play-skip-13@2x.png b/Skins/rafis gothic hs/play-skip-13@2x.png new file mode 100644 index 00000000..ea552c9d --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff7a7583627157fe9a3f4fce1b131f584a01366286b78b699f6ad3849a3e896 +size 400751 diff --git a/Skins/rafis gothic hs/play-skip-14.png b/Skins/rafis gothic hs/play-skip-14.png new file mode 100644 index 00000000..877881cd --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389039ddd02cb72f7424601e9ac9811e7e7f5457b5753a8c8183ab8f1ce06fbf +size 170113 diff --git a/Skins/rafis gothic hs/play-skip-14@2x.png b/Skins/rafis gothic hs/play-skip-14@2x.png new file mode 100644 index 00000000..59f030c2 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d317a90b259adbc5f504444a779a393a523bacbf183e494fc64e5d004b6cb7 +size 401234 diff --git a/Skins/rafis gothic hs/play-skip-15.PNG b/Skins/rafis gothic hs/play-skip-15.PNG new file mode 100644 index 00000000..877881cd --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-15.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389039ddd02cb72f7424601e9ac9811e7e7f5457b5753a8c8183ab8f1ce06fbf +size 170113 diff --git a/Skins/rafis gothic hs/play-skip-15@2x.png b/Skins/rafis gothic hs/play-skip-15@2x.png new file mode 100644 index 00000000..59f030c2 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d317a90b259adbc5f504444a779a393a523bacbf183e494fc64e5d004b6cb7 +size 401234 diff --git a/Skins/rafis gothic hs/play-skip-16.PNG b/Skins/rafis gothic hs/play-skip-16.PNG new file mode 100644 index 00000000..877881cd --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-16.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389039ddd02cb72f7424601e9ac9811e7e7f5457b5753a8c8183ab8f1ce06fbf +size 170113 diff --git a/Skins/rafis gothic hs/play-skip-16@2x.png b/Skins/rafis gothic hs/play-skip-16@2x.png new file mode 100644 index 00000000..59f030c2 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d317a90b259adbc5f504444a779a393a523bacbf183e494fc64e5d004b6cb7 +size 401234 diff --git a/Skins/rafis gothic hs/play-skip-17.PNG b/Skins/rafis gothic hs/play-skip-17.PNG new file mode 100644 index 00000000..90847447 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-17.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008a6ef149e2e1345cf58b863c79bf3d9a5804fb916fcffd881cbc3db04cf9dc +size 169661 diff --git a/Skins/rafis gothic hs/play-skip-17@2x.png b/Skins/rafis gothic hs/play-skip-17@2x.png new file mode 100644 index 00000000..ea552c9d --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff7a7583627157fe9a3f4fce1b131f584a01366286b78b699f6ad3849a3e896 +size 400751 diff --git a/Skins/rafis gothic hs/play-skip-18.PNG b/Skins/rafis gothic hs/play-skip-18.PNG new file mode 100644 index 00000000..3c0e78c6 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-18.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423353d667c357dd602c76a8b79a56a7b85eb7fe1fc01c4c07f0e36743e51a66 +size 169593 diff --git a/Skins/rafis gothic hs/play-skip-18@2x.png b/Skins/rafis gothic hs/play-skip-18@2x.png new file mode 100644 index 00000000..11f57bd7 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfe5d63f150308f61148d4e980c922582523532241d243d8b9ef4915272639e +size 400819 diff --git a/Skins/rafis gothic hs/play-skip-19.PNG b/Skins/rafis gothic hs/play-skip-19.PNG new file mode 100644 index 00000000..2a9d1c1f --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-19.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56b87c12a0c0a20615dfd21d43e7334f3abd873c94a7fceed76176bcd9431a0 +size 169427 diff --git a/Skins/rafis gothic hs/play-skip-19@2x.png b/Skins/rafis gothic hs/play-skip-19@2x.png new file mode 100644 index 00000000..c97f43f8 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eed75a5f9c54cd853f8551ae8c322fe2e87336571eb3d57856a508ba5804bba +size 400862 diff --git a/Skins/rafis gothic hs/play-skip-1@2x.png b/Skins/rafis gothic hs/play-skip-1@2x.png new file mode 100644 index 00000000..559edeb6 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74b0e1b897b8afc8323597a4319db0812746e1286b8817454d5c1f71e8668e7 +size 401000 diff --git a/Skins/rafis gothic hs/play-skip-2.PNG b/Skins/rafis gothic hs/play-skip-2.PNG new file mode 100644 index 00000000..73fe7d53 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-2.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75c9c28cecc06eda638ac10597136f15d0b7530a45f36e22ade1f6e5ff3728 +size 170129 diff --git a/Skins/rafis gothic hs/play-skip-20.PNG b/Skins/rafis gothic hs/play-skip-20.PNG new file mode 100644 index 00000000..74325723 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-20.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a045048ef31ab9e6e14b9eba5342b981f5d1aeb3a7c521a4e6ae97c3247554 +size 169392 diff --git a/Skins/rafis gothic hs/play-skip-20@2x.png b/Skins/rafis gothic hs/play-skip-20@2x.png new file mode 100644 index 00000000..bf7448cc --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e551f9c79477ec0e415e005a5c038cebbc29ca6adca6683fe88699ff20018545 +size 400753 diff --git a/Skins/rafis gothic hs/play-skip-2@2x.png b/Skins/rafis gothic hs/play-skip-2@2x.png new file mode 100644 index 00000000..8af3cfa2 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60155863589ea3c35bf904201037db42c639d6ec28df0fb8407ddcf7b2a47779 +size 401192 diff --git a/Skins/rafis gothic hs/play-skip-3.PNG b/Skins/rafis gothic hs/play-skip-3.PNG new file mode 100644 index 00000000..5c2e984b --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-3.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ee6ee2e279cfd9335c9ffd4ee1e3387b638c95881cb1dc6f5aa9b9dc3683cb +size 170056 diff --git a/Skins/rafis gothic hs/play-skip-3@2x.png b/Skins/rafis gothic hs/play-skip-3@2x.png new file mode 100644 index 00000000..1901d9f6 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a092f4e658654e8ff643db7c6dce1fd9728be43864eab8da4b4de38c49f3e445 +size 401165 diff --git a/Skins/rafis gothic hs/play-skip-4.PNG b/Skins/rafis gothic hs/play-skip-4.PNG new file mode 100644 index 00000000..1500fd67 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-4.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8239c5dfa54785f630019f16ddbc29f674ac12c54102f29b97353730035783 +size 170198 diff --git a/Skins/rafis gothic hs/play-skip-4@2x.png b/Skins/rafis gothic hs/play-skip-4@2x.png new file mode 100644 index 00000000..edc9056b --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb9b2848044de4f1ec670ff656760794668e8d25c287b80fe0d8fbce971fc5d +size 401146 diff --git a/Skins/rafis gothic hs/play-skip-5.png b/Skins/rafis gothic hs/play-skip-5.png new file mode 100644 index 00000000..1500fd67 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8239c5dfa54785f630019f16ddbc29f674ac12c54102f29b97353730035783 +size 170198 diff --git a/Skins/rafis gothic hs/play-skip-5@2x.png b/Skins/rafis gothic hs/play-skip-5@2x.png new file mode 100644 index 00000000..edc9056b --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb9b2848044de4f1ec670ff656760794668e8d25c287b80fe0d8fbce971fc5d +size 401146 diff --git a/Skins/rafis gothic hs/play-skip-6.PNG b/Skins/rafis gothic hs/play-skip-6.PNG new file mode 100644 index 00000000..5c2e984b --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-6.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ee6ee2e279cfd9335c9ffd4ee1e3387b638c95881cb1dc6f5aa9b9dc3683cb +size 170056 diff --git a/Skins/rafis gothic hs/play-skip-6@2x.png b/Skins/rafis gothic hs/play-skip-6@2x.png new file mode 100644 index 00000000..1901d9f6 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a092f4e658654e8ff643db7c6dce1fd9728be43864eab8da4b4de38c49f3e445 +size 401165 diff --git a/Skins/rafis gothic hs/play-skip-7.png b/Skins/rafis gothic hs/play-skip-7.png new file mode 100644 index 00000000..73fe7d53 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75c9c28cecc06eda638ac10597136f15d0b7530a45f36e22ade1f6e5ff3728 +size 170129 diff --git a/Skins/rafis gothic hs/play-skip-7@2x.png b/Skins/rafis gothic hs/play-skip-7@2x.png new file mode 100644 index 00000000..8af3cfa2 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60155863589ea3c35bf904201037db42c639d6ec28df0fb8407ddcf7b2a47779 +size 401192 diff --git a/Skins/rafis gothic hs/play-skip-8.PNG b/Skins/rafis gothic hs/play-skip-8.PNG new file mode 100644 index 00000000..7b3c5a5d --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-8.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9cd0b361c8a68fb4070956903d71962d8f6486409e31183accd424af061b4f +size 169480 diff --git a/Skins/rafis gothic hs/play-skip-8@2x.png b/Skins/rafis gothic hs/play-skip-8@2x.png new file mode 100644 index 00000000..559edeb6 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74b0e1b897b8afc8323597a4319db0812746e1286b8817454d5c1f71e8668e7 +size 401000 diff --git a/Skins/rafis gothic hs/play-skip-9.PNG b/Skins/rafis gothic hs/play-skip-9.PNG new file mode 100644 index 00000000..7a4ac870 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-9.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac945a4f1cb79142fcfb9203f5611c5e4dd6c50f5976a79826bcdb7d09315a10 +size 168253 diff --git a/Skins/rafis gothic hs/play-skip-9@2x.png b/Skins/rafis gothic hs/play-skip-9@2x.png new file mode 100644 index 00000000..b935fe57 --- /dev/null +++ b/Skins/rafis gothic hs/play-skip-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77903dd47078efb8ef1e527a2db1d4d19d9de512399e7c54383d7c94e33be283 +size 400443 diff --git a/Skins/rafis gothic hs/play-unranked.png b/Skins/rafis gothic hs/play-unranked.png new file mode 100644 index 00000000..16bd9eb9 --- /dev/null +++ b/Skins/rafis gothic hs/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7354fb979b7e07973ed224085e1b6053fc334c2180ac3f59a77c60faad5b88 +size 9534 diff --git a/Skins/rafis gothic hs/play-unranked@2x.png b/Skins/rafis gothic hs/play-unranked@2x.png new file mode 100644 index 00000000..467eb22f --- /dev/null +++ b/Skins/rafis gothic hs/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b6b6b29b3d8258b9d8a8ee7d254a7002bb895aede2a3a7a3e178944cc7e793 +size 9859 diff --git a/Skins/rafis gothic hs/play-warningarrow.png b/Skins/rafis gothic hs/play-warningarrow.png new file mode 100644 index 00000000..1a2c72fe --- /dev/null +++ b/Skins/rafis gothic hs/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406c0c260958fa3a1e2a637605be042fe7d957c935f39532c7115738eedacd95 +size 3328 diff --git a/Skins/rafis gothic hs/play-warningarrow@2x.png b/Skins/rafis gothic hs/play-warningarrow@2x.png new file mode 100644 index 00000000..a852aa4b --- /dev/null +++ b/Skins/rafis gothic hs/play-warningarrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e264b76bb14ea8d07baf834d3620d8ca0eb7ecce28d8c1cf55f52578c0350c +size 3899 diff --git a/Skins/rafis gothic hs/playfield.png b/Skins/rafis gothic hs/playfield.png new file mode 100644 index 00000000..e7536edc --- /dev/null +++ b/Skins/rafis gothic hs/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc63421684b6d76baa4fcac4504204292b9ee1b052fa09ac45e174b9223a5ba8 +size 1112190 diff --git a/Skins/rafis gothic hs/playfield@2x.png b/Skins/rafis gothic hs/playfield@2x.png new file mode 100644 index 00000000..1721f0cf --- /dev/null +++ b/Skins/rafis gothic hs/playfield@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a40dcab4d8d66c62dd65f57a51070bf3965cdabf0bddbce6decd6a5750d123fb +size 2580036 diff --git a/Skins/rafis gothic hs/ranking-A-small.png b/Skins/rafis gothic hs/ranking-A-small.png new file mode 100644 index 00000000..4c84ce62 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f18dfac929985d55e3f50b1c4c7d52fcecd21f4d32640c9adc467c2c8f2b9498 +size 2037 diff --git a/Skins/rafis gothic hs/ranking-A-small@2x.png b/Skins/rafis gothic hs/ranking-A-small@2x.png new file mode 100644 index 00000000..b6141b3b --- /dev/null +++ b/Skins/rafis gothic hs/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49ee7e6985eb843740814c990ab2a1e422a28b0193b46cea9b6654aa6d6797f +size 28644 diff --git a/Skins/rafis gothic hs/ranking-A.png b/Skins/rafis gothic hs/ranking-A.png new file mode 100644 index 00000000..e3153813 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d813ccccb69adac6179c3c94f1e3cce7bc19b394d7acc3da735ffb45fc8ffaa +size 32249 diff --git a/Skins/rafis gothic hs/ranking-A@2x.png b/Skins/rafis gothic hs/ranking-A@2x.png new file mode 100644 index 00000000..c07a22c7 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70c7f0714da1e9724a659e0dc00b09a24756cc62b488f75d459accbf38b2fb5 +size 29424 diff --git a/Skins/rafis gothic hs/ranking-B-small.png b/Skins/rafis gothic hs/ranking-B-small.png new file mode 100644 index 00000000..394828c2 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c66e6bcf4f165039a0dbf4c57769ba75a521fcf8f383c1c76734b6955415d2 +size 2066 diff --git a/Skins/rafis gothic hs/ranking-B-small@2x.png b/Skins/rafis gothic hs/ranking-B-small@2x.png new file mode 100644 index 00000000..f51a915c --- /dev/null +++ b/Skins/rafis gothic hs/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4b23f9fba30f5bde8283384ee50c1904c17c0425385739938bd618618bd062 +size 28936 diff --git a/Skins/rafis gothic hs/ranking-B.png b/Skins/rafis gothic hs/ranking-B.png new file mode 100644 index 00000000..21841229 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cfa6ad1a229938992d5ef76f597bcae6232ed33713b661889171239d70e071d +size 34819 diff --git a/Skins/rafis gothic hs/ranking-B@2x.png b/Skins/rafis gothic hs/ranking-B@2x.png new file mode 100644 index 00000000..394c76a3 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f343de9aa42b5dd01894b17af1d364da6cc9123478757ba30b49aac417cc4f2 +size 35789 diff --git a/Skins/rafis gothic hs/ranking-C-small.png b/Skins/rafis gothic hs/ranking-C-small.png new file mode 100644 index 00000000..6e25fc40 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146697ce94485addae27085ac33b0970e879506d95fb209a04cbd127d96524c7 +size 1736 diff --git a/Skins/rafis gothic hs/ranking-C-small@2x.png b/Skins/rafis gothic hs/ranking-C-small@2x.png new file mode 100644 index 00000000..8438fdba --- /dev/null +++ b/Skins/rafis gothic hs/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a66710694d63a28ea6a8f45ed153773b5d80f53a9d90cecbe1de4443f7a3d6 +size 29139 diff --git a/Skins/rafis gothic hs/ranking-C.png b/Skins/rafis gothic hs/ranking-C.png new file mode 100644 index 00000000..66d1baae --- /dev/null +++ b/Skins/rafis gothic hs/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033238a9a177e5afd1b2b9bda5098c4fb3a6ffb1221b7ae0ddb42f474b8077bb +size 26350 diff --git a/Skins/rafis gothic hs/ranking-C@2x.png b/Skins/rafis gothic hs/ranking-C@2x.png new file mode 100644 index 00000000..2a97d6cb --- /dev/null +++ b/Skins/rafis gothic hs/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89565f3b2b84ceaaa28b812943997b1398ad60d0b2dd1407565ba35efeffca9 +size 29103 diff --git a/Skins/rafis gothic hs/ranking-D-small.png b/Skins/rafis gothic hs/ranking-D-small.png new file mode 100644 index 00000000..d0e2dd7a --- /dev/null +++ b/Skins/rafis gothic hs/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86a7200a56a3c5ea3a15d45353af48d01c0274f7810a086a0b169e428950a4e +size 2116 diff --git a/Skins/rafis gothic hs/ranking-D-small@2x.png b/Skins/rafis gothic hs/ranking-D-small@2x.png new file mode 100644 index 00000000..d2357bf9 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b687f3e9cd5f39b85a410f1555c63a3998356a3980b31902bec7a10bd0862b50 +size 29353 diff --git a/Skins/rafis gothic hs/ranking-D.png b/Skins/rafis gothic hs/ranking-D.png new file mode 100644 index 00000000..99984e18 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b13c1fa4ee2886f4136f38f05735b025a22f1fb13f54a401742077581e56c4 +size 28303 diff --git a/Skins/rafis gothic hs/ranking-D@2x.png b/Skins/rafis gothic hs/ranking-D@2x.png new file mode 100644 index 00000000..562487e8 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9aafa65fcd93b8d3461a53ce7e6984a09122c6cad6a8e807a25fd5ff9f6091 +size 25199 diff --git a/Skins/rafis gothic hs/ranking-S-small.png b/Skins/rafis gothic hs/ranking-S-small.png new file mode 100644 index 00000000..8d295930 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d8cc283bfd47fd7614dafd65f0be13be13682e0242388cbde4c4517ba97e05 +size 1791 diff --git a/Skins/rafis gothic hs/ranking-S-small@2x.png b/Skins/rafis gothic hs/ranking-S-small@2x.png new file mode 100644 index 00000000..afaaf42b --- /dev/null +++ b/Skins/rafis gothic hs/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec712148a0452073279eae3ed5cf04f053361c5e39468e1ca8eb0bbd2449331 +size 28870 diff --git a/Skins/rafis gothic hs/ranking-S.png b/Skins/rafis gothic hs/ranking-S.png new file mode 100644 index 00000000..e49f223a --- /dev/null +++ b/Skins/rafis gothic hs/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b139a7641b8315fe558608f12b4094dbc4bb4d9514e8e9b125e387e53556929f +size 27058 diff --git a/Skins/rafis gothic hs/ranking-S@2x.png b/Skins/rafis gothic hs/ranking-S@2x.png new file mode 100644 index 00000000..5ca466ce --- /dev/null +++ b/Skins/rafis gothic hs/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ef38d29b147734ff59d4f0364f40d9a3ce88880de57ff49f8baa24386fbdec +size 32768 diff --git a/Skins/rafis gothic hs/ranking-SH-small.png b/Skins/rafis gothic hs/ranking-SH-small.png new file mode 100644 index 00000000..9425a669 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea48642afb8ef6e8b99f6d878b1e7fb604eeab969729fbc77c22d8f2cc39e91 +size 1112 diff --git a/Skins/rafis gothic hs/ranking-SH-small@2x.png b/Skins/rafis gothic hs/ranking-SH-small@2x.png new file mode 100644 index 00000000..f6b7ec67 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f95660f5bec80c271a077fd2160181a44a875b54d39671cad1044b489c03cf2 +size 28466 diff --git a/Skins/rafis gothic hs/ranking-SH.png b/Skins/rafis gothic hs/ranking-SH.png new file mode 100644 index 00000000..21246676 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bdd3bba987ce7138b03ba89a9c6a23fdae1d1ce7164448c164eb9cea07e352 +size 15214 diff --git a/Skins/rafis gothic hs/ranking-SH@2x.png b/Skins/rafis gothic hs/ranking-SH@2x.png new file mode 100644 index 00000000..a25cfc7d --- /dev/null +++ b/Skins/rafis gothic hs/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7f25b2e09f39db7962514719cda8e0dd65d0585883bbec9257d7c4790eb838 +size 21193 diff --git a/Skins/rafis gothic hs/ranking-X-small.png b/Skins/rafis gothic hs/ranking-X-small.png new file mode 100644 index 00000000..b23aeb49 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62633019c4cb476df98a5a5f1fd7b948eb3368d1f933eec9da056674505d877 +size 2180 diff --git a/Skins/rafis gothic hs/ranking-X-small@2x.png b/Skins/rafis gothic hs/ranking-X-small@2x.png new file mode 100644 index 00000000..a385cf84 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4c1d7996f0b0ba32684fdfd06681f16b0c060b1eb95a2a1940c7e481bacb01 +size 29315 diff --git a/Skins/rafis gothic hs/ranking-X.png b/Skins/rafis gothic hs/ranking-X.png new file mode 100644 index 00000000..5be2c1c1 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e93f0066ebe7b372771fec584ca2f179bb0c7032b563027d0ee4a720a8be58 +size 52314 diff --git a/Skins/rafis gothic hs/ranking-X@2x.png b/Skins/rafis gothic hs/ranking-X@2x.png new file mode 100644 index 00000000..6b0640e8 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fc57c0d9ce25a2e406cb97da1a0e34d6c3a95cba393a16292ae3764899f326 +size 62076 diff --git a/Skins/rafis gothic hs/ranking-XH-small.png b/Skins/rafis gothic hs/ranking-XH-small.png new file mode 100644 index 00000000..0220fd64 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd4591775127ca0cb3509e1b01f9a4467373bd8487884cbdbaef20d3ed7e157 +size 1551 diff --git a/Skins/rafis gothic hs/ranking-XH-small@2x.png b/Skins/rafis gothic hs/ranking-XH-small@2x.png new file mode 100644 index 00000000..4b3f9f30 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8b406c571f4de236b82a80142809aecb38914d423d2b49d57342fb75a900da +size 29209 diff --git a/Skins/rafis gothic hs/ranking-XH.png b/Skins/rafis gothic hs/ranking-XH.png new file mode 100644 index 00000000..c80e468e --- /dev/null +++ b/Skins/rafis gothic hs/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c36e80b7c832e17379f8a471de579a3a7963434cc6a211e6a564a12f882cdf +size 36125 diff --git a/Skins/rafis gothic hs/ranking-XH@2x.png b/Skins/rafis gothic hs/ranking-XH@2x.png new file mode 100644 index 00000000..b44245f7 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa5b4a97016a19a57625ae47490aa45014a1645bcc6f6a048e4fa6b8231cd08 +size 43661 diff --git a/Skins/rafis gothic hs/ranking-accuracy.png b/Skins/rafis gothic hs/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis gothic hs/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis gothic hs/ranking-background-overlay.png b/Skins/rafis gothic hs/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/ranking-graph.png b/Skins/rafis gothic hs/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/rafis gothic hs/ranking-graph@2x.png b/Skins/rafis gothic hs/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/rafis gothic hs/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/rafis gothic hs/ranking-maxcombo.png b/Skins/rafis gothic hs/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis gothic hs/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis gothic hs/ranking-panel.png b/Skins/rafis gothic hs/ranking-panel.png new file mode 100644 index 00000000..24c02b09 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec0aa346a5eb87809ee995aeec90a45634cafab266e338e94836fb4956a1058 +size 9533 diff --git a/Skins/rafis gothic hs/ranking-panel@2x.png b/Skins/rafis gothic hs/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/rafis gothic hs/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/rafis gothic hs/ranking-perfect.png b/Skins/rafis gothic hs/ranking-perfect.png new file mode 100644 index 00000000..31c56e88 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61a1bf548dc3120a80ed66e81fea31ff1402493f2efa4d349f2978c5679bb22 +size 18197 diff --git a/Skins/rafis gothic hs/ranking-perfect@2x.jpg b/Skins/rafis gothic hs/ranking-perfect@2x.jpg new file mode 100644 index 00000000..9b6244d6 --- /dev/null +++ b/Skins/rafis gothic hs/ranking-perfect@2x.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0de97b51254b6bcccc29c86eacdaecab55d2d25a77a8ab25b41df63a3fbc40f +size 2752 diff --git a/Skins/rafis gothic hs/ranking-title.png b/Skins/rafis gothic hs/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis gothic hs/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis gothic hs/ready.png b/Skins/rafis gothic hs/ready.png new file mode 100644 index 00000000..d4077227 --- /dev/null +++ b/Skins/rafis gothic hs/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8762e9e54d5d3f51350402e2fd7ff47545adca14e1927688cb42bbf24ad12ca3 +size 14510 diff --git a/Skins/rafis gothic hs/readys.ogg b/Skins/rafis gothic hs/readys.ogg new file mode 100644 index 00000000..6b2f09a9 --- /dev/null +++ b/Skins/rafis gothic hs/readys.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd8b55e73cf7f38920ae3290ad02792b47d171283086d4aeafe6d513bda31a5 +size 4426 diff --git a/Skins/rafis gothic hs/reversearrow.png b/Skins/rafis gothic hs/reversearrow.png new file mode 100644 index 00000000..3a2bea61 --- /dev/null +++ b/Skins/rafis gothic hs/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08fd4cf8314a63bb6bf113268ae6ede49561d275c7067145bf9f526ec35dc6b6 +size 5904 diff --git a/Skins/rafis gothic hs/score-0.png b/Skins/rafis gothic hs/score-0.png new file mode 100644 index 00000000..b0d97ed3 --- /dev/null +++ b/Skins/rafis gothic hs/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394197cdee2bf3ec3a87019a6a29d10a085e56021f54099c8fcce50e3ddacebc +size 3433 diff --git a/Skins/rafis gothic hs/score-1.png b/Skins/rafis gothic hs/score-1.png new file mode 100644 index 00000000..0d1ebe0d --- /dev/null +++ b/Skins/rafis gothic hs/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d113cfde1f6f8cc8a2bbfa52bb0ad35a5d85e259ee0bc3a15e03f4c7b74c6e90 +size 2926 diff --git a/Skins/rafis gothic hs/score-2.png b/Skins/rafis gothic hs/score-2.png new file mode 100644 index 00000000..408e1cdb --- /dev/null +++ b/Skins/rafis gothic hs/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2782ad0951a15087a845367afa8f2cba7473c284a68f2ff85aeb6c517e9f6c6 +size 3414 diff --git a/Skins/rafis gothic hs/score-3.png b/Skins/rafis gothic hs/score-3.png new file mode 100644 index 00000000..86177a14 --- /dev/null +++ b/Skins/rafis gothic hs/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf66868678715dbb35d4fa05bdec44967a86a79c6182e8b4b1080fe6c5bb817 +size 3439 diff --git a/Skins/rafis gothic hs/score-4.png b/Skins/rafis gothic hs/score-4.png new file mode 100644 index 00000000..245c95ee --- /dev/null +++ b/Skins/rafis gothic hs/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90311b953c402d7351eb6fff11c42e71f47e0113fc5533e19845570a251b6e53 +size 3334 diff --git a/Skins/rafis gothic hs/score-5.png b/Skins/rafis gothic hs/score-5.png new file mode 100644 index 00000000..725ce736 --- /dev/null +++ b/Skins/rafis gothic hs/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ad9cb986cf1c8e7ec73f11052c7f80cb44f6155a267c177ca874183651e63a +size 3323 diff --git a/Skins/rafis gothic hs/score-6.png b/Skins/rafis gothic hs/score-6.png new file mode 100644 index 00000000..9213868c --- /dev/null +++ b/Skins/rafis gothic hs/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cfc4cd71cd6f602d4765cd7a4f77739c20499b5803ff685e95636bb5f56fa3 +size 3541 diff --git a/Skins/rafis gothic hs/score-7.png b/Skins/rafis gothic hs/score-7.png new file mode 100644 index 00000000..b3895d5b --- /dev/null +++ b/Skins/rafis gothic hs/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbec68017836b68bae612827f74a8a0356c2c4f877e99e274cd7d619c3d66117 +size 3287 diff --git a/Skins/rafis gothic hs/score-8.png b/Skins/rafis gothic hs/score-8.png new file mode 100644 index 00000000..c31c805b --- /dev/null +++ b/Skins/rafis gothic hs/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33dfd72a1c67a7ea68dfe103227dd6962371a91882d62735f4132f04e64dc57b +size 3667 diff --git a/Skins/rafis gothic hs/score-9.png b/Skins/rafis gothic hs/score-9.png new file mode 100644 index 00000000..aeaaf0c4 --- /dev/null +++ b/Skins/rafis gothic hs/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d1a5ebc31a64edff85c84a28b9a7da2297acd516e4047649df9fdf1b5a20d4 +size 3534 diff --git a/Skins/rafis gothic hs/score-comma.png b/Skins/rafis gothic hs/score-comma.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/rafis gothic hs/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/rafis gothic hs/score-dot.png b/Skins/rafis gothic hs/score-dot.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/rafis gothic hs/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/rafis gothic hs/score-percent.png b/Skins/rafis gothic hs/score-percent.png new file mode 100644 index 00000000..69be85f4 --- /dev/null +++ b/Skins/rafis gothic hs/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463688b71d33f4c476deddd20df83dfcffbb450f7a5277704442f494fbc49570 +size 3038 diff --git a/Skins/rafis gothic hs/score-x.png b/Skins/rafis gothic hs/score-x.png new file mode 100644 index 00000000..906648fa --- /dev/null +++ b/Skins/rafis gothic hs/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ff24028255e3787e38390106f32b20bb8c6af2943c418f3436b584ce9d5674 +size 2810 diff --git a/Skins/rafis gothic hs/scorebar-bg.png b/Skins/rafis gothic hs/scorebar-bg.png new file mode 100644 index 00000000..750c65b6 --- /dev/null +++ b/Skins/rafis gothic hs/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ba8e57e5fbf0c9893065b4c80bb987328a5d65b86fbc968832d06323f76e16 +size 602 diff --git a/Skins/rafis gothic hs/scorebar-colour.png b/Skins/rafis gothic hs/scorebar-colour.png new file mode 100644 index 00000000..826fb841 --- /dev/null +++ b/Skins/rafis gothic hs/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7581446b7de87e190e025a353bb44dc8d086bd8ea41d9895458465845e27a2 +size 1277 diff --git a/Skins/rafis gothic hs/scorebar-colour@2x.png b/Skins/rafis gothic hs/scorebar-colour@2x.png new file mode 100644 index 00000000..3a7d9086 --- /dev/null +++ b/Skins/rafis gothic hs/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4bc4c5bfbe652cb19967ab20d5f5f78c82c901145de3fc30648709863de5bd8 +size 594 diff --git a/Skins/rafis gothic hs/scorebar-ki.png b/Skins/rafis gothic hs/scorebar-ki.png new file mode 100644 index 00000000..fac29168 --- /dev/null +++ b/Skins/rafis gothic hs/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620234b2f7442c73273afc2f3d90769c6d7ac8813f8d2c14849ba316d7281af7 +size 2803 diff --git a/Skins/rafis gothic hs/scorebar-kidanger.png b/Skins/rafis gothic hs/scorebar-kidanger.png new file mode 100644 index 00000000..ddab0bf6 --- /dev/null +++ b/Skins/rafis gothic hs/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4595cab4b46b51c203c2c6e22629fac69343bed05ec2fe778f509acfd24e0298 +size 2803 diff --git a/Skins/rafis gothic hs/scorebar-kidanger2.png b/Skins/rafis gothic hs/scorebar-kidanger2.png new file mode 100644 index 00000000..5ed877c3 --- /dev/null +++ b/Skins/rafis gothic hs/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0d08de15725e6c4e84824e5cb71b04dbb8d8f9fcfdc8b498163993114cae8f +size 2803 diff --git a/Skins/rafis gothic hs/section-fail.png b/Skins/rafis gothic hs/section-fail.png new file mode 100644 index 00000000..2d866807 --- /dev/null +++ b/Skins/rafis gothic hs/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403b392c04dcd7cf2391cb4d607d91c14606d170b71ac1046980574c8c6fbcb8 +size 28763 diff --git a/Skins/rafis gothic hs/section-pass.png b/Skins/rafis gothic hs/section-pass.png new file mode 100644 index 00000000..a14fa84c --- /dev/null +++ b/Skins/rafis gothic hs/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f2ac59baccb61aeabf94a2ea4ef31cfe6f7193adecae18a441ebbd33830482 +size 20967 diff --git a/Skins/rafis gothic hs/sectionfail.ogg b/Skins/rafis gothic hs/sectionfail.ogg new file mode 100644 index 00000000..194b58a4 --- /dev/null +++ b/Skins/rafis gothic hs/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f420a1f095236b7fd7a94b72dbfc9774479bafb16ecb73f0e5d94a33e366e9ee +size 47184 diff --git a/Skins/rafis gothic hs/sectionpass.ogg b/Skins/rafis gothic hs/sectionpass.ogg new file mode 100644 index 00000000..d662ed42 --- /dev/null +++ b/Skins/rafis gothic hs/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cceb7306cddcaf24890e7d1ffb75888a83be212fe3b2c8a39f3cb2a518192c1d +size 56854 diff --git a/Skins/rafis gothic hs/selection-mod-autoplay.png b/Skins/rafis gothic hs/selection-mod-autoplay.png new file mode 100644 index 00000000..28f71f67 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2519a646700842ce9daaa07ed7bfe5efc4a72e30447c93babeb55727ae43f07b +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-autoplay@2x.png b/Skins/rafis gothic hs/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..6af9b88d --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1573d9f938dc43410b8df076b2a098365d5ad7aa13a6dd90f0a7662b1133c8b2 +size 58538 diff --git a/Skins/rafis gothic hs/selection-mod-cinema.png b/Skins/rafis gothic hs/selection-mod-cinema.png new file mode 100644 index 00000000..8682104c --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c2505987aae7f188f13dcc56b96f30da8ad4f9f5c77a3ca7e3293917aa5838 +size 5108 diff --git a/Skins/rafis gothic hs/selection-mod-doubletime.png b/Skins/rafis gothic hs/selection-mod-doubletime.png new file mode 100644 index 00000000..155ba105 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819cd6984bc8d4a75f442da823fc763c3df0e484b3b112881ba7319ab93fff12 +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-doubletime@2x.png b/Skins/rafis gothic hs/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6b54bd24 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ff27e05a8059f17bc901de9d3fe54fa57df62f583bdb87ca90028b92ca39c9 +size 55027 diff --git a/Skins/rafis gothic hs/selection-mod-easy.png b/Skins/rafis gothic hs/selection-mod-easy.png new file mode 100644 index 00000000..8f66629e --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad4be4139039ab123c028ba272c7b1f8a338b4605da225685c1cf724fa67034 +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-easy@2x.png b/Skins/rafis gothic hs/selection-mod-easy@2x.png new file mode 100644 index 00000000..c55a688b --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3373684ef9725ae4992ddb0e529036dff31d69a97974e8894f295ff70d9e609e +size 58539 diff --git a/Skins/rafis gothic hs/selection-mod-fadein.png b/Skins/rafis gothic hs/selection-mod-fadein.png new file mode 100644 index 00000000..6176a80f --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-fadein.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4771b029b739e11ed76e87803fce174a2827b6151e5ac0d48a97d8368952ad +size 15244 diff --git a/Skins/rafis gothic hs/selection-mod-fadein@2x.png b/Skins/rafis gothic hs/selection-mod-fadein@2x.png new file mode 100644 index 00000000..feb0d080 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-fadein@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b8ac98181f2ba2ed2f1599e571450416f89dbfc28ad3ac7df69be268296db4 +size 23822 diff --git a/Skins/rafis gothic hs/selection-mod-flashlight.png b/Skins/rafis gothic hs/selection-mod-flashlight.png new file mode 100644 index 00000000..05b0a5f7 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9d570bb0b379699eec81ff699e08c46711f961c0c43d8c60a95869b8609185 +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-flashlight@2x.png b/Skins/rafis gothic hs/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..7c83b048 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7527d1a800704da867948cc201d99b195ad1e9384619dae09afe54ee2f6027a +size 56128 diff --git a/Skins/rafis gothic hs/selection-mod-halftime.png b/Skins/rafis gothic hs/selection-mod-halftime.png new file mode 100644 index 00000000..33da66e0 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dba908936b1936d9472a372736a08e693bd5ae7fc1d25d1f6f1d739163db3db +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-halftime@2x.png b/Skins/rafis gothic hs/selection-mod-halftime@2x.png new file mode 100644 index 00000000..a1cbdafa --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff3a888ecdea0266bf96fdc7c7fbe8483380343cbaaeebc8840a2367c179152 +size 47976 diff --git a/Skins/rafis gothic hs/selection-mod-hardrock.png b/Skins/rafis gothic hs/selection-mod-hardrock.png new file mode 100644 index 00000000..d22f6949 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59ab02fe50d87fb52e70d8aff6c1f12799ece9a2231b7aab8b430b2f30d873a +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-hardrock@2x.png b/Skins/rafis gothic hs/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..59110cd7 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a8f2dd93517ebb5d213e0d635b5d7991dd4f96f9bb83c9aea1e9667b08ef4e1 +size 60033 diff --git a/Skins/rafis gothic hs/selection-mod-hidden.png b/Skins/rafis gothic hs/selection-mod-hidden.png new file mode 100644 index 00000000..cd0c698d --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62df9d17c52ff0875e6cae6ee1b227fb66c6d48b377967dfab25b06ee3e19a3b +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-hidden@2x.png b/Skins/rafis gothic hs/selection-mod-hidden@2x.png new file mode 100644 index 00000000..392ebb61 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a6b62747cc8bc7431af23350db50718cae2b92b6c1541d637fa64b7116d1b7 +size 59815 diff --git a/Skins/rafis gothic hs/selection-mod-key1.png b/Skins/rafis gothic hs/selection-mod-key1.png new file mode 100644 index 00000000..a023b284 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b7b94f9341cf71d532fe740c7b3d8bed167f90db0a69c1063fb880c2261c9d +size 16593 diff --git a/Skins/rafis gothic hs/selection-mod-key1@2x.png b/Skins/rafis gothic hs/selection-mod-key1@2x.png new file mode 100644 index 00000000..4c997887 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2d31b9ba2983c225aec67b1ba5b5d41509b45eae16ef867d07da875b3c56cb +size 25753 diff --git a/Skins/rafis gothic hs/selection-mod-key2.png b/Skins/rafis gothic hs/selection-mod-key2.png new file mode 100644 index 00000000..a3a696ba --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59bb1c8cedefeb8c101cc16285505db36a2a8b7bd1b7a8640ab4f40bb1d4d4f1 +size 16779 diff --git a/Skins/rafis gothic hs/selection-mod-key2@2x.png b/Skins/rafis gothic hs/selection-mod-key2@2x.png new file mode 100644 index 00000000..5eebb73e --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac8dc39f151ff94d2de76ed4970f2b52aae718fed56bb7ae2b941cf119eb374 +size 26339 diff --git a/Skins/rafis gothic hs/selection-mod-key3.png b/Skins/rafis gothic hs/selection-mod-key3.png new file mode 100644 index 00000000..e269ca52 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ae195731e7b937bc44067f5131bd7f533b16c24e4fbb79d35d7c204c9c05d4 +size 16894 diff --git a/Skins/rafis gothic hs/selection-mod-key3@2x.png b/Skins/rafis gothic hs/selection-mod-key3@2x.png new file mode 100644 index 00000000..f08e2ca0 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1194e11e3a69a5268a951eab40624c887293f4f1f98ff4fb8e8d6ccf80629cd1 +size 26409 diff --git a/Skins/rafis gothic hs/selection-mod-key4.png b/Skins/rafis gothic hs/selection-mod-key4.png new file mode 100644 index 00000000..b7f64572 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ed7802f161ec4d0427b8be84db592edf9672877a8ad2a4938c7cdf4ed46d0d +size 16454 diff --git a/Skins/rafis gothic hs/selection-mod-key4@2x.png b/Skins/rafis gothic hs/selection-mod-key4@2x.png new file mode 100644 index 00000000..b9673020 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dee94ce8a892a2a15411860fcbb030d3305afc1e855da34bd51df56a49aa963 +size 25991 diff --git a/Skins/rafis gothic hs/selection-mod-key5.png b/Skins/rafis gothic hs/selection-mod-key5.png new file mode 100644 index 00000000..7275e4fe --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b98636d74a32c5d9651a44cd19837acefad6ad3112c4ed6b41c9deb085dfc7 +size 16748 diff --git a/Skins/rafis gothic hs/selection-mod-key5@2x.png b/Skins/rafis gothic hs/selection-mod-key5@2x.png new file mode 100644 index 00000000..460b56f5 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e79661a02d112c5fd945f0ba8e75daa6b965989755d216d0e105ca17cb3b0b +size 26341 diff --git a/Skins/rafis gothic hs/selection-mod-key6.png b/Skins/rafis gothic hs/selection-mod-key6.png new file mode 100644 index 00000000..d401e4aa --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0858c0d91f62af661a4fbe8dd8946d02e31a557190a6b779677ca5e884349f49 +size 16780 diff --git a/Skins/rafis gothic hs/selection-mod-key6@2x.png b/Skins/rafis gothic hs/selection-mod-key6@2x.png new file mode 100644 index 00000000..ae642e44 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2744e75a20a65305963001a8626bd25978ff0dd063b245269fe35c83f79b7b4f +size 26014 diff --git a/Skins/rafis gothic hs/selection-mod-key7.png b/Skins/rafis gothic hs/selection-mod-key7.png new file mode 100644 index 00000000..33652cae --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:836431dc85a171861aa51052bc4b120f83c5dc77e2e535185d2a179cfaae4d7f +size 16514 diff --git a/Skins/rafis gothic hs/selection-mod-key7@2x.png b/Skins/rafis gothic hs/selection-mod-key7@2x.png new file mode 100644 index 00000000..18b7b07d --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8989727b3af0f1945db5e7cfaa5ae038d3aa3cb6e4d2ca13afdac3600e744c2d +size 25281 diff --git a/Skins/rafis gothic hs/selection-mod-key8.png b/Skins/rafis gothic hs/selection-mod-key8.png new file mode 100644 index 00000000..2e304fb5 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b689f3d61a919f745101cfb67e7b65271ba462fa655646327e70ddda6f0a33 +size 16928 diff --git a/Skins/rafis gothic hs/selection-mod-key8@2x.png b/Skins/rafis gothic hs/selection-mod-key8@2x.png new file mode 100644 index 00000000..0b379c77 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846f9db1a253e431aca29cb7f3223800f076ec6e3236241997115e60330b2f13 +size 26181 diff --git a/Skins/rafis gothic hs/selection-mod-key9.png b/Skins/rafis gothic hs/selection-mod-key9.png new file mode 100644 index 00000000..c1d490fd --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7927f4f382b32d9122cd4482043a8edf3ea035b5241b9b72305b74e51da3de9d +size 16715 diff --git a/Skins/rafis gothic hs/selection-mod-key9@2x.png b/Skins/rafis gothic hs/selection-mod-key9@2x.png new file mode 100644 index 00000000..d0438d2c --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-key9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fd9e828cea09ffd0f13db1084b3fdc1ec32360110e2b9fd10a75e0a24f7068 +size 26375 diff --git a/Skins/rafis gothic hs/selection-mod-keycoop.png b/Skins/rafis gothic hs/selection-mod-keycoop.png new file mode 100644 index 00000000..d9c4157a --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-keycoop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968564f9fb2dd3d20b22d42484c571a954e02d8fd4e436f0193346e5c2daab82 +size 16401 diff --git a/Skins/rafis gothic hs/selection-mod-keycoop@2x.png b/Skins/rafis gothic hs/selection-mod-keycoop@2x.png new file mode 100644 index 00000000..e9c0598b --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-keycoop@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf58b5acb39e95e96860e1c7e6432633c398429dfc6721bfc3873e7062fe757 +size 24512 diff --git a/Skins/rafis gothic hs/selection-mod-nightcore.png b/Skins/rafis gothic hs/selection-mod-nightcore.png new file mode 100644 index 00000000..e06bc3c3 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f372f00e1286d50ed08f0a2b88e4c1d1f1aadfae71404e5b700ea70fab24bf22 +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-nightcore@2x.png b/Skins/rafis gothic hs/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..c8d11bf1 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2ba8650f886cddbe6e8eabfb3cf08c3b384af67e0a94382a86ed87174e2fdd +size 54730 diff --git a/Skins/rafis gothic hs/selection-mod-nofail.png b/Skins/rafis gothic hs/selection-mod-nofail.png new file mode 100644 index 00000000..4b3db2a1 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1511af803e84e79da49f01190b2f1159a9269400d7eed45cc0e5c5e512ed5a +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-nofail@2x.png b/Skins/rafis gothic hs/selection-mod-nofail@2x.png new file mode 100644 index 00000000..70b9454c --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2895e203a397a2f1acc86b006995130bcc75d01d3a872f727c1312abc090cfaf +size 56825 diff --git a/Skins/rafis gothic hs/selection-mod-perfect.png b/Skins/rafis gothic hs/selection-mod-perfect.png new file mode 100644 index 00000000..9dd01a39 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8ddacac3d72596af2c9d3ea8da2782973f262c824dda5f3a3481f0fb9d7c2d +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-perfect@2x.png b/Skins/rafis gothic hs/selection-mod-perfect@2x.png new file mode 100644 index 00000000..19bbbf3d --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1939152335d45fd730c1a8936b8d702e8bf8cbcb8985dbac4662feccc018254e +size 61159 diff --git a/Skins/rafis gothic hs/selection-mod-random.png b/Skins/rafis gothic hs/selection-mod-random.png new file mode 100644 index 00000000..45368a79 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4929a02442cef3af3d1a41d8aba4da0e27be738bf3bfb25551ce6caeb5e17b74 +size 16856 diff --git a/Skins/rafis gothic hs/selection-mod-random@2x.png b/Skins/rafis gothic hs/selection-mod-random@2x.png new file mode 100644 index 00000000..74cd4cf5 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8fb6dfe4e1ab08cf24825d6c49329f663cb128a5a29be08012cc36e306f9ed +size 26290 diff --git a/Skins/rafis gothic hs/selection-mod-relax.png b/Skins/rafis gothic hs/selection-mod-relax.png new file mode 100644 index 00000000..8a35a647 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecfdf0d80661aeba607ac00170d0c6dc86b317f612636fa547441735f791f27 +size 17193 diff --git a/Skins/rafis gothic hs/selection-mod-relax2.png b/Skins/rafis gothic hs/selection-mod-relax2.png new file mode 100644 index 00000000..f84b1f71 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c11c54ad385c3873bef00803cc63c221a8585bfab3cad4dd025f9ece4f49e9 +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-relax2@2x.png b/Skins/rafis gothic hs/selection-mod-relax2@2x.png new file mode 100644 index 00000000..8eefb999 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48e18f8c2130d25e977a5668162faa2cf88b819534834cb67ca69b076fc0e25 +size 60300 diff --git a/Skins/rafis gothic hs/selection-mod-relax@2x.png b/Skins/rafis gothic hs/selection-mod-relax@2x.png new file mode 100644 index 00000000..0c09a89f --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24baa72317f31c1d0802acf4d673d535956a37cbcd2671b5b365425a2f509e18 +size 63049 diff --git a/Skins/rafis gothic hs/selection-mod-scorev2.png b/Skins/rafis gothic hs/selection-mod-scorev2.png new file mode 100644 index 00000000..67214d66 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c23160d331750ef80389360d627a58765eed18b0ef5127a604ad1bb5fe501b +size 16334 diff --git a/Skins/rafis gothic hs/selection-mod-scorev2@2x.png b/Skins/rafis gothic hs/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..63cc37fb --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8dae8b62b0aa3d6192a26767ed1e0c500752fc1cfe2fc33d6ff1f0fb936ea96 +size 58197 diff --git a/Skins/rafis gothic hs/selection-mod-spunout.png b/Skins/rafis gothic hs/selection-mod-spunout.png new file mode 100644 index 00000000..7c651b03 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adfd713818f977b74d556a0c991562f70a17521cd56952bcdaff8963f839d53 +size 40279 diff --git a/Skins/rafis gothic hs/selection-mod-spunout@2x.png b/Skins/rafis gothic hs/selection-mod-spunout@2x.png new file mode 100644 index 00000000..ce15eebb --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c2dca481d848090dc684218b35d25e9246ad960e580053da4b822b1e8a36af +size 61577 diff --git a/Skins/rafis gothic hs/selection-mod-suddendeath.png b/Skins/rafis gothic hs/selection-mod-suddendeath.png new file mode 100644 index 00000000..ceb7cbc8 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22642a94eddaa516d8dea8fd0dfc5588a623f9a4ad13b3d678ff5a6572eeaf94 +size 48701 diff --git a/Skins/rafis gothic hs/selection-mod-suddendeath@2x.png b/Skins/rafis gothic hs/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..d549d65a --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20dff217a096f4753ea22fa97b8286c1b63e16de62b93aab201a69d932f405a0 +size 61757 diff --git a/Skins/rafis gothic hs/selection-mod-target.png b/Skins/rafis gothic hs/selection-mod-target.png new file mode 100644 index 00000000..e37be890 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b60b004811e6208e0c37217bda24e69c3baea634a169096167dda3b308aff26 +size 8225 diff --git a/Skins/rafis gothic hs/selection-mod-target@2x.png b/Skins/rafis gothic hs/selection-mod-target@2x.png new file mode 100644 index 00000000..c623ea88 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5725065ca3f4261bade2742ca2522aeb3843f577c4b8e4f055412afe1bbc34d8 +size 14174 diff --git a/Skins/rafis gothic hs/selection-mode-over.png b/Skins/rafis gothic hs/selection-mode-over.png new file mode 100644 index 00000000..f523b94b --- /dev/null +++ b/Skins/rafis gothic hs/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45bddb9ee842a7cfe55db446d18715ce75814f0f0c5b304bfa0a8d9a12339bae +size 3460 diff --git a/Skins/rafis gothic hs/selection-mode-over@2x.png b/Skins/rafis gothic hs/selection-mode-over@2x.png new file mode 100644 index 00000000..42775c50 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ed543665bad79aea16da870d5ab9b7cce73afdc50d95b029bcfbefe33daa56 +size 3635 diff --git a/Skins/rafis gothic hs/selection-mode.png b/Skins/rafis gothic hs/selection-mode.png new file mode 100644 index 00000000..8d239a44 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f2ccaaa49d7a3ca550e94c9f1037c81c79c2793aa0d287ed2bd46905090948 +size 3468 diff --git a/Skins/rafis gothic hs/selection-mode@2x.png b/Skins/rafis gothic hs/selection-mode@2x.png new file mode 100644 index 00000000..14083f12 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07be10d1625bf1ca8be3bbf81125b53ebfbd4f7e033fcb80eaf18b6b0ab7655 +size 3709 diff --git a/Skins/rafis gothic hs/selection-mods-over.png b/Skins/rafis gothic hs/selection-mods-over.png new file mode 100644 index 00000000..ec004aa7 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb204960a484a58be09530d4a95614d6b0c7866ca44926cb9ab2301a9774048 +size 5653 diff --git a/Skins/rafis gothic hs/selection-mods-over@2x.png b/Skins/rafis gothic hs/selection-mods-over@2x.png new file mode 100644 index 00000000..30069079 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115e5ed8b0b0fbf476407773fc72543de965f0fd0576ba944861f33cb94dd7a6 +size 28199 diff --git a/Skins/rafis gothic hs/selection-mods.png b/Skins/rafis gothic hs/selection-mods.png new file mode 100644 index 00000000..2cfb0147 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6426bd47c2a14700a3c23281f65c5237934d5a0709ff4b536c2b2b2a5f8b66d +size 2391 diff --git a/Skins/rafis gothic hs/selection-mods@2x.png b/Skins/rafis gothic hs/selection-mods@2x.png new file mode 100644 index 00000000..39c24218 --- /dev/null +++ b/Skins/rafis gothic hs/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d7e61caac697d909fccb6ac01ac80afd711375e96922b154ddadcce52ade49 +size 4089 diff --git a/Skins/rafis gothic hs/selection-options-over.png b/Skins/rafis gothic hs/selection-options-over.png new file mode 100644 index 00000000..7db72bc9 --- /dev/null +++ b/Skins/rafis gothic hs/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df099c20daa720cdbc20c5c73d4ce364cfc73a5b5450ce86558475f375e69ce +size 5461 diff --git a/Skins/rafis gothic hs/selection-options-over@2x.png b/Skins/rafis gothic hs/selection-options-over@2x.png new file mode 100644 index 00000000..eadd4ee1 --- /dev/null +++ b/Skins/rafis gothic hs/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b8f5ef18be3a9da582c8812eca352d110f6503161a9f13de4a39ac6ce33f47 +size 8495 diff --git a/Skins/rafis gothic hs/selection-options.png b/Skins/rafis gothic hs/selection-options.png new file mode 100644 index 00000000..57e49230 --- /dev/null +++ b/Skins/rafis gothic hs/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e825990abac32d986dd030a71e785704f8be1a18f4870199667d280bd77c13 +size 4121 diff --git a/Skins/rafis gothic hs/selection-options@2x.png b/Skins/rafis gothic hs/selection-options@2x.png new file mode 100644 index 00000000..64548260 --- /dev/null +++ b/Skins/rafis gothic hs/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbdf778eae35acecb5497b6d9cd7f3cac0482e090340f25dd576bf67b94d3f7 +size 4691 diff --git a/Skins/rafis gothic hs/selection-random-over.png b/Skins/rafis gothic hs/selection-random-over.png new file mode 100644 index 00000000..8546dbbc --- /dev/null +++ b/Skins/rafis gothic hs/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb04db3429b427d4ed5be7a361cebabed56de2a4c4ebb184bd3b32ddc15ef8d +size 6022 diff --git a/Skins/rafis gothic hs/selection-random-over@2x.png b/Skins/rafis gothic hs/selection-random-over@2x.png new file mode 100644 index 00000000..ab37ff9d --- /dev/null +++ b/Skins/rafis gothic hs/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ced4f52bd2b0f03e502a6a00b3ba8379990ce70a4d330f99897dd80945ce4a2 +size 15229 diff --git a/Skins/rafis gothic hs/selection-random.png b/Skins/rafis gothic hs/selection-random.png new file mode 100644 index 00000000..e441c835 --- /dev/null +++ b/Skins/rafis gothic hs/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b316d38e3bfae56d2756d8e137061b2dded0e1060857b4f3da545480ba7768f3 +size 4228 diff --git a/Skins/rafis gothic hs/selection-random@2x.png b/Skins/rafis gothic hs/selection-random@2x.png new file mode 100644 index 00000000..0ac84ecd --- /dev/null +++ b/Skins/rafis gothic hs/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6645c281933dbd6ff3aef66d67adef7ca1fe9802738881baab130664ce2d7fc6 +size 7123 diff --git a/Skins/rafis gothic hs/selection-selectoptions-over.png b/Skins/rafis gothic hs/selection-selectoptions-over.png new file mode 100644 index 00000000..ef49e7a7 --- /dev/null +++ b/Skins/rafis gothic hs/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d17470c892f72405e6e836dcd880030be0c8edc4c891c74e9a448de4a01a38 +size 3904 diff --git a/Skins/rafis gothic hs/selection-selectoptions.png b/Skins/rafis gothic hs/selection-selectoptions.png new file mode 100644 index 00000000..bd52ae1c --- /dev/null +++ b/Skins/rafis gothic hs/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500167adb5b2a8a487b6678724eeb23f1f453fee3baef9f284cd0f5c1be9ad6 +size 3652 diff --git a/Skins/rafis gothic hs/selection-tab.png b/Skins/rafis gothic hs/selection-tab.png new file mode 100644 index 00000000..73f15121 --- /dev/null +++ b/Skins/rafis gothic hs/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec16bd5a867810ee6dadcc2751eef1e537e8f34e660304f308e3ce1e2cd262d2 +size 3506 diff --git a/Skins/rafis gothic hs/skin.ini b/Skins/rafis gothic hs/skin.ini new file mode 100644 index 00000000..a9a2b3ee --- /dev/null +++ b/Skins/rafis gothic hs/skin.ini @@ -0,0 +1,46 @@ +[General] +Name: Rafis Gothic Lolita HS +Author: DDK RPK +Version: 2.2 +SliderBallFlip: 0 +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 1 +HitCircleOverlayAboveNumer: 0 +ComboBurstRandom: 0 +SliderStyle: 2 + +[Colours] +Combo1: 255,255,255 +Combo2: 255,255,255 +Combo3: 255,255,255 +Combo4: 255,255,255 +SliderBorder: 255, 255, 255 +SliderTrackOverride: 0,0,0 +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 230,230,230 +SpinnerApproachCircle: 255,255,255 +ApproachCircle: 255,255,255 +MenuGlow: 0,0,190 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 170 +ScorePrefix: score +ScoreOverlap: 2 +[Mania] +Keys: 4 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +//Colours +//images +//Keys diff --git a/Skins/rafis gothic hs/sliderb.png b/Skins/rafis gothic hs/sliderb.png new file mode 100644 index 00000000..b0ddd37a --- /dev/null +++ b/Skins/rafis gothic hs/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702aaff001d20d5627d71654ed8a64f6efb88e0eda18c4d20b81e04605751197 +size 15457 diff --git a/Skins/rafis gothic hs/sliderendcircle.png b/Skins/rafis gothic hs/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/rafis gothic hs/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/rafis gothic hs/sliderfollowcircle.png b/Skins/rafis gothic hs/sliderfollowcircle.png new file mode 100644 index 00000000..347ffa7a --- /dev/null +++ b/Skins/rafis gothic hs/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252b7dffab8def1f7ea3ddd3dcc0b2fbff8d5f8fd6e262865c070c6be4925fe2 +size 42835 diff --git a/Skins/rafis gothic hs/sliderpoint10.png b/Skins/rafis gothic hs/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/sliderpoint30.png b/Skins/rafis gothic hs/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/sliderscorepoint.png b/Skins/rafis gothic hs/sliderscorepoint.png new file mode 100644 index 00000000..cf83f494 --- /dev/null +++ b/Skins/rafis gothic hs/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d579cf9670162a630192b68827b8d08dddfbfc855d4dde9b8c0661cf1628436d +size 3307 diff --git a/Skins/rafis gothic hs/soft-hitclap.wav b/Skins/rafis gothic hs/soft-hitclap.wav new file mode 100644 index 00000000..8e9f3126 --- /dev/null +++ b/Skins/rafis gothic hs/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea61f7ec53a293b864a7b9f39126f9ae7d137ddde2691ec331deeb444a455b0 +size 25928 diff --git a/Skins/rafis gothic hs/soft-hitfinish.wav b/Skins/rafis gothic hs/soft-hitfinish.wav new file mode 100644 index 00000000..f4b936f6 --- /dev/null +++ b/Skins/rafis gothic hs/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37af8f8a582066fab8ef5a241d6b4b058a15cc20be0e1dce1fca1d8bedb5a4a9 +size 14472 diff --git a/Skins/rafis gothic hs/soft-hitnormal.wav b/Skins/rafis gothic hs/soft-hitnormal.wav new file mode 100644 index 00000000..4699c6d9 --- /dev/null +++ b/Skins/rafis gothic hs/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d24d47ce75ef4556ce3d6b3aa709667734a5e920f908edcb046985a2a43da9 +size 29352 diff --git a/Skins/rafis gothic hs/soft-hitwhistle.wav b/Skins/rafis gothic hs/soft-hitwhistle.wav new file mode 100644 index 00000000..c24c7f0c --- /dev/null +++ b/Skins/rafis gothic hs/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b188c0119b2d7426b46b07d60c7b600030368640670c9a7ec0359b4afa681cd3 +size 120330 diff --git a/Skins/rafis gothic hs/spinner-approachcircle.png b/Skins/rafis gothic hs/spinner-approachcircle.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/rafis gothic hs/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/rafis gothic hs/spinner-approachcircle@2x.png b/Skins/rafis gothic hs/spinner-approachcircle@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/rafis gothic hs/spinner-background.png b/Skins/rafis gothic hs/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/rafis gothic hs/spinner-bottom.png b/Skins/rafis gothic hs/spinner-bottom.png new file mode 100644 index 00000000..946c8b3a --- /dev/null +++ b/Skins/rafis gothic hs/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5797167de9aad06f6855e5f7302d6fad47beb5e01c2a4c28de952efc05bf27ff +size 1137 diff --git a/Skins/rafis gothic hs/spinner-bottom@2x.png b/Skins/rafis gothic hs/spinner-bottom@2x.png new file mode 100644 index 00000000..76e175fb --- /dev/null +++ b/Skins/rafis gothic hs/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04d400f0b6d1e0d390ade101df3877b8c6bcec8a7f21b2308f3e56c59b8b03b +size 3836 diff --git a/Skins/rafis gothic hs/spinner-circle.png b/Skins/rafis gothic hs/spinner-circle.png new file mode 100644 index 00000000..bda8edf4 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eefb18e81fe38aa3e4769812b628da9bcd4f8ef53b196c7d17f0ae65c6aa0e76 +size 11087 diff --git a/Skins/rafis gothic hs/spinner-circle@2x.png b/Skins/rafis gothic hs/spinner-circle@2x.png new file mode 100644 index 00000000..37f8f90b --- /dev/null +++ b/Skins/rafis gothic hs/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f08507d5ef48929f50f899c7d387ad8c78f86bb607a04bcbd0ea3e5c311cf6 +size 18294 diff --git a/Skins/rafis gothic hs/spinner-clear.png b/Skins/rafis gothic hs/spinner-clear.png new file mode 100644 index 00000000..bc660b6e --- /dev/null +++ b/Skins/rafis gothic hs/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6038e4ec67126dd095ae229d68a41ed10993475d21a3dd300bfb66481d1181ec +size 1230 diff --git a/Skins/rafis gothic hs/spinner-clear@2x.png b/Skins/rafis gothic hs/spinner-clear@2x.png new file mode 100644 index 00000000..bd7fae87 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae921da18f29a88056c4388b54ab362f89796bad9a8b483add548e8fa8b5a7f +size 2383 diff --git a/Skins/rafis gothic hs/spinner-glow.png b/Skins/rafis gothic hs/spinner-glow.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/rafis gothic hs/spinner-metre.png b/Skins/rafis gothic hs/spinner-metre.png new file mode 100644 index 00000000..c9d29ae8 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31994f3ab5771342bfd0d27e63bfb33169effea50e7002bfe948298f03a8421 +size 16577 diff --git a/Skins/rafis gothic hs/spinner-metre@2x.png b/Skins/rafis gothic hs/spinner-metre@2x.png new file mode 100644 index 00000000..bffcbc0e --- /dev/null +++ b/Skins/rafis gothic hs/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce403f5d4883a2563d7461f4d693fed8b93b515d05a89aa8c862ba74f55143a +size 39555 diff --git a/Skins/rafis gothic hs/spinner-middle.png b/Skins/rafis gothic hs/spinner-middle.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/rafis gothic hs/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/rafis gothic hs/spinner-middle2.png b/Skins/rafis gothic hs/spinner-middle2.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/rafis gothic hs/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/rafis gothic hs/spinner-middle2@2x.png b/Skins/rafis gothic hs/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/rafis gothic hs/spinner-middle@2x.png b/Skins/rafis gothic hs/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/rafis gothic hs/spinner-osu.png b/Skins/rafis gothic hs/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/spinner-rpm.png b/Skins/rafis gothic hs/spinner-rpm.png new file mode 100644 index 00000000..5d2df5e4 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75dd2f3e1c5798531ad2cae52d40619eab1dd6251149aabec033afae9628e3b0 +size 5482 diff --git a/Skins/rafis gothic hs/spinner-rpm@2x.png b/Skins/rafis gothic hs/spinner-rpm@2x.png new file mode 100644 index 00000000..39a6692b --- /dev/null +++ b/Skins/rafis gothic hs/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6877128fd58b8818e813660e1cdb78ccd08220247e332e91ea9c1d0e22bebfa3 +size 8526 diff --git a/Skins/rafis gothic hs/spinner-spin.png b/Skins/rafis gothic hs/spinner-spin.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/rafis gothic hs/spinner-top.png b/Skins/rafis gothic hs/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/rafis gothic hs/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/rafis gothic hs/spinnerbonus.ogg b/Skins/rafis gothic hs/spinnerbonus.ogg new file mode 100644 index 00000000..a4d98537 --- /dev/null +++ b/Skins/rafis gothic hs/spinnerbonus.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126fd1e1a9d458d234d043d8fa9d853c9f98c2008a78d579e2a4c6973138c1b1 +size 22527 diff --git a/Skins/rafis gothic hs/spinnerspin.ogg b/Skins/rafis gothic hs/spinnerspin.ogg new file mode 100644 index 00000000..c67e2d8b --- /dev/null +++ b/Skins/rafis gothic hs/spinnerspin.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0672286c726bf25bee248c8c909a2874d502bd109a830c4c672088dffa1b946 +size 7084 diff --git a/Skins/rafis gothic hs/star.png b/Skins/rafis gothic hs/star.png new file mode 100644 index 00000000..57cc86e3 --- /dev/null +++ b/Skins/rafis gothic hs/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0923dba4b00cd7e9a694d731db281bf87da06a8a5bb51c7bf59f889c630f69 +size 17316 diff --git a/Skins/rafis gothic hs/star2.png b/Skins/rafis gothic hs/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis gothic hs/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis gothic hs/volume-bg-effect.png b/Skins/rafis gothic hs/volume-bg-effect.png new file mode 100644 index 00000000..9401cbe2 --- /dev/null +++ b/Skins/rafis gothic hs/volume-bg-effect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed8c50bb03c0004cef60b88f3e11116de0bb44acd3e9d9e089e6f367622ada3 +size 6130 diff --git a/Skins/rafis gothic hs/volume-bg-effect@2x.png b/Skins/rafis gothic hs/volume-bg-effect@2x.png new file mode 100644 index 00000000..4515098f --- /dev/null +++ b/Skins/rafis gothic hs/volume-bg-effect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101be858ccc62f2e7895e1d9b62fb3f60b3c2e01b17d31b92f89586c2d99cfd1 +size 10602 diff --git a/Skins/rafis gothic hs/volume-bg.png b/Skins/rafis gothic hs/volume-bg.png new file mode 100644 index 00000000..e6e39b51 --- /dev/null +++ b/Skins/rafis gothic hs/volume-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9b202321950e38de2a38e76eae508212ebb11900c679646ac40bab5e3d9ded +size 5280 diff --git a/Skins/rafis gothic hs/volume-bg@2x.png b/Skins/rafis gothic hs/volume-bg@2x.png new file mode 100644 index 00000000..4649433b --- /dev/null +++ b/Skins/rafis gothic hs/volume-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35baa1a18decd33f8a1f2991c2fed3fca43a308495df049596c987cf6c891c3f +size 8664 diff --git a/Skins/rafis_gothic/4K.ini b/Skins/rafis_gothic/4K.ini new file mode 100644 index 00000000..7e996620 --- /dev/null +++ b/Skins/rafis_gothic/4K.ini @@ -0,0 +1,18 @@ +//Mania skin config +ColumnLineWidth: 0.7 +ColumnStart: 136 +BarlineWidth: 1.2 +HitPosition: 402 +SpecialStyle: 0 +SpecialPositionLeft: 1 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +FontCombo: score +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +ColumnLine: 1,1,1,1,1 +//Colours +//images +//Keys diff --git a/Skins/rafis_gothic/Applause.wav b/Skins/rafis_gothic/Applause.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/rafis_gothic/Click-Short.wav b/Skins/rafis_gothic/Click-Short.wav new file mode 100644 index 00000000..ffea2080 --- /dev/null +++ b/Skins/rafis_gothic/Click-Short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a3937c5631f80bb01aabd939ba99240a3909c6e2b3a531dd8ec1c69f5cc58b +size 26968 diff --git a/Skins/rafis_gothic/FailSound.wav b/Skins/rafis_gothic/FailSound.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/rafis_gothic/MenuHit.wav b/Skins/rafis_gothic/MenuHit.wav new file mode 100644 index 00000000..64e992db --- /dev/null +++ b/Skins/rafis_gothic/MenuHit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f332a3b7c005850253a552fd55123d3df8691bf506f7867e189db2f8dc6f06f5 +size 10220 diff --git a/Skins/rafis_gothic/applause.ogg b/Skins/rafis_gothic/applause.ogg new file mode 100644 index 00000000..09a8ff8d --- /dev/null +++ b/Skins/rafis_gothic/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5967d4cc318aa10d37d0b94ca1059e7c54fd9e9a55a7bb90485ac48a9325dc45 +size 207301 diff --git a/Skins/rafis_gothic/applause.sfk b/Skins/rafis_gothic/applause.sfk new file mode 100644 index 00000000..d0ab92fa --- /dev/null +++ b/Skins/rafis_gothic/applause.sfk @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd61899419fefe914c47412fb047dcf5766e647bd59c21ff445c319c9638fb64 +size 2016 diff --git a/Skins/rafis_gothic/approachcircle.png b/Skins/rafis_gothic/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/rafis_gothic/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/rafis_gothic/button-left.png b/Skins/rafis_gothic/button-left.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/rafis_gothic/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/rafis_gothic/button-middle.png b/Skins/rafis_gothic/button-middle.png new file mode 100644 index 00000000..ff6450e6 --- /dev/null +++ b/Skins/rafis_gothic/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26d1b2213d058c494c0e45c54638a1d05345e9317eaefee2e964e0cd45ae2be +size 2811 diff --git a/Skins/rafis_gothic/button-right.png b/Skins/rafis_gothic/button-right.png new file mode 100644 index 00000000..507194bc --- /dev/null +++ b/Skins/rafis_gothic/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c52efc0f92132852c99ee9f6ced7c983da6d26c0b5e8425b289e8576ede278f +size 2806 diff --git a/Skins/rafis_gothic/check-off.wav b/Skins/rafis_gothic/check-off.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/check-off.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/check-on.wav b/Skins/rafis_gothic/check-on.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/check-on.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/click-short-confirm.wav b/Skins/rafis_gothic/click-short-confirm.wav new file mode 100644 index 00000000..9655d8c0 --- /dev/null +++ b/Skins/rafis_gothic/click-short-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91f65a23362826bc277cb97f7fe6cc6ecc3030d725612d0d4da7e40a06ea392 +size 81624 diff --git a/Skins/rafis_gothic/coin.png b/Skins/rafis_gothic/coin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/coin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/coins-bg.png b/Skins/rafis_gothic/coins-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/coins-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/coins-buy.png b/Skins/rafis_gothic/coins-buy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/coins-buy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/coins-earn.ogg b/Skins/rafis_gothic/coins-earn.ogg new file mode 100644 index 00000000..c003fffc --- /dev/null +++ b/Skins/rafis_gothic/coins-earn.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bb73cd5332977dc570d6c9a272f8237f0dd17242da9e57ba96ea0a782abc87 +size 4426 diff --git a/Skins/rafis_gothic/coins-recharge.ogg b/Skins/rafis_gothic/coins-recharge.ogg new file mode 100644 index 00000000..a997049e --- /dev/null +++ b/Skins/rafis_gothic/coins-recharge.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb398a9eabb4e0cad7fc47335b0699c9198039f6e8dd3efb54927b7df57cc36c +size 4426 diff --git a/Skins/rafis_gothic/coins-use.ogg b/Skins/rafis_gothic/coins-use.ogg new file mode 100644 index 00000000..bbb5539b --- /dev/null +++ b/Skins/rafis_gothic/coins-use.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b935490a33baff880be00a7b2e6f08b353b4869ad43a060bda2866c9dcd71b8d +size 4426 diff --git a/Skins/rafis_gothic/coins.png b/Skins/rafis_gothic/coins.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/coins.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/comboburst.png b/Skins/rafis_gothic/comboburst.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/rafis_gothic/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/rafis_gothic/count.wav b/Skins/rafis_gothic/count.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/rafis_gothic/count.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/rafis_gothic/count1.png b/Skins/rafis_gothic/count1.png new file mode 100644 index 00000000..c26ec9e8 --- /dev/null +++ b/Skins/rafis_gothic/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d00000e327042e5a22f066d622acb87a6900f1a83e58aecd2c66f8a8e4c10ea +size 17232 diff --git a/Skins/rafis_gothic/count1s.ogg b/Skins/rafis_gothic/count1s.ogg new file mode 100644 index 00000000..ad79a312 --- /dev/null +++ b/Skins/rafis_gothic/count1s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b218483ecd7e1b99f908cf68482e485a7830bdaf27d17325a2064d6b333e5384 +size 4426 diff --git a/Skins/rafis_gothic/count1s.wav b/Skins/rafis_gothic/count1s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/rafis_gothic/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/rafis_gothic/count2.png b/Skins/rafis_gothic/count2.png new file mode 100644 index 00000000..6409b082 --- /dev/null +++ b/Skins/rafis_gothic/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593cd74803be2c97fe9f5eac38fc70fe397b3df4a99206f0f85c70d071e151ee +size 17232 diff --git a/Skins/rafis_gothic/count2s.ogg b/Skins/rafis_gothic/count2s.ogg new file mode 100644 index 00000000..b1d2c239 --- /dev/null +++ b/Skins/rafis_gothic/count2s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b4326a552e47a5fbb8cebbf6d0f4c443caf043f020adae0b8d37e441911ff8 +size 4426 diff --git a/Skins/rafis_gothic/count2s.wav b/Skins/rafis_gothic/count2s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/rafis_gothic/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/rafis_gothic/count3.png b/Skins/rafis_gothic/count3.png new file mode 100644 index 00000000..7bd2b02b --- /dev/null +++ b/Skins/rafis_gothic/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf7ada11b48390117bc6f16c043e9939051dedcd7485f99d3a30f12582f2998 +size 17232 diff --git a/Skins/rafis_gothic/count3s.ogg b/Skins/rafis_gothic/count3s.ogg new file mode 100644 index 00000000..c537f8b3 --- /dev/null +++ b/Skins/rafis_gothic/count3s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074c9e1f49202d170640348931591ecaa8a2de026bc017275c53aa1b6ceab485 +size 4426 diff --git a/Skins/rafis_gothic/count3s.wav b/Skins/rafis_gothic/count3s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/rafis_gothic/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/rafis_gothic/cursor.png b/Skins/rafis_gothic/cursor.png new file mode 100644 index 00000000..d8196870 --- /dev/null +++ b/Skins/rafis_gothic/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d91d74349fb42ed2952a5a86ea94ec2b667689cfd0dfc9346bad7aa4b99528 +size 4179 diff --git a/Skins/rafis_gothic/cursor@2xcvb.png b/Skins/rafis_gothic/cursor@2xcvb.png new file mode 100644 index 00000000..234cbf72 --- /dev/null +++ b/Skins/rafis_gothic/cursor@2xcvb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ef6d2d98e96320529afff01bdb491c6b5955ff2448f3557fd5002f16a09377 +size 12944 diff --git a/Skins/rafis_gothic/cursor@2xk.png b/Skins/rafis_gothic/cursor@2xk.png new file mode 100644 index 00000000..e61a5613 --- /dev/null +++ b/Skins/rafis_gothic/cursor@2xk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e083426eb66fb2cf9962c1b4d2459e096726b912624fe41497e92b3c8105d1c6 +size 11912 diff --git a/Skins/rafis_gothic/cursortrail.png b/Skins/rafis_gothic/cursortrail.png new file mode 100644 index 00000000..cd0fbbdb --- /dev/null +++ b/Skins/rafis_gothic/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17ddef762d647557152edc1df73ba0d7690ee0e8fb0af4a2ddef2ef3f8508ec +size 3968 diff --git a/Skins/rafis_gothic/cursortrail@2xcvb.png b/Skins/rafis_gothic/cursortrail@2xcvb.png new file mode 100644 index 00000000..eba46668 --- /dev/null +++ b/Skins/rafis_gothic/cursortrail@2xcvb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aec945d9546abe0a1a7292bea850bb1a2c035ad7dd3b58b46b5b92f7ffe849e +size 8570 diff --git a/Skins/rafis_gothic/cursortrail@2xl.png b/Skins/rafis_gothic/cursortrail@2xl.png new file mode 100644 index 00000000..8575ab3a --- /dev/null +++ b/Skins/rafis_gothic/cursortrail@2xl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece401ba0574ca320cdfc892dcbad21b8345327ca382cba4e7f2bfe60c176487 +size 8458 diff --git a/Skins/rafis_gothic/cursortrailfg.png b/Skins/rafis_gothic/cursortrailfg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/cursortrailfg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/default-0.png b/Skins/rafis_gothic/default-0.png new file mode 100644 index 00000000..05dc9667 --- /dev/null +++ b/Skins/rafis_gothic/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cfeddb009d9640c23159e6c78404ee8eb5fbae5469f48145ad6bc4c81d8b50 +size 2150 diff --git a/Skins/rafis_gothic/default-0@2x.png b/Skins/rafis_gothic/default-0@2x.png new file mode 100644 index 00000000..e677e4e2 --- /dev/null +++ b/Skins/rafis_gothic/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691bb62cbe70ddda43a9f3019071f314dd1bfb177b060903b018c3ab4916e1ae +size 7509 diff --git a/Skins/rafis_gothic/default-1.png b/Skins/rafis_gothic/default-1.png new file mode 100644 index 00000000..2a8ad996 --- /dev/null +++ b/Skins/rafis_gothic/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e51e876fe0242f0c4b3f6ee5505440fe8392933751a296832aeb9f47e4a4922 +size 1092 diff --git a/Skins/rafis_gothic/default-1@2x.png b/Skins/rafis_gothic/default-1@2x.png new file mode 100644 index 00000000..0dcfed20 --- /dev/null +++ b/Skins/rafis_gothic/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dffb89e9e7e6a35e523ab81d0f7693763b1d8cf88e0ad51813ca07a43e77bf9 +size 4038 diff --git a/Skins/rafis_gothic/default-2.png b/Skins/rafis_gothic/default-2.png new file mode 100644 index 00000000..f37bca6c --- /dev/null +++ b/Skins/rafis_gothic/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94e56cb01c5061c5932fd7f7ff1479a059bf00b59e9ca4971d858343dbc2320 +size 1931 diff --git a/Skins/rafis_gothic/default-2@2x.png b/Skins/rafis_gothic/default-2@2x.png new file mode 100644 index 00000000..2ac6977e --- /dev/null +++ b/Skins/rafis_gothic/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437a4328a0a09d2e536d5d1c78a9556f90bc30312fec64c65ffb34e8a574accd +size 6848 diff --git a/Skins/rafis_gothic/default-3.png b/Skins/rafis_gothic/default-3.png new file mode 100644 index 00000000..4e043f2e --- /dev/null +++ b/Skins/rafis_gothic/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d310a0f1f6d9928ed9b71e126cd86a9c5e3e2d091898787b71db01d33adb8b +size 1993 diff --git a/Skins/rafis_gothic/default-3@2x.png b/Skins/rafis_gothic/default-3@2x.png new file mode 100644 index 00000000..931fdfcf --- /dev/null +++ b/Skins/rafis_gothic/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d3952bd605acd5da2ca8820fc1ef5011df66dfc0f5eeeb689cc1ac00a155cd +size 7175 diff --git a/Skins/rafis_gothic/default-4.png b/Skins/rafis_gothic/default-4.png new file mode 100644 index 00000000..5f0b0b40 --- /dev/null +++ b/Skins/rafis_gothic/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e4afcaca838096fd7b855e6873f4ae262b1f89f70c60af3d8e866546ce58c1f +size 1691 diff --git a/Skins/rafis_gothic/default-4@2x.png b/Skins/rafis_gothic/default-4@2x.png new file mode 100644 index 00000000..25c15b0e --- /dev/null +++ b/Skins/rafis_gothic/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89a153fead7b6d5ff3db49da53f7ee4fb85ee59ea8fbfe9b8c75e28f44865fb +size 5999 diff --git a/Skins/rafis_gothic/default-5.png b/Skins/rafis_gothic/default-5.png new file mode 100644 index 00000000..1aeac5fa --- /dev/null +++ b/Skins/rafis_gothic/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189caad7ce0af937284426143399156a70bc1306e2360ca7518aca7601090c67 +size 1944 diff --git a/Skins/rafis_gothic/default-5@2x.png b/Skins/rafis_gothic/default-5@2x.png new file mode 100644 index 00000000..c436b65f --- /dev/null +++ b/Skins/rafis_gothic/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48275ddb189bff5826a3311b720b7867d6deb49c80c9d038b98dff3b73fdc19 +size 6941 diff --git a/Skins/rafis_gothic/default-6.png b/Skins/rafis_gothic/default-6.png new file mode 100644 index 00000000..4c98a3e9 --- /dev/null +++ b/Skins/rafis_gothic/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29922c9f2767333157884ac0b2425d84b66ff6d90482ce2d4c3be9e5d2f60a93 +size 1937 diff --git a/Skins/rafis_gothic/default-6@2x.png b/Skins/rafis_gothic/default-6@2x.png new file mode 100644 index 00000000..f95fd0ac --- /dev/null +++ b/Skins/rafis_gothic/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bec247d84519db88f0466b6106e2535f131a57827530b22b9424ed3ee59b77f +size 6823 diff --git a/Skins/rafis_gothic/default-7.png b/Skins/rafis_gothic/default-7.png new file mode 100644 index 00000000..fcb5ccb6 --- /dev/null +++ b/Skins/rafis_gothic/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b4fd2a4bb4f49af299623df217feda98dbd9454dc734fda981f351e11eaf77 +size 1714 diff --git a/Skins/rafis_gothic/default-7@2x.png b/Skins/rafis_gothic/default-7@2x.png new file mode 100644 index 00000000..7054fd57 --- /dev/null +++ b/Skins/rafis_gothic/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2d02625a1f0bfb51a3a0083570b8d4aa045abdde903d491aa2c2c54c5e0d3c +size 5974 diff --git a/Skins/rafis_gothic/default-8.png b/Skins/rafis_gothic/default-8.png new file mode 100644 index 00000000..0e3f1277 --- /dev/null +++ b/Skins/rafis_gothic/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5777e14c0196cae71fe7361619e9711ac9d1e2964aa6ec5458d55de1c9bd5e7 +size 1992 diff --git a/Skins/rafis_gothic/default-8@2x.png b/Skins/rafis_gothic/default-8@2x.png new file mode 100644 index 00000000..92724fb7 --- /dev/null +++ b/Skins/rafis_gothic/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a78b5aa5f15978214b14dc24cea99d89efa36d1db1e0a584e90c8f45041160 +size 7004 diff --git a/Skins/rafis_gothic/default-9.png b/Skins/rafis_gothic/default-9.png new file mode 100644 index 00000000..912e1a56 --- /dev/null +++ b/Skins/rafis_gothic/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3030d165a0fed2e569fd7b9097f323126d39f1a5be3602790cb290065af71b6 +size 1881 diff --git a/Skins/rafis_gothic/default-9@2x.png b/Skins/rafis_gothic/default-9@2x.png new file mode 100644 index 00000000..091742b9 --- /dev/null +++ b/Skins/rafis_gothic/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052a316769678c5a6bf62699c4ea21d13e980ce7dc1deae1251cf8e2ba29a5e8 +size 7363 diff --git a/Skins/rafis_gothic/drum--hitwhistle.ogg b/Skins/rafis_gothic/drum--hitwhistle.ogg new file mode 100644 index 00000000..6616f5ab --- /dev/null +++ b/Skins/rafis_gothic/drum--hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e25b951022cc21468e6391381b05a9b98e6e5745e97d1b8fa5a8c76f42ccd8b +size 4426 diff --git a/Skins/rafis_gothic/drum-hitclap.wav b/Skins/rafis_gothic/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/rafis_gothic/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/rafis_gothic/drum-hitclap2.ogg b/Skins/rafis_gothic/drum-hitclap2.ogg new file mode 100644 index 00000000..8ca3742f --- /dev/null +++ b/Skins/rafis_gothic/drum-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad3745a5ced85a257671befabe399c3ee5beb34dbdb21d85df5f7adb95dfdf3 +size 18985 diff --git a/Skins/rafis_gothic/drum-hitfinish.wav b/Skins/rafis_gothic/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/rafis_gothic/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/rafis_gothic/drum-hitnormal.wav b/Skins/rafis_gothic/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/rafis_gothic/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/rafis_gothic/drum-hitwhistle.wav b/Skins/rafis_gothic/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/rafis_gothic/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/rafis_gothic/drum-sliderslide.wav b/Skins/rafis_gothic/drum-sliderslide.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/rafis_gothic/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/rafis_gothic/drum-slidertick.wav b/Skins/rafis_gothic/drum-slidertick.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/rafis_gothic/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/rafis_gothic/drum-sliderwhistle.wav b/Skins/rafis_gothic/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/fail-background.png b/Skins/rafis_gothic/fail-background.png new file mode 100644 index 00000000..9b12374c --- /dev/null +++ b/Skins/rafis_gothic/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6be4d37ec7123663a9cc739f2bf2ee1bb01eaefdb90e4a08cdab9870f2d426 +size 2575985 diff --git a/Skins/rafis_gothic/failsound.ogg b/Skins/rafis_gothic/failsound.ogg new file mode 100644 index 00000000..4fe160c6 --- /dev/null +++ b/Skins/rafis_gothic/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d7278404437fab0e8146f5949186b7bf0b499182f54617609cdf012d496cf4 +size 44902 diff --git a/Skins/rafis_gothic/followpoint-0.png b/Skins/rafis_gothic/followpoint-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/rafis_gothic/followpoint-1.png b/Skins/rafis_gothic/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/followpoint-2.png b/Skins/rafis_gothic/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/followpoint-3.png b/Skins/rafis_gothic/followpoint-3.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/rafis_gothic/followpoint-4.png b/Skins/rafis_gothic/followpoint-4.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/rafis_gothic/followpoint-5.png b/Skins/rafis_gothic/followpoint-5.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/rafis_gothic/followpoint-6.png b/Skins/rafis_gothic/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/followpoint-7.png b/Skins/rafis_gothic/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/followpoint-8.png b/Skins/rafis_gothic/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/followpoint-9.png b/Skins/rafis_gothic/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/followpoint.png b/Skins/rafis_gothic/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/rafis_gothic/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/rafis_gothic/go.png b/Skins/rafis_gothic/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis_gothic/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis_gothic/gos.ogg b/Skins/rafis_gothic/gos.ogg new file mode 100644 index 00000000..4d4118d0 --- /dev/null +++ b/Skins/rafis_gothic/gos.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984bb54cb198ef4bb12b81b2861643990f1cfbc3053ecbf84276c1d577c41421 +size 4426 diff --git a/Skins/rafis_gothic/gos.wav b/Skins/rafis_gothic/gos.wav new file mode 100644 index 00000000..4e7ef397 --- /dev/null +++ b/Skins/rafis_gothic/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5766e526212c03e315e5033adef98446bce02f525f1a283f546b215bd5f1de +size 52964 diff --git a/Skins/rafis_gothic/heartbeat.wav b/Skins/rafis_gothic/heartbeat.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/heartbeat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/hit0.png b/Skins/rafis_gothic/hit0.png new file mode 100644 index 00000000..5234ccdc --- /dev/null +++ b/Skins/rafis_gothic/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4cd4105f144f84a339d748422a71a5d69ff9ae122e1b284e804f2387a7892b +size 68458 diff --git a/Skins/rafis_gothic/hit100-0.png b/Skins/rafis_gothic/hit100-0.png new file mode 100644 index 00000000..68dbe724 --- /dev/null +++ b/Skins/rafis_gothic/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d898134b6632193a84ce2b1b3fc24a148f6461c2146912b8e380fcd9cd5934f +size 7031 diff --git a/Skins/rafis_gothic/hit100-0@2x.png b/Skins/rafis_gothic/hit100-0@2x.png new file mode 100644 index 00000000..7086fc9d --- /dev/null +++ b/Skins/rafis_gothic/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1926c7306214d4dc4a866e9a4c0c1c79e2725b135de3f9a3045566b9be9a5191 +size 6643 diff --git a/Skins/rafis_gothic/hit100.png b/Skins/rafis_gothic/hit100.png new file mode 100644 index 00000000..3e46bf38 --- /dev/null +++ b/Skins/rafis_gothic/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9c6f284291dc3cf27cd2288e09c500c19cb412e6e8c71bcfe0c1086338dc2a +size 10869 diff --git a/Skins/rafis_gothic/hit100@2x.png b/Skins/rafis_gothic/hit100@2x.png new file mode 100644 index 00000000..165e1352 --- /dev/null +++ b/Skins/rafis_gothic/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bb8815e994d9919a5a94ef0ba18a5a4952814464bcb555cecf19af9c8ff49d +size 9905 diff --git a/Skins/rafis_gothic/hit100k-0.png b/Skins/rafis_gothic/hit100k-0.png new file mode 100644 index 00000000..e01a38ce --- /dev/null +++ b/Skins/rafis_gothic/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda94ac254a8ca99742c643eaeecd87efd640a76ee49cf1ee4914d2356653cd8 +size 8624 diff --git a/Skins/rafis_gothic/hit100k-0@2x.png b/Skins/rafis_gothic/hit100k-0@2x.png new file mode 100644 index 00000000..6fe97234 --- /dev/null +++ b/Skins/rafis_gothic/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d2d65d765d7af47a87cd93106ef56033e146960ed490a738fd5a962e0bb837 +size 13252 diff --git a/Skins/rafis_gothic/hit100k.png b/Skins/rafis_gothic/hit100k.png new file mode 100644 index 00000000..6f8134aa --- /dev/null +++ b/Skins/rafis_gothic/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d6d4701f8afe9162779fb4dc186aa00be7af09ad6275ae936f1081834e1d91 +size 14781 diff --git a/Skins/rafis_gothic/hit100k@2x.png b/Skins/rafis_gothic/hit100k@2x.png new file mode 100644 index 00000000..2f07b86a --- /dev/null +++ b/Skins/rafis_gothic/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0554d1f5f80c40db813f2e885d389c8451f5c042ea36b7a2d2aa33432e8ed3f7 +size 19758 diff --git a/Skins/rafis_gothic/hit300-0.png b/Skins/rafis_gothic/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis_gothic/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis_gothic/hit300.png b/Skins/rafis_gothic/hit300.png new file mode 100644 index 00000000..bebee13d --- /dev/null +++ b/Skins/rafis_gothic/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92a0efa1f778b60e87c45472aefff9eca355205f548c97922982369f4ca67f9 +size 15303 diff --git a/Skins/rafis_gothic/hit300g-0.png b/Skins/rafis_gothic/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis_gothic/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis_gothic/hit300g.png b/Skins/rafis_gothic/hit300g.png new file mode 100644 index 00000000..06898bd1 --- /dev/null +++ b/Skins/rafis_gothic/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9dce9a7b07b046e0339f3d42f6533d4c192a82152a35c8604a6ca2acce8139 +size 15303 diff --git a/Skins/rafis_gothic/hit300k-0.png b/Skins/rafis_gothic/hit300k-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis_gothic/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis_gothic/hit300k.png b/Skins/rafis_gothic/hit300k.png new file mode 100644 index 00000000..73be744d --- /dev/null +++ b/Skins/rafis_gothic/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf04b07be1b930d567c094c880dff321d6ed4a2559262a02d25bc2584f2f536b +size 15303 diff --git a/Skins/rafis_gothic/hit50-0.png b/Skins/rafis_gothic/hit50-0.png new file mode 100644 index 00000000..04fdf4c4 --- /dev/null +++ b/Skins/rafis_gothic/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd3ef4fa5cf3cf9ec672a847716ca09908cadf01ff1ad72c496646069c4055bb +size 6034 diff --git a/Skins/rafis_gothic/hit50-0@2x.png b/Skins/rafis_gothic/hit50-0@2x.png new file mode 100644 index 00000000..b088dfe1 --- /dev/null +++ b/Skins/rafis_gothic/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dd52aac33996a5e10a5363e998e9c618c799e2f56b1ac3a061322a8116d9a1 +size 7141 diff --git a/Skins/rafis_gothic/hit50.png b/Skins/rafis_gothic/hit50.png new file mode 100644 index 00000000..264a897f --- /dev/null +++ b/Skins/rafis_gothic/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a6cfc5bcc530e434cdac196eef29720dfa14d41f3b8df2866d0753098108ee +size 8973 diff --git a/Skins/rafis_gothic/hit50@2x.png b/Skins/rafis_gothic/hit50@2x.png new file mode 100644 index 00000000..63298ee7 --- /dev/null +++ b/Skins/rafis_gothic/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86411bd11e3ae0108701e2d3eaa4d208c894315e568b41329788c4d8ffcf6e3 +size 11102 diff --git a/Skins/rafis_gothic/hitcircle.png b/Skins/rafis_gothic/hitcircle.png new file mode 100644 index 00000000..8e534b60 --- /dev/null +++ b/Skins/rafis_gothic/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc199baa157557e3b0785beaa2cfac4955013b79feadc0b7580bfdb5375a1ab +size 11731 diff --git a/Skins/rafis_gothic/hitcircle@2x.png b/Skins/rafis_gothic/hitcircle@2x.png new file mode 100644 index 00000000..36cc08d8 --- /dev/null +++ b/Skins/rafis_gothic/hitcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8ad3b26ed669dd9eb1951ecf4a8f18b97c727716fb94440e11d0a850eaacb2 +size 28144 diff --git a/Skins/rafis_gothic/hitcircleoverlay.png b/Skins/rafis_gothic/hitcircleoverlay.png new file mode 100644 index 00000000..fcdb3a71 --- /dev/null +++ b/Skins/rafis_gothic/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbac39a2b7e4219c5d7edcbe4153700f569964cd7458a9c464f67af00cbcd2e8 +size 12822 diff --git a/Skins/rafis_gothic/hitcircleoverlay@2x.png b/Skins/rafis_gothic/hitcircleoverlay@2x.png new file mode 100644 index 00000000..e49a0305 --- /dev/null +++ b/Skins/rafis_gothic/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a20a50a4d294df25e9ddd92b3ef460945e41bc0d2d45aa59909f2b44a37fe4 +size 30284 diff --git a/Skins/rafis_gothic/hitcircleselect.png b/Skins/rafis_gothic/hitcircleselect.png new file mode 100644 index 00000000..016ce9fc --- /dev/null +++ b/Skins/rafis_gothic/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d2d6ea62c23d370b06640e82c190d995ebdcd97a11d4daad2813630442d2d4 +size 6957 diff --git a/Skins/rafis_gothic/hitcircleselect@2x.png b/Skins/rafis_gothic/hitcircleselect@2x.png new file mode 100644 index 00000000..796fa239 --- /dev/null +++ b/Skins/rafis_gothic/hitcircleselect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948dc3875aea0743ff0c5e79cc4dea2d38e73909620296371c52e341af91e05 +size 10181 diff --git a/Skins/rafis_gothic/inputoverlay-background.png b/Skins/rafis_gothic/inputoverlay-background.png new file mode 100644 index 00000000..98692fce --- /dev/null +++ b/Skins/rafis_gothic/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd822d24a4078d4e6be438962e5e3314ad14386eeb702dda06e82e2ab7c219b2 +size 4154 diff --git a/Skins/rafis_gothic/inputoverlay-background@2x.png b/Skins/rafis_gothic/inputoverlay-background@2x.png new file mode 100644 index 00000000..1332731e --- /dev/null +++ b/Skins/rafis_gothic/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e056f914e28bcd028beb496ca31b7e72922f611ff1eeca2a81733ca4b5d978 +size 6305 diff --git a/Skins/rafis_gothic/inputoverlay-key.png b/Skins/rafis_gothic/inputoverlay-key.png new file mode 100644 index 00000000..a01fd519 --- /dev/null +++ b/Skins/rafis_gothic/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:828d7aad27269fca30a20348688f3d566793e971519c848779e92ef49fee7ee3 +size 3544 diff --git a/Skins/rafis_gothic/inputoverlay-key@2x.png b/Skins/rafis_gothic/inputoverlay-key@2x.png new file mode 100644 index 00000000..7dad1f1e --- /dev/null +++ b/Skins/rafis_gothic/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe382682230bea874d70aa399f8df041c14f4fe20f4b8e21135b741f4d38d3a9 +size 4317 diff --git a/Skins/rafis_gothic/menu-back-0.PNG b/Skins/rafis_gothic/menu-back-0.PNG new file mode 100644 index 00000000..83987805 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-0.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f0728dfd1d6ff65af0523cca75ba66b6afa41d59cd7a69563182acf5a41913 +size 37465 diff --git a/Skins/rafis_gothic/menu-back-0@2x.png b/Skins/rafis_gothic/menu-back-0@2x.png new file mode 100644 index 00000000..bdd9b0cc --- /dev/null +++ b/Skins/rafis_gothic/menu-back-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd12daa1645b24c0071433023e757a23f07d245ecc7ff5e2c62021a181c8f1 +size 93326 diff --git a/Skins/rafis_gothic/menu-back-1.PNG b/Skins/rafis_gothic/menu-back-1.PNG new file mode 100644 index 00000000..83987805 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-1.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f0728dfd1d6ff65af0523cca75ba66b6afa41d59cd7a69563182acf5a41913 +size 37465 diff --git a/Skins/rafis_gothic/menu-back-10.PNG b/Skins/rafis_gothic/menu-back-10.PNG new file mode 100644 index 00000000..1f39c042 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-10.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be160ac49ce520fa6d43e4b46bed27e7102e176c4da22f69963627b7a330432a +size 37310 diff --git a/Skins/rafis_gothic/menu-back-10@2x.png b/Skins/rafis_gothic/menu-back-10@2x.png new file mode 100644 index 00000000..37965dbc --- /dev/null +++ b/Skins/rafis_gothic/menu-back-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce7114d78f876d57c55468d3e00638c9fddc0a2090e2aef2d37c2d4362676bc +size 93057 diff --git a/Skins/rafis_gothic/menu-back-11.PNG b/Skins/rafis_gothic/menu-back-11.PNG new file mode 100644 index 00000000..1f39c042 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-11.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be160ac49ce520fa6d43e4b46bed27e7102e176c4da22f69963627b7a330432a +size 37310 diff --git a/Skins/rafis_gothic/menu-back-11@2x.png b/Skins/rafis_gothic/menu-back-11@2x.png new file mode 100644 index 00000000..37965dbc --- /dev/null +++ b/Skins/rafis_gothic/menu-back-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce7114d78f876d57c55468d3e00638c9fddc0a2090e2aef2d37c2d4362676bc +size 93057 diff --git a/Skins/rafis_gothic/menu-back-1@2x.png b/Skins/rafis_gothic/menu-back-1@2x.png new file mode 100644 index 00000000..bdd9b0cc --- /dev/null +++ b/Skins/rafis_gothic/menu-back-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd12daa1645b24c0071433023e757a23f07d245ecc7ff5e2c62021a181c8f1 +size 93326 diff --git a/Skins/rafis_gothic/menu-back-2.png b/Skins/rafis_gothic/menu-back-2.png new file mode 100644 index 00000000..83987805 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f0728dfd1d6ff65af0523cca75ba66b6afa41d59cd7a69563182acf5a41913 +size 37465 diff --git a/Skins/rafis_gothic/menu-back-2@2x.png b/Skins/rafis_gothic/menu-back-2@2x.png new file mode 100644 index 00000000..bdd9b0cc --- /dev/null +++ b/Skins/rafis_gothic/menu-back-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd12daa1645b24c0071433023e757a23f07d245ecc7ff5e2c62021a181c8f1 +size 93326 diff --git a/Skins/rafis_gothic/menu-back-3.PNG b/Skins/rafis_gothic/menu-back-3.PNG new file mode 100644 index 00000000..282c2f31 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-3.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37882664ff7ea4e3c0ce5774c31ee0258cc730226801dd29aba7652e1040ab24 +size 37283 diff --git a/Skins/rafis_gothic/menu-back-3@2x.png b/Skins/rafis_gothic/menu-back-3@2x.png new file mode 100644 index 00000000..ec9a0e90 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbc6c28a8cc354c4aa61e26ed303bfbaf7440167ddab6a6369df494bb7f2c5b +size 93119 diff --git a/Skins/rafis_gothic/menu-back-4.png b/Skins/rafis_gothic/menu-back-4.png new file mode 100644 index 00000000..282c2f31 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37882664ff7ea4e3c0ce5774c31ee0258cc730226801dd29aba7652e1040ab24 +size 37283 diff --git a/Skins/rafis_gothic/menu-back-4@2x.png b/Skins/rafis_gothic/menu-back-4@2x.png new file mode 100644 index 00000000..ec9a0e90 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbc6c28a8cc354c4aa61e26ed303bfbaf7440167ddab6a6369df494bb7f2c5b +size 93119 diff --git a/Skins/rafis_gothic/menu-back-5.PNG b/Skins/rafis_gothic/menu-back-5.PNG new file mode 100644 index 00000000..282c2f31 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-5.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37882664ff7ea4e3c0ce5774c31ee0258cc730226801dd29aba7652e1040ab24 +size 37283 diff --git a/Skins/rafis_gothic/menu-back-5@2x.png b/Skins/rafis_gothic/menu-back-5@2x.png new file mode 100644 index 00000000..ec9a0e90 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbc6c28a8cc354c4aa61e26ed303bfbaf7440167ddab6a6369df494bb7f2c5b +size 93119 diff --git a/Skins/rafis_gothic/menu-back-6.PNG b/Skins/rafis_gothic/menu-back-6.PNG new file mode 100644 index 00000000..4c4f1312 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-6.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4aa52070a63e536bb797378354c01c0bcc6b415faafce38ca2a7ed3024e51 +size 37271 diff --git a/Skins/rafis_gothic/menu-back-6@2x.png b/Skins/rafis_gothic/menu-back-6@2x.png new file mode 100644 index 00000000..4992cecd --- /dev/null +++ b/Skins/rafis_gothic/menu-back-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dbf83d2f9bbf96629aeb19e3f89ca7373f2daf9bc9366bf8b83e040df7d5e4 +size 93082 diff --git a/Skins/rafis_gothic/menu-back-7.PNG b/Skins/rafis_gothic/menu-back-7.PNG new file mode 100644 index 00000000..4c4f1312 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-7.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4aa52070a63e536bb797378354c01c0bcc6b415faafce38ca2a7ed3024e51 +size 37271 diff --git a/Skins/rafis_gothic/menu-back-7@2x.png b/Skins/rafis_gothic/menu-back-7@2x.png new file mode 100644 index 00000000..4992cecd --- /dev/null +++ b/Skins/rafis_gothic/menu-back-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dbf83d2f9bbf96629aeb19e3f89ca7373f2daf9bc9366bf8b83e040df7d5e4 +size 93082 diff --git a/Skins/rafis_gothic/menu-back-8.PNG b/Skins/rafis_gothic/menu-back-8.PNG new file mode 100644 index 00000000..4c4f1312 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-8.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4aa52070a63e536bb797378354c01c0bcc6b415faafce38ca2a7ed3024e51 +size 37271 diff --git a/Skins/rafis_gothic/menu-back-8@2x.png b/Skins/rafis_gothic/menu-back-8@2x.png new file mode 100644 index 00000000..4992cecd --- /dev/null +++ b/Skins/rafis_gothic/menu-back-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dbf83d2f9bbf96629aeb19e3f89ca7373f2daf9bc9366bf8b83e040df7d5e4 +size 93082 diff --git a/Skins/rafis_gothic/menu-back-9.PNG b/Skins/rafis_gothic/menu-back-9.PNG new file mode 100644 index 00000000..1f39c042 --- /dev/null +++ b/Skins/rafis_gothic/menu-back-9.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be160ac49ce520fa6d43e4b46bed27e7102e176c4da22f69963627b7a330432a +size 37310 diff --git a/Skins/rafis_gothic/menu-back-9@2x.png b/Skins/rafis_gothic/menu-back-9@2x.png new file mode 100644 index 00000000..37965dbc --- /dev/null +++ b/Skins/rafis_gothic/menu-back-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce7114d78f876d57c55468d3e00638c9fddc0a2090e2aef2d37c2d4362676bc +size 93057 diff --git a/Skins/rafis_gothic/menu-background.jpg b/Skins/rafis_gothic/menu-background.jpg new file mode 100644 index 00000000..d194201a --- /dev/null +++ b/Skins/rafis_gothic/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15523f24ed453d1abd699ed2ef26ed49befb9a3e505f1f47e42640b4305a73d0 +size 435652 diff --git a/Skins/rafis_gothic/menu-button-background.png b/Skins/rafis_gothic/menu-button-background.png new file mode 100644 index 00000000..1ea6975e --- /dev/null +++ b/Skins/rafis_gothic/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5153e4c598d4a29e9c42a7eb7210696c1759b010b27b4f03da60e840f8546c61 +size 18633 diff --git a/Skins/rafis_gothic/menu-snow.png b/Skins/rafis_gothic/menu-snow.png new file mode 100644 index 00000000..1a99fc1c --- /dev/null +++ b/Skins/rafis_gothic/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d074942bd55ab12d342ede71123d4face48997afb14c895e8c0aa9331817a830 +size 6570 diff --git a/Skins/rafis_gothic/menu-snow@2x.png b/Skins/rafis_gothic/menu-snow@2x.png new file mode 100644 index 00000000..7486006b --- /dev/null +++ b/Skins/rafis_gothic/menu-snow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4f68274d893821a0de6a604c4759eca03270efcb9cbdfa244d0dae4cec023 +size 8157 diff --git a/Skins/rafis_gothic/menuback.ogg b/Skins/rafis_gothic/menuback.ogg new file mode 100644 index 00000000..63636a12 --- /dev/null +++ b/Skins/rafis_gothic/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89457cfba16f8e37edf826a00b03024b0e15da6432dce485d60863c99f0f473 +size 5118 diff --git a/Skins/rafis_gothic/menuback.wav b/Skins/rafis_gothic/menuback.wav new file mode 100644 index 00000000..79313089 --- /dev/null +++ b/Skins/rafis_gothic/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3e3569ccfd2c96710b3ace11d98b2fc854e81153d71f0bb4d3ee22bfa4574a +size 18516 diff --git a/Skins/rafis_gothic/menuclick.ogg b/Skins/rafis_gothic/menuclick.ogg new file mode 100644 index 00000000..e0e0d08d --- /dev/null +++ b/Skins/rafis_gothic/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a1e7c1dc48306a57367bacd0940c01a89c32ed08d825f7673021793fee20a3 +size 3967 diff --git a/Skins/rafis_gothic/menuclick.wav b/Skins/rafis_gothic/menuclick.wav new file mode 100644 index 00000000..d7938210 --- /dev/null +++ b/Skins/rafis_gothic/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1844d45e7230b77bab7e9fadc3d462a5db9257af7c73e692c144459b2166fd +size 4844 diff --git a/Skins/rafis_gothic/menuhit.ogg b/Skins/rafis_gothic/menuhit.ogg new file mode 100644 index 00000000..b6270d1c --- /dev/null +++ b/Skins/rafis_gothic/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da40ab88658dafbcd63f4e30aaf7e883be40c042de374a2e3e2747eb828dc5c0 +size 4784 diff --git a/Skins/rafis_gothic/metronomehigh.wav b/Skins/rafis_gothic/metronomehigh.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/rafis_gothic/metronomehigh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/rafis_gothic/metronomelow.wav b/Skins/rafis_gothic/metronomelow.wav new file mode 100644 index 00000000..54118b1b --- /dev/null +++ b/Skins/rafis_gothic/metronomelow.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7daa0ba32bbf89584333452ca961182e4d7208af2571d0755fe81cc1afe8e9e +size 136 diff --git a/Skins/rafis_gothic/normal-hitclap.wav b/Skins/rafis_gothic/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/rafis_gothic/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/rafis_gothic/normal-hitclap2.ogg b/Skins/rafis_gothic/normal-hitclap2.ogg new file mode 100644 index 00000000..a5ac38e6 --- /dev/null +++ b/Skins/rafis_gothic/normal-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ef388f18b6ae70d7240c86a15b2d521fcc09805c1101617704a360efdc6448 +size 18985 diff --git a/Skins/rafis_gothic/normal-hitfinish.wav b/Skins/rafis_gothic/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/rafis_gothic/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/rafis_gothic/normal-hitfinish2.ogg b/Skins/rafis_gothic/normal-hitfinish2.ogg new file mode 100644 index 00000000..15a5e48d --- /dev/null +++ b/Skins/rafis_gothic/normal-hitfinish2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a6a663a012e60ac1be757038ce93724326f164ef68935ed0d0682ce789496f +size 38310 diff --git a/Skins/rafis_gothic/normal-hitnormal.wav b/Skins/rafis_gothic/normal-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/rafis_gothic/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/rafis_gothic/normal-hitnormal2.ogg b/Skins/rafis_gothic/normal-hitnormal2.ogg new file mode 100644 index 00000000..837a7ff8 --- /dev/null +++ b/Skins/rafis_gothic/normal-hitnormal2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d176aa259b133472378b8a6aa4a57ed56f83b15fc851ea72f44572a7d04c9a2d +size 10576 diff --git a/Skins/rafis_gothic/normal-hitwhistle.wav b/Skins/rafis_gothic/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/rafis_gothic/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/rafis_gothic/normal-hitwhistle2.ogg b/Skins/rafis_gothic/normal-hitwhistle2.ogg new file mode 100644 index 00000000..99842891 --- /dev/null +++ b/Skins/rafis_gothic/normal-hitwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a41f988eeea6ea9b67d596fd6ebc0feb606d2952e467ea5c1c166cabaefb76f +size 20837 diff --git a/Skins/rafis_gothic/normal-hitwistle.ogg b/Skins/rafis_gothic/normal-hitwistle.ogg new file mode 100644 index 00000000..7433d679 --- /dev/null +++ b/Skins/rafis_gothic/normal-hitwistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56301dc35dd095ff25d8b519eabcc4a681f324aaa342a83d0d21a01f03ae24bf +size 7572 diff --git a/Skins/rafis_gothic/normal-sliderslide.wav b/Skins/rafis_gothic/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/normal-sliderslide2.ogg b/Skins/rafis_gothic/normal-sliderslide2.ogg new file mode 100644 index 00000000..f91d830e --- /dev/null +++ b/Skins/rafis_gothic/normal-sliderslide2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2035e7687e21e5171454b54e500f1cd0a905ec8f372b738b300c3b99e233f857 +size 4426 diff --git a/Skins/rafis_gothic/normal-slidertick.wav b/Skins/rafis_gothic/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/rafis_gothic/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/rafis_gothic/normal-slidertick2.ogg b/Skins/rafis_gothic/normal-slidertick2.ogg new file mode 100644 index 00000000..32d8e68c --- /dev/null +++ b/Skins/rafis_gothic/normal-slidertick2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ed08b6d97964430ac1684ac146eb29e345e0d5c15ff654579fbe596c6f487f +size 4426 diff --git a/Skins/rafis_gothic/normal-sliderwhistle.wav b/Skins/rafis_gothic/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/normal-sliderwhistle2.ogg b/Skins/rafis_gothic/normal-sliderwhistle2.ogg new file mode 100644 index 00000000..0353f513 --- /dev/null +++ b/Skins/rafis_gothic/normal-sliderwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4238dbfda3a88dbe9516b82e0831ce2516f6c2cec1712b08762e672d4ca2dff9 +size 4426 diff --git a/Skins/rafis_gothic/pause-back.png b/Skins/rafis_gothic/pause-back.png new file mode 100644 index 00000000..72dc34eb --- /dev/null +++ b/Skins/rafis_gothic/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab410942cd87d21f86ce16a42e6d92d3ac51aa5007ed0540e0bea9738ab621bf +size 201453 diff --git a/Skins/rafis_gothic/pause-continue.png b/Skins/rafis_gothic/pause-continue.png new file mode 100644 index 00000000..d00fc2d3 --- /dev/null +++ b/Skins/rafis_gothic/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09be14408ea61690e593d76037a1c351ea129888fef4524330ac78f5a6a4ae9e +size 201437 diff --git a/Skins/rafis_gothic/pause-overlay.png b/Skins/rafis_gothic/pause-overlay.png new file mode 100644 index 00000000..73ea9bc7 --- /dev/null +++ b/Skins/rafis_gothic/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7346e1f433d34ee96637f40548fc7b0064d916c2f8d2f87981f17197c14138 +size 2575414 diff --git a/Skins/rafis_gothic/pause-replay.png b/Skins/rafis_gothic/pause-replay.png new file mode 100644 index 00000000..12516c47 --- /dev/null +++ b/Skins/rafis_gothic/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab0e01e3ac4f71b7683c136dce2d9956f986ac6ffd8fc8310fcce541ec842fd +size 10773 diff --git a/Skins/rafis_gothic/pause-replay@2x.png b/Skins/rafis_gothic/pause-replay@2x.png new file mode 100644 index 00000000..2ff6687a --- /dev/null +++ b/Skins/rafis_gothic/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e737feb07fd2c5e915b3bb24e50af36104cb06d6d644249e967f25a131fc162 +size 16969 diff --git a/Skins/rafis_gothic/pause-retry.png b/Skins/rafis_gothic/pause-retry.png new file mode 100644 index 00000000..e1975c95 --- /dev/null +++ b/Skins/rafis_gothic/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76f9fa46d46d2616503986ed09bc8a2b85fe212801c1b09878443ef146f57cc +size 201425 diff --git a/Skins/rafis_gothic/play-skip-0.png b/Skins/rafis_gothic/play-skip-0.png new file mode 100644 index 00000000..7a4ac870 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac945a4f1cb79142fcfb9203f5611c5e4dd6c50f5976a79826bcdb7d09315a10 +size 168253 diff --git a/Skins/rafis_gothic/play-skip-0@2x.png b/Skins/rafis_gothic/play-skip-0@2x.png new file mode 100644 index 00000000..b935fe57 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77903dd47078efb8ef1e527a2db1d4d19d9de512399e7c54383d7c94e33be283 +size 400443 diff --git a/Skins/rafis_gothic/play-skip-1.PNG b/Skins/rafis_gothic/play-skip-1.PNG new file mode 100644 index 00000000..7b3c5a5d --- /dev/null +++ b/Skins/rafis_gothic/play-skip-1.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9cd0b361c8a68fb4070956903d71962d8f6486409e31183accd424af061b4f +size 169480 diff --git a/Skins/rafis_gothic/play-skip-10.PNG b/Skins/rafis_gothic/play-skip-10.PNG new file mode 100644 index 00000000..74325723 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-10.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a045048ef31ab9e6e14b9eba5342b981f5d1aeb3a7c521a4e6ae97c3247554 +size 169392 diff --git a/Skins/rafis_gothic/play-skip-10@2x.png b/Skins/rafis_gothic/play-skip-10@2x.png new file mode 100644 index 00000000..bf7448cc --- /dev/null +++ b/Skins/rafis_gothic/play-skip-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e551f9c79477ec0e415e005a5c038cebbc29ca6adca6683fe88699ff20018545 +size 400753 diff --git a/Skins/rafis_gothic/play-skip-11.PNG b/Skins/rafis_gothic/play-skip-11.PNG new file mode 100644 index 00000000..2a9d1c1f --- /dev/null +++ b/Skins/rafis_gothic/play-skip-11.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56b87c12a0c0a20615dfd21d43e7334f3abd873c94a7fceed76176bcd9431a0 +size 169427 diff --git a/Skins/rafis_gothic/play-skip-11@2x.png b/Skins/rafis_gothic/play-skip-11@2x.png new file mode 100644 index 00000000..c97f43f8 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eed75a5f9c54cd853f8551ae8c322fe2e87336571eb3d57856a508ba5804bba +size 400862 diff --git a/Skins/rafis_gothic/play-skip-12.PNG b/Skins/rafis_gothic/play-skip-12.PNG new file mode 100644 index 00000000..3c0e78c6 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-12.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423353d667c357dd602c76a8b79a56a7b85eb7fe1fc01c4c07f0e36743e51a66 +size 169593 diff --git a/Skins/rafis_gothic/play-skip-12@2x.png b/Skins/rafis_gothic/play-skip-12@2x.png new file mode 100644 index 00000000..11f57bd7 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfe5d63f150308f61148d4e980c922582523532241d243d8b9ef4915272639e +size 400819 diff --git a/Skins/rafis_gothic/play-skip-13.png b/Skins/rafis_gothic/play-skip-13.png new file mode 100644 index 00000000..90847447 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008a6ef149e2e1345cf58b863c79bf3d9a5804fb916fcffd881cbc3db04cf9dc +size 169661 diff --git a/Skins/rafis_gothic/play-skip-13@2x.png b/Skins/rafis_gothic/play-skip-13@2x.png new file mode 100644 index 00000000..ea552c9d --- /dev/null +++ b/Skins/rafis_gothic/play-skip-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff7a7583627157fe9a3f4fce1b131f584a01366286b78b699f6ad3849a3e896 +size 400751 diff --git a/Skins/rafis_gothic/play-skip-14.png b/Skins/rafis_gothic/play-skip-14.png new file mode 100644 index 00000000..877881cd --- /dev/null +++ b/Skins/rafis_gothic/play-skip-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389039ddd02cb72f7424601e9ac9811e7e7f5457b5753a8c8183ab8f1ce06fbf +size 170113 diff --git a/Skins/rafis_gothic/play-skip-14@2x.png b/Skins/rafis_gothic/play-skip-14@2x.png new file mode 100644 index 00000000..59f030c2 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d317a90b259adbc5f504444a779a393a523bacbf183e494fc64e5d004b6cb7 +size 401234 diff --git a/Skins/rafis_gothic/play-skip-15.PNG b/Skins/rafis_gothic/play-skip-15.PNG new file mode 100644 index 00000000..877881cd --- /dev/null +++ b/Skins/rafis_gothic/play-skip-15.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389039ddd02cb72f7424601e9ac9811e7e7f5457b5753a8c8183ab8f1ce06fbf +size 170113 diff --git a/Skins/rafis_gothic/play-skip-15@2x.png b/Skins/rafis_gothic/play-skip-15@2x.png new file mode 100644 index 00000000..59f030c2 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d317a90b259adbc5f504444a779a393a523bacbf183e494fc64e5d004b6cb7 +size 401234 diff --git a/Skins/rafis_gothic/play-skip-16.PNG b/Skins/rafis_gothic/play-skip-16.PNG new file mode 100644 index 00000000..877881cd --- /dev/null +++ b/Skins/rafis_gothic/play-skip-16.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389039ddd02cb72f7424601e9ac9811e7e7f5457b5753a8c8183ab8f1ce06fbf +size 170113 diff --git a/Skins/rafis_gothic/play-skip-16@2x.png b/Skins/rafis_gothic/play-skip-16@2x.png new file mode 100644 index 00000000..59f030c2 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d317a90b259adbc5f504444a779a393a523bacbf183e494fc64e5d004b6cb7 +size 401234 diff --git a/Skins/rafis_gothic/play-skip-17.PNG b/Skins/rafis_gothic/play-skip-17.PNG new file mode 100644 index 00000000..90847447 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-17.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008a6ef149e2e1345cf58b863c79bf3d9a5804fb916fcffd881cbc3db04cf9dc +size 169661 diff --git a/Skins/rafis_gothic/play-skip-17@2x.png b/Skins/rafis_gothic/play-skip-17@2x.png new file mode 100644 index 00000000..ea552c9d --- /dev/null +++ b/Skins/rafis_gothic/play-skip-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff7a7583627157fe9a3f4fce1b131f584a01366286b78b699f6ad3849a3e896 +size 400751 diff --git a/Skins/rafis_gothic/play-skip-18.PNG b/Skins/rafis_gothic/play-skip-18.PNG new file mode 100644 index 00000000..3c0e78c6 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-18.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423353d667c357dd602c76a8b79a56a7b85eb7fe1fc01c4c07f0e36743e51a66 +size 169593 diff --git a/Skins/rafis_gothic/play-skip-18@2x.png b/Skins/rafis_gothic/play-skip-18@2x.png new file mode 100644 index 00000000..11f57bd7 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfe5d63f150308f61148d4e980c922582523532241d243d8b9ef4915272639e +size 400819 diff --git a/Skins/rafis_gothic/play-skip-19.PNG b/Skins/rafis_gothic/play-skip-19.PNG new file mode 100644 index 00000000..2a9d1c1f --- /dev/null +++ b/Skins/rafis_gothic/play-skip-19.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56b87c12a0c0a20615dfd21d43e7334f3abd873c94a7fceed76176bcd9431a0 +size 169427 diff --git a/Skins/rafis_gothic/play-skip-19@2x.png b/Skins/rafis_gothic/play-skip-19@2x.png new file mode 100644 index 00000000..c97f43f8 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eed75a5f9c54cd853f8551ae8c322fe2e87336571eb3d57856a508ba5804bba +size 400862 diff --git a/Skins/rafis_gothic/play-skip-1@2x.png b/Skins/rafis_gothic/play-skip-1@2x.png new file mode 100644 index 00000000..559edeb6 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74b0e1b897b8afc8323597a4319db0812746e1286b8817454d5c1f71e8668e7 +size 401000 diff --git a/Skins/rafis_gothic/play-skip-2.PNG b/Skins/rafis_gothic/play-skip-2.PNG new file mode 100644 index 00000000..73fe7d53 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-2.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75c9c28cecc06eda638ac10597136f15d0b7530a45f36e22ade1f6e5ff3728 +size 170129 diff --git a/Skins/rafis_gothic/play-skip-20.PNG b/Skins/rafis_gothic/play-skip-20.PNG new file mode 100644 index 00000000..74325723 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-20.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a045048ef31ab9e6e14b9eba5342b981f5d1aeb3a7c521a4e6ae97c3247554 +size 169392 diff --git a/Skins/rafis_gothic/play-skip-20@2x.png b/Skins/rafis_gothic/play-skip-20@2x.png new file mode 100644 index 00000000..bf7448cc --- /dev/null +++ b/Skins/rafis_gothic/play-skip-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e551f9c79477ec0e415e005a5c038cebbc29ca6adca6683fe88699ff20018545 +size 400753 diff --git a/Skins/rafis_gothic/play-skip-2@2x.png b/Skins/rafis_gothic/play-skip-2@2x.png new file mode 100644 index 00000000..8af3cfa2 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60155863589ea3c35bf904201037db42c639d6ec28df0fb8407ddcf7b2a47779 +size 401192 diff --git a/Skins/rafis_gothic/play-skip-3.PNG b/Skins/rafis_gothic/play-skip-3.PNG new file mode 100644 index 00000000..5c2e984b --- /dev/null +++ b/Skins/rafis_gothic/play-skip-3.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ee6ee2e279cfd9335c9ffd4ee1e3387b638c95881cb1dc6f5aa9b9dc3683cb +size 170056 diff --git a/Skins/rafis_gothic/play-skip-3@2x.png b/Skins/rafis_gothic/play-skip-3@2x.png new file mode 100644 index 00000000..1901d9f6 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a092f4e658654e8ff643db7c6dce1fd9728be43864eab8da4b4de38c49f3e445 +size 401165 diff --git a/Skins/rafis_gothic/play-skip-4.PNG b/Skins/rafis_gothic/play-skip-4.PNG new file mode 100644 index 00000000..1500fd67 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-4.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8239c5dfa54785f630019f16ddbc29f674ac12c54102f29b97353730035783 +size 170198 diff --git a/Skins/rafis_gothic/play-skip-4@2x.png b/Skins/rafis_gothic/play-skip-4@2x.png new file mode 100644 index 00000000..edc9056b --- /dev/null +++ b/Skins/rafis_gothic/play-skip-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb9b2848044de4f1ec670ff656760794668e8d25c287b80fe0d8fbce971fc5d +size 401146 diff --git a/Skins/rafis_gothic/play-skip-5.png b/Skins/rafis_gothic/play-skip-5.png new file mode 100644 index 00000000..1500fd67 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8239c5dfa54785f630019f16ddbc29f674ac12c54102f29b97353730035783 +size 170198 diff --git a/Skins/rafis_gothic/play-skip-5@2x.png b/Skins/rafis_gothic/play-skip-5@2x.png new file mode 100644 index 00000000..edc9056b --- /dev/null +++ b/Skins/rafis_gothic/play-skip-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb9b2848044de4f1ec670ff656760794668e8d25c287b80fe0d8fbce971fc5d +size 401146 diff --git a/Skins/rafis_gothic/play-skip-6.PNG b/Skins/rafis_gothic/play-skip-6.PNG new file mode 100644 index 00000000..5c2e984b --- /dev/null +++ b/Skins/rafis_gothic/play-skip-6.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ee6ee2e279cfd9335c9ffd4ee1e3387b638c95881cb1dc6f5aa9b9dc3683cb +size 170056 diff --git a/Skins/rafis_gothic/play-skip-6@2x.png b/Skins/rafis_gothic/play-skip-6@2x.png new file mode 100644 index 00000000..1901d9f6 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a092f4e658654e8ff643db7c6dce1fd9728be43864eab8da4b4de38c49f3e445 +size 401165 diff --git a/Skins/rafis_gothic/play-skip-7.png b/Skins/rafis_gothic/play-skip-7.png new file mode 100644 index 00000000..73fe7d53 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75c9c28cecc06eda638ac10597136f15d0b7530a45f36e22ade1f6e5ff3728 +size 170129 diff --git a/Skins/rafis_gothic/play-skip-7@2x.png b/Skins/rafis_gothic/play-skip-7@2x.png new file mode 100644 index 00000000..8af3cfa2 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60155863589ea3c35bf904201037db42c639d6ec28df0fb8407ddcf7b2a47779 +size 401192 diff --git a/Skins/rafis_gothic/play-skip-8.PNG b/Skins/rafis_gothic/play-skip-8.PNG new file mode 100644 index 00000000..7b3c5a5d --- /dev/null +++ b/Skins/rafis_gothic/play-skip-8.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9cd0b361c8a68fb4070956903d71962d8f6486409e31183accd424af061b4f +size 169480 diff --git a/Skins/rafis_gothic/play-skip-8@2x.png b/Skins/rafis_gothic/play-skip-8@2x.png new file mode 100644 index 00000000..559edeb6 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74b0e1b897b8afc8323597a4319db0812746e1286b8817454d5c1f71e8668e7 +size 401000 diff --git a/Skins/rafis_gothic/play-skip-9.PNG b/Skins/rafis_gothic/play-skip-9.PNG new file mode 100644 index 00000000..7a4ac870 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-9.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac945a4f1cb79142fcfb9203f5611c5e4dd6c50f5976a79826bcdb7d09315a10 +size 168253 diff --git a/Skins/rafis_gothic/play-skip-9@2x.png b/Skins/rafis_gothic/play-skip-9@2x.png new file mode 100644 index 00000000..b935fe57 --- /dev/null +++ b/Skins/rafis_gothic/play-skip-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77903dd47078efb8ef1e527a2db1d4d19d9de512399e7c54383d7c94e33be283 +size 400443 diff --git a/Skins/rafis_gothic/play-unranked.png b/Skins/rafis_gothic/play-unranked.png new file mode 100644 index 00000000..16bd9eb9 --- /dev/null +++ b/Skins/rafis_gothic/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7354fb979b7e07973ed224085e1b6053fc334c2180ac3f59a77c60faad5b88 +size 9534 diff --git a/Skins/rafis_gothic/play-unranked@2x.png b/Skins/rafis_gothic/play-unranked@2x.png new file mode 100644 index 00000000..467eb22f --- /dev/null +++ b/Skins/rafis_gothic/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b6b6b29b3d8258b9d8a8ee7d254a7002bb895aede2a3a7a3e178944cc7e793 +size 9859 diff --git a/Skins/rafis_gothic/play-warningarrow.png b/Skins/rafis_gothic/play-warningarrow.png new file mode 100644 index 00000000..1a2c72fe --- /dev/null +++ b/Skins/rafis_gothic/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406c0c260958fa3a1e2a637605be042fe7d957c935f39532c7115738eedacd95 +size 3328 diff --git a/Skins/rafis_gothic/play-warningarrow@2x.png b/Skins/rafis_gothic/play-warningarrow@2x.png new file mode 100644 index 00000000..a852aa4b --- /dev/null +++ b/Skins/rafis_gothic/play-warningarrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e264b76bb14ea8d07baf834d3620d8ca0eb7ecce28d8c1cf55f52578c0350c +size 3899 diff --git a/Skins/rafis_gothic/playfield.png b/Skins/rafis_gothic/playfield.png new file mode 100644 index 00000000..e7536edc --- /dev/null +++ b/Skins/rafis_gothic/playfield.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc63421684b6d76baa4fcac4504204292b9ee1b052fa09ac45e174b9223a5ba8 +size 1112190 diff --git a/Skins/rafis_gothic/playfield@2x.png b/Skins/rafis_gothic/playfield@2x.png new file mode 100644 index 00000000..1721f0cf --- /dev/null +++ b/Skins/rafis_gothic/playfield@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a40dcab4d8d66c62dd65f57a51070bf3965cdabf0bddbce6decd6a5750d123fb +size 2580036 diff --git a/Skins/rafis_gothic/ranking-A-small.png b/Skins/rafis_gothic/ranking-A-small.png new file mode 100644 index 00000000..4c84ce62 --- /dev/null +++ b/Skins/rafis_gothic/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f18dfac929985d55e3f50b1c4c7d52fcecd21f4d32640c9adc467c2c8f2b9498 +size 2037 diff --git a/Skins/rafis_gothic/ranking-A-small@2x.png b/Skins/rafis_gothic/ranking-A-small@2x.png new file mode 100644 index 00000000..b6141b3b --- /dev/null +++ b/Skins/rafis_gothic/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49ee7e6985eb843740814c990ab2a1e422a28b0193b46cea9b6654aa6d6797f +size 28644 diff --git a/Skins/rafis_gothic/ranking-A.png b/Skins/rafis_gothic/ranking-A.png new file mode 100644 index 00000000..e3153813 --- /dev/null +++ b/Skins/rafis_gothic/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d813ccccb69adac6179c3c94f1e3cce7bc19b394d7acc3da735ffb45fc8ffaa +size 32249 diff --git a/Skins/rafis_gothic/ranking-A@2x.png b/Skins/rafis_gothic/ranking-A@2x.png new file mode 100644 index 00000000..c07a22c7 --- /dev/null +++ b/Skins/rafis_gothic/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70c7f0714da1e9724a659e0dc00b09a24756cc62b488f75d459accbf38b2fb5 +size 29424 diff --git a/Skins/rafis_gothic/ranking-B-small.png b/Skins/rafis_gothic/ranking-B-small.png new file mode 100644 index 00000000..394828c2 --- /dev/null +++ b/Skins/rafis_gothic/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c66e6bcf4f165039a0dbf4c57769ba75a521fcf8f383c1c76734b6955415d2 +size 2066 diff --git a/Skins/rafis_gothic/ranking-B-small@2x.png b/Skins/rafis_gothic/ranking-B-small@2x.png new file mode 100644 index 00000000..f51a915c --- /dev/null +++ b/Skins/rafis_gothic/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4b23f9fba30f5bde8283384ee50c1904c17c0425385739938bd618618bd062 +size 28936 diff --git a/Skins/rafis_gothic/ranking-B.png b/Skins/rafis_gothic/ranking-B.png new file mode 100644 index 00000000..21841229 --- /dev/null +++ b/Skins/rafis_gothic/ranking-B.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cfa6ad1a229938992d5ef76f597bcae6232ed33713b661889171239d70e071d +size 34819 diff --git a/Skins/rafis_gothic/ranking-B@2x.png b/Skins/rafis_gothic/ranking-B@2x.png new file mode 100644 index 00000000..394c76a3 --- /dev/null +++ b/Skins/rafis_gothic/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f343de9aa42b5dd01894b17af1d364da6cc9123478757ba30b49aac417cc4f2 +size 35789 diff --git a/Skins/rafis_gothic/ranking-C-small.png b/Skins/rafis_gothic/ranking-C-small.png new file mode 100644 index 00000000..6e25fc40 --- /dev/null +++ b/Skins/rafis_gothic/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146697ce94485addae27085ac33b0970e879506d95fb209a04cbd127d96524c7 +size 1736 diff --git a/Skins/rafis_gothic/ranking-C-small@2x.png b/Skins/rafis_gothic/ranking-C-small@2x.png new file mode 100644 index 00000000..8438fdba --- /dev/null +++ b/Skins/rafis_gothic/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a66710694d63a28ea6a8f45ed153773b5d80f53a9d90cecbe1de4443f7a3d6 +size 29139 diff --git a/Skins/rafis_gothic/ranking-C.png b/Skins/rafis_gothic/ranking-C.png new file mode 100644 index 00000000..66d1baae --- /dev/null +++ b/Skins/rafis_gothic/ranking-C.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033238a9a177e5afd1b2b9bda5098c4fb3a6ffb1221b7ae0ddb42f474b8077bb +size 26350 diff --git a/Skins/rafis_gothic/ranking-C@2x.png b/Skins/rafis_gothic/ranking-C@2x.png new file mode 100644 index 00000000..2a97d6cb --- /dev/null +++ b/Skins/rafis_gothic/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89565f3b2b84ceaaa28b812943997b1398ad60d0b2dd1407565ba35efeffca9 +size 29103 diff --git a/Skins/rafis_gothic/ranking-D-small.png b/Skins/rafis_gothic/ranking-D-small.png new file mode 100644 index 00000000..d0e2dd7a --- /dev/null +++ b/Skins/rafis_gothic/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86a7200a56a3c5ea3a15d45353af48d01c0274f7810a086a0b169e428950a4e +size 2116 diff --git a/Skins/rafis_gothic/ranking-D-small@2x.png b/Skins/rafis_gothic/ranking-D-small@2x.png new file mode 100644 index 00000000..d2357bf9 --- /dev/null +++ b/Skins/rafis_gothic/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b687f3e9cd5f39b85a410f1555c63a3998356a3980b31902bec7a10bd0862b50 +size 29353 diff --git a/Skins/rafis_gothic/ranking-D.png b/Skins/rafis_gothic/ranking-D.png new file mode 100644 index 00000000..99984e18 --- /dev/null +++ b/Skins/rafis_gothic/ranking-D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b13c1fa4ee2886f4136f38f05735b025a22f1fb13f54a401742077581e56c4 +size 28303 diff --git a/Skins/rafis_gothic/ranking-D@2x.png b/Skins/rafis_gothic/ranking-D@2x.png new file mode 100644 index 00000000..562487e8 --- /dev/null +++ b/Skins/rafis_gothic/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9aafa65fcd93b8d3461a53ce7e6984a09122c6cad6a8e807a25fd5ff9f6091 +size 25199 diff --git a/Skins/rafis_gothic/ranking-S-small.png b/Skins/rafis_gothic/ranking-S-small.png new file mode 100644 index 00000000..8d295930 --- /dev/null +++ b/Skins/rafis_gothic/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d8cc283bfd47fd7614dafd65f0be13be13682e0242388cbde4c4517ba97e05 +size 1791 diff --git a/Skins/rafis_gothic/ranking-S-small@2x.png b/Skins/rafis_gothic/ranking-S-small@2x.png new file mode 100644 index 00000000..afaaf42b --- /dev/null +++ b/Skins/rafis_gothic/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec712148a0452073279eae3ed5cf04f053361c5e39468e1ca8eb0bbd2449331 +size 28870 diff --git a/Skins/rafis_gothic/ranking-S.png b/Skins/rafis_gothic/ranking-S.png new file mode 100644 index 00000000..e49f223a --- /dev/null +++ b/Skins/rafis_gothic/ranking-S.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b139a7641b8315fe558608f12b4094dbc4bb4d9514e8e9b125e387e53556929f +size 27058 diff --git a/Skins/rafis_gothic/ranking-S@2x.png b/Skins/rafis_gothic/ranking-S@2x.png new file mode 100644 index 00000000..5ca466ce --- /dev/null +++ b/Skins/rafis_gothic/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ef38d29b147734ff59d4f0364f40d9a3ce88880de57ff49f8baa24386fbdec +size 32768 diff --git a/Skins/rafis_gothic/ranking-SH-small.png b/Skins/rafis_gothic/ranking-SH-small.png new file mode 100644 index 00000000..9425a669 --- /dev/null +++ b/Skins/rafis_gothic/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea48642afb8ef6e8b99f6d878b1e7fb604eeab969729fbc77c22d8f2cc39e91 +size 1112 diff --git a/Skins/rafis_gothic/ranking-SH-small@2x.png b/Skins/rafis_gothic/ranking-SH-small@2x.png new file mode 100644 index 00000000..f6b7ec67 --- /dev/null +++ b/Skins/rafis_gothic/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f95660f5bec80c271a077fd2160181a44a875b54d39671cad1044b489c03cf2 +size 28466 diff --git a/Skins/rafis_gothic/ranking-SH.png b/Skins/rafis_gothic/ranking-SH.png new file mode 100644 index 00000000..21246676 --- /dev/null +++ b/Skins/rafis_gothic/ranking-SH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bdd3bba987ce7138b03ba89a9c6a23fdae1d1ce7164448c164eb9cea07e352 +size 15214 diff --git a/Skins/rafis_gothic/ranking-SH@2x.png b/Skins/rafis_gothic/ranking-SH@2x.png new file mode 100644 index 00000000..a25cfc7d --- /dev/null +++ b/Skins/rafis_gothic/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7f25b2e09f39db7962514719cda8e0dd65d0585883bbec9257d7c4790eb838 +size 21193 diff --git a/Skins/rafis_gothic/ranking-X-small.png b/Skins/rafis_gothic/ranking-X-small.png new file mode 100644 index 00000000..b23aeb49 --- /dev/null +++ b/Skins/rafis_gothic/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62633019c4cb476df98a5a5f1fd7b948eb3368d1f933eec9da056674505d877 +size 2180 diff --git a/Skins/rafis_gothic/ranking-X-small@2x.png b/Skins/rafis_gothic/ranking-X-small@2x.png new file mode 100644 index 00000000..a385cf84 --- /dev/null +++ b/Skins/rafis_gothic/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4c1d7996f0b0ba32684fdfd06681f16b0c060b1eb95a2a1940c7e481bacb01 +size 29315 diff --git a/Skins/rafis_gothic/ranking-X.png b/Skins/rafis_gothic/ranking-X.png new file mode 100644 index 00000000..5be2c1c1 --- /dev/null +++ b/Skins/rafis_gothic/ranking-X.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e93f0066ebe7b372771fec584ca2f179bb0c7032b563027d0ee4a720a8be58 +size 52314 diff --git a/Skins/rafis_gothic/ranking-X@2x.png b/Skins/rafis_gothic/ranking-X@2x.png new file mode 100644 index 00000000..6b0640e8 --- /dev/null +++ b/Skins/rafis_gothic/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fc57c0d9ce25a2e406cb97da1a0e34d6c3a95cba393a16292ae3764899f326 +size 62076 diff --git a/Skins/rafis_gothic/ranking-XH-small.png b/Skins/rafis_gothic/ranking-XH-small.png new file mode 100644 index 00000000..0220fd64 --- /dev/null +++ b/Skins/rafis_gothic/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd4591775127ca0cb3509e1b01f9a4467373bd8487884cbdbaef20d3ed7e157 +size 1551 diff --git a/Skins/rafis_gothic/ranking-XH-small@2x.png b/Skins/rafis_gothic/ranking-XH-small@2x.png new file mode 100644 index 00000000..4b3f9f30 --- /dev/null +++ b/Skins/rafis_gothic/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8b406c571f4de236b82a80142809aecb38914d423d2b49d57342fb75a900da +size 29209 diff --git a/Skins/rafis_gothic/ranking-XH.png b/Skins/rafis_gothic/ranking-XH.png new file mode 100644 index 00000000..c80e468e --- /dev/null +++ b/Skins/rafis_gothic/ranking-XH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c36e80b7c832e17379f8a471de579a3a7963434cc6a211e6a564a12f882cdf +size 36125 diff --git a/Skins/rafis_gothic/ranking-XH@2x.png b/Skins/rafis_gothic/ranking-XH@2x.png new file mode 100644 index 00000000..b44245f7 --- /dev/null +++ b/Skins/rafis_gothic/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa5b4a97016a19a57625ae47490aa45014a1645bcc6f6a048e4fa6b8231cd08 +size 43661 diff --git a/Skins/rafis_gothic/ranking-accuracy.png b/Skins/rafis_gothic/ranking-accuracy.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis_gothic/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis_gothic/ranking-background-overlay.png b/Skins/rafis_gothic/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/ranking-graph.png b/Skins/rafis_gothic/ranking-graph.png new file mode 100644 index 00000000..c9413b23 --- /dev/null +++ b/Skins/rafis_gothic/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ccf0fd3fa39c20358147378684d0fab3b938f99b0db7df5b30a0d11649c933 +size 3304 diff --git a/Skins/rafis_gothic/ranking-graph@2x.png b/Skins/rafis_gothic/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/rafis_gothic/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/rafis_gothic/ranking-maxcombo.png b/Skins/rafis_gothic/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis_gothic/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis_gothic/ranking-panel.png b/Skins/rafis_gothic/ranking-panel.png new file mode 100644 index 00000000..24c02b09 --- /dev/null +++ b/Skins/rafis_gothic/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec0aa346a5eb87809ee995aeec90a45634cafab266e338e94836fb4956a1058 +size 9533 diff --git a/Skins/rafis_gothic/ranking-panel@2x.png b/Skins/rafis_gothic/ranking-panel@2x.png new file mode 100644 index 00000000..a00ea17f --- /dev/null +++ b/Skins/rafis_gothic/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83437272d0b9c7d2070c93eae6e000f77b6206db360984c3b6890628834a6a +size 20495 diff --git a/Skins/rafis_gothic/ranking-perfect.png b/Skins/rafis_gothic/ranking-perfect.png new file mode 100644 index 00000000..31c56e88 --- /dev/null +++ b/Skins/rafis_gothic/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61a1bf548dc3120a80ed66e81fea31ff1402493f2efa4d349f2978c5679bb22 +size 18197 diff --git a/Skins/rafis_gothic/ranking-perfect@2x.png b/Skins/rafis_gothic/ranking-perfect@2x.png new file mode 100644 index 00000000..2bc2735c --- /dev/null +++ b/Skins/rafis_gothic/ranking-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57147624197a1f7227031cd600a1a6bb598c1838280b2c10f1f641a2543c8f6 +size 22727 diff --git a/Skins/rafis_gothic/ranking-title.png b/Skins/rafis_gothic/ranking-title.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/rafis_gothic/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/rafis_gothic/ready.png b/Skins/rafis_gothic/ready.png new file mode 100644 index 00000000..d4077227 --- /dev/null +++ b/Skins/rafis_gothic/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8762e9e54d5d3f51350402e2fd7ff47545adca14e1927688cb42bbf24ad12ca3 +size 14510 diff --git a/Skins/rafis_gothic/readys.ogg b/Skins/rafis_gothic/readys.ogg new file mode 100644 index 00000000..6b2f09a9 --- /dev/null +++ b/Skins/rafis_gothic/readys.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd8b55e73cf7f38920ae3290ad02792b47d171283086d4aeafe6d513bda31a5 +size 4426 diff --git a/Skins/rafis_gothic/readys.wav b/Skins/rafis_gothic/readys.wav new file mode 100644 index 00000000..50006495 --- /dev/null +++ b/Skins/rafis_gothic/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8848bc549d8392a17d603a7a09b677acc62095072e0a70f00d0e188c6786e5 +size 126444 diff --git a/Skins/rafis_gothic/reversearrow.png b/Skins/rafis_gothic/reversearrow.png new file mode 100644 index 00000000..bc91804e --- /dev/null +++ b/Skins/rafis_gothic/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91859a5818d90092adbfc1dc25d6aa819133fb296b73d420d3cae69516c8319 +size 3173 diff --git a/Skins/rafis_gothic/reversearrow@2x.png b/Skins/rafis_gothic/reversearrow@2x.png new file mode 100644 index 00000000..556f7a18 --- /dev/null +++ b/Skins/rafis_gothic/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c786a9909d65b60db2dc4e15aa7255c4d0ddc4b645aa1f74d94348108286e99 +size 10519 diff --git a/Skins/rafis_gothic/score-0.png b/Skins/rafis_gothic/score-0.png new file mode 100644 index 00000000..b0d97ed3 --- /dev/null +++ b/Skins/rafis_gothic/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394197cdee2bf3ec3a87019a6a29d10a085e56021f54099c8fcce50e3ddacebc +size 3433 diff --git a/Skins/rafis_gothic/score-1.png b/Skins/rafis_gothic/score-1.png new file mode 100644 index 00000000..0d1ebe0d --- /dev/null +++ b/Skins/rafis_gothic/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d113cfde1f6f8cc8a2bbfa52bb0ad35a5d85e259ee0bc3a15e03f4c7b74c6e90 +size 2926 diff --git a/Skins/rafis_gothic/score-2.png b/Skins/rafis_gothic/score-2.png new file mode 100644 index 00000000..408e1cdb --- /dev/null +++ b/Skins/rafis_gothic/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2782ad0951a15087a845367afa8f2cba7473c284a68f2ff85aeb6c517e9f6c6 +size 3414 diff --git a/Skins/rafis_gothic/score-3.png b/Skins/rafis_gothic/score-3.png new file mode 100644 index 00000000..86177a14 --- /dev/null +++ b/Skins/rafis_gothic/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf66868678715dbb35d4fa05bdec44967a86a79c6182e8b4b1080fe6c5bb817 +size 3439 diff --git a/Skins/rafis_gothic/score-4.png b/Skins/rafis_gothic/score-4.png new file mode 100644 index 00000000..245c95ee --- /dev/null +++ b/Skins/rafis_gothic/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90311b953c402d7351eb6fff11c42e71f47e0113fc5533e19845570a251b6e53 +size 3334 diff --git a/Skins/rafis_gothic/score-5.png b/Skins/rafis_gothic/score-5.png new file mode 100644 index 00000000..725ce736 --- /dev/null +++ b/Skins/rafis_gothic/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ad9cb986cf1c8e7ec73f11052c7f80cb44f6155a267c177ca874183651e63a +size 3323 diff --git a/Skins/rafis_gothic/score-6.png b/Skins/rafis_gothic/score-6.png new file mode 100644 index 00000000..9213868c --- /dev/null +++ b/Skins/rafis_gothic/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cfc4cd71cd6f602d4765cd7a4f77739c20499b5803ff685e95636bb5f56fa3 +size 3541 diff --git a/Skins/rafis_gothic/score-7.png b/Skins/rafis_gothic/score-7.png new file mode 100644 index 00000000..b3895d5b --- /dev/null +++ b/Skins/rafis_gothic/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbec68017836b68bae612827f74a8a0356c2c4f877e99e274cd7d619c3d66117 +size 3287 diff --git a/Skins/rafis_gothic/score-8.png b/Skins/rafis_gothic/score-8.png new file mode 100644 index 00000000..c31c805b --- /dev/null +++ b/Skins/rafis_gothic/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33dfd72a1c67a7ea68dfe103227dd6962371a91882d62735f4132f04e64dc57b +size 3667 diff --git a/Skins/rafis_gothic/score-9.png b/Skins/rafis_gothic/score-9.png new file mode 100644 index 00000000..aeaaf0c4 --- /dev/null +++ b/Skins/rafis_gothic/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d1a5ebc31a64edff85c84a28b9a7da2297acd516e4047649df9fdf1b5a20d4 +size 3534 diff --git a/Skins/rafis_gothic/score-comma.png b/Skins/rafis_gothic/score-comma.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/rafis_gothic/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/rafis_gothic/score-dot.png b/Skins/rafis_gothic/score-dot.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/rafis_gothic/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/rafis_gothic/score-percent.png b/Skins/rafis_gothic/score-percent.png new file mode 100644 index 00000000..69be85f4 --- /dev/null +++ b/Skins/rafis_gothic/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463688b71d33f4c476deddd20df83dfcffbb450f7a5277704442f494fbc49570 +size 3038 diff --git a/Skins/rafis_gothic/score-x.png b/Skins/rafis_gothic/score-x.png new file mode 100644 index 00000000..906648fa --- /dev/null +++ b/Skins/rafis_gothic/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ff24028255e3787e38390106f32b20bb8c6af2943c418f3436b584ce9d5674 +size 2810 diff --git a/Skins/rafis_gothic/scorebar-bg.png b/Skins/rafis_gothic/scorebar-bg.png new file mode 100644 index 00000000..84344365 --- /dev/null +++ b/Skins/rafis_gothic/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee425ea24ddd0f5e4aa3741d2f84a27a17fbfe28d01ee7e66cc235c27a9b0e2f +size 2987 diff --git a/Skins/rafis_gothic/scorebar-bg@2x.png b/Skins/rafis_gothic/scorebar-bg@2x.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/rafis_gothic/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/rafis_gothic/scorebar-colour.png b/Skins/rafis_gothic/scorebar-colour.png new file mode 100644 index 00000000..1a079517 --- /dev/null +++ b/Skins/rafis_gothic/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab672490b6808a6fe9837baedccc341de7fe56df0c85aed0617fad5042113854 +size 2864 diff --git a/Skins/rafis_gothic/scorebar-ki.png b/Skins/rafis_gothic/scorebar-ki.png new file mode 100644 index 00000000..fac29168 --- /dev/null +++ b/Skins/rafis_gothic/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620234b2f7442c73273afc2f3d90769c6d7ac8813f8d2c14849ba316d7281af7 +size 2803 diff --git a/Skins/rafis_gothic/scorebar-kidanger.png b/Skins/rafis_gothic/scorebar-kidanger.png new file mode 100644 index 00000000..ddab0bf6 --- /dev/null +++ b/Skins/rafis_gothic/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4595cab4b46b51c203c2c6e22629fac69343bed05ec2fe778f509acfd24e0298 +size 2803 diff --git a/Skins/rafis_gothic/scorebar-kidanger2.png b/Skins/rafis_gothic/scorebar-kidanger2.png new file mode 100644 index 00000000..5ed877c3 --- /dev/null +++ b/Skins/rafis_gothic/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0d08de15725e6c4e84824e5cb71b04dbb8d8f9fcfdc8b498163993114cae8f +size 2803 diff --git a/Skins/rafis_gothic/section-fail.png b/Skins/rafis_gothic/section-fail.png new file mode 100644 index 00000000..2d866807 --- /dev/null +++ b/Skins/rafis_gothic/section-fail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403b392c04dcd7cf2391cb4d607d91c14606d170b71ac1046980574c8c6fbcb8 +size 28763 diff --git a/Skins/rafis_gothic/section-pass.png b/Skins/rafis_gothic/section-pass.png new file mode 100644 index 00000000..a14fa84c --- /dev/null +++ b/Skins/rafis_gothic/section-pass.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f2ac59baccb61aeabf94a2ea4ef31cfe6f7193adecae18a441ebbd33830482 +size 20967 diff --git a/Skins/rafis_gothic/sectionfail.ogg b/Skins/rafis_gothic/sectionfail.ogg new file mode 100644 index 00000000..194b58a4 --- /dev/null +++ b/Skins/rafis_gothic/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f420a1f095236b7fd7a94b72dbfc9774479bafb16ecb73f0e5d94a33e366e9ee +size 47184 diff --git a/Skins/rafis_gothic/sectionpass.ogg b/Skins/rafis_gothic/sectionpass.ogg new file mode 100644 index 00000000..d662ed42 --- /dev/null +++ b/Skins/rafis_gothic/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cceb7306cddcaf24890e7d1ffb75888a83be212fe3b2c8a39f3cb2a518192c1d +size 56854 diff --git a/Skins/rafis_gothic/seeya.wav b/Skins/rafis_gothic/seeya.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/rafis_gothic/seeya.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/rafis_gothic/select-difficulty.wav b/Skins/rafis_gothic/select-difficulty.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/select-difficulty.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/select-expand.wav b/Skins/rafis_gothic/select-expand.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/select-expand.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/selection-mod-autoplay.png b/Skins/rafis_gothic/selection-mod-autoplay.png new file mode 100644 index 00000000..28f71f67 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2519a646700842ce9daaa07ed7bfe5efc4a72e30447c93babeb55727ae43f07b +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-autoplay@2x.png b/Skins/rafis_gothic/selection-mod-autoplay@2x.png new file mode 100644 index 00000000..6af9b88d --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-autoplay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1573d9f938dc43410b8df076b2a098365d5ad7aa13a6dd90f0a7662b1133c8b2 +size 58538 diff --git a/Skins/rafis_gothic/selection-mod-cinema.png b/Skins/rafis_gothic/selection-mod-cinema.png new file mode 100644 index 00000000..8682104c --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c2505987aae7f188f13dcc56b96f30da8ad4f9f5c77a3ca7e3293917aa5838 +size 5108 diff --git a/Skins/rafis_gothic/selection-mod-doubletime.png b/Skins/rafis_gothic/selection-mod-doubletime.png new file mode 100644 index 00000000..155ba105 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819cd6984bc8d4a75f442da823fc763c3df0e484b3b112881ba7319ab93fff12 +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-doubletime@2x.png b/Skins/rafis_gothic/selection-mod-doubletime@2x.png new file mode 100644 index 00000000..6b54bd24 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-doubletime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ff27e05a8059f17bc901de9d3fe54fa57df62f583bdb87ca90028b92ca39c9 +size 55027 diff --git a/Skins/rafis_gothic/selection-mod-easy.png b/Skins/rafis_gothic/selection-mod-easy.png new file mode 100644 index 00000000..8f66629e --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad4be4139039ab123c028ba272c7b1f8a338b4605da225685c1cf724fa67034 +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-easy@2x.png b/Skins/rafis_gothic/selection-mod-easy@2x.png new file mode 100644 index 00000000..c55a688b --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-easy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3373684ef9725ae4992ddb0e529036dff31d69a97974e8894f295ff70d9e609e +size 58539 diff --git a/Skins/rafis_gothic/selection-mod-fadein.png b/Skins/rafis_gothic/selection-mod-fadein.png new file mode 100644 index 00000000..6176a80f --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-fadein.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4771b029b739e11ed76e87803fce174a2827b6151e5ac0d48a97d8368952ad +size 15244 diff --git a/Skins/rafis_gothic/selection-mod-fadein@2x.png b/Skins/rafis_gothic/selection-mod-fadein@2x.png new file mode 100644 index 00000000..feb0d080 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-fadein@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b8ac98181f2ba2ed2f1599e571450416f89dbfc28ad3ac7df69be268296db4 +size 23822 diff --git a/Skins/rafis_gothic/selection-mod-flashlight.png b/Skins/rafis_gothic/selection-mod-flashlight.png new file mode 100644 index 00000000..05b0a5f7 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9d570bb0b379699eec81ff699e08c46711f961c0c43d8c60a95869b8609185 +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-flashlight@2x.png b/Skins/rafis_gothic/selection-mod-flashlight@2x.png new file mode 100644 index 00000000..7c83b048 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-flashlight@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7527d1a800704da867948cc201d99b195ad1e9384619dae09afe54ee2f6027a +size 56128 diff --git a/Skins/rafis_gothic/selection-mod-halftime.png b/Skins/rafis_gothic/selection-mod-halftime.png new file mode 100644 index 00000000..33da66e0 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dba908936b1936d9472a372736a08e693bd5ae7fc1d25d1f6f1d739163db3db +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-halftime@2x.png b/Skins/rafis_gothic/selection-mod-halftime@2x.png new file mode 100644 index 00000000..a1cbdafa --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-halftime@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff3a888ecdea0266bf96fdc7c7fbe8483380343cbaaeebc8840a2367c179152 +size 47976 diff --git a/Skins/rafis_gothic/selection-mod-hardrock.png b/Skins/rafis_gothic/selection-mod-hardrock.png new file mode 100644 index 00000000..d22f6949 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59ab02fe50d87fb52e70d8aff6c1f12799ece9a2231b7aab8b430b2f30d873a +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-hardrock@2x.png b/Skins/rafis_gothic/selection-mod-hardrock@2x.png new file mode 100644 index 00000000..59110cd7 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-hardrock@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a8f2dd93517ebb5d213e0d635b5d7991dd4f96f9bb83c9aea1e9667b08ef4e1 +size 60033 diff --git a/Skins/rafis_gothic/selection-mod-hidden.png b/Skins/rafis_gothic/selection-mod-hidden.png new file mode 100644 index 00000000..cd0c698d --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62df9d17c52ff0875e6cae6ee1b227fb66c6d48b377967dfab25b06ee3e19a3b +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-hidden@2x.png b/Skins/rafis_gothic/selection-mod-hidden@2x.png new file mode 100644 index 00000000..392ebb61 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-hidden@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a6b62747cc8bc7431af23350db50718cae2b92b6c1541d637fa64b7116d1b7 +size 59815 diff --git a/Skins/rafis_gothic/selection-mod-key1.png b/Skins/rafis_gothic/selection-mod-key1.png new file mode 100644 index 00000000..a023b284 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b7b94f9341cf71d532fe740c7b3d8bed167f90db0a69c1063fb880c2261c9d +size 16593 diff --git a/Skins/rafis_gothic/selection-mod-key1@2x.png b/Skins/rafis_gothic/selection-mod-key1@2x.png new file mode 100644 index 00000000..4c997887 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2d31b9ba2983c225aec67b1ba5b5d41509b45eae16ef867d07da875b3c56cb +size 25753 diff --git a/Skins/rafis_gothic/selection-mod-key2.png b/Skins/rafis_gothic/selection-mod-key2.png new file mode 100644 index 00000000..a3a696ba --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59bb1c8cedefeb8c101cc16285505db36a2a8b7bd1b7a8640ab4f40bb1d4d4f1 +size 16779 diff --git a/Skins/rafis_gothic/selection-mod-key2@2x.png b/Skins/rafis_gothic/selection-mod-key2@2x.png new file mode 100644 index 00000000..5eebb73e --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac8dc39f151ff94d2de76ed4970f2b52aae718fed56bb7ae2b941cf119eb374 +size 26339 diff --git a/Skins/rafis_gothic/selection-mod-key3.png b/Skins/rafis_gothic/selection-mod-key3.png new file mode 100644 index 00000000..e269ca52 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ae195731e7b937bc44067f5131bd7f533b16c24e4fbb79d35d7c204c9c05d4 +size 16894 diff --git a/Skins/rafis_gothic/selection-mod-key3@2x.png b/Skins/rafis_gothic/selection-mod-key3@2x.png new file mode 100644 index 00000000..f08e2ca0 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1194e11e3a69a5268a951eab40624c887293f4f1f98ff4fb8e8d6ccf80629cd1 +size 26409 diff --git a/Skins/rafis_gothic/selection-mod-key4.png b/Skins/rafis_gothic/selection-mod-key4.png new file mode 100644 index 00000000..b7f64572 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ed7802f161ec4d0427b8be84db592edf9672877a8ad2a4938c7cdf4ed46d0d +size 16454 diff --git a/Skins/rafis_gothic/selection-mod-key4@2x.png b/Skins/rafis_gothic/selection-mod-key4@2x.png new file mode 100644 index 00000000..b9673020 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dee94ce8a892a2a15411860fcbb030d3305afc1e855da34bd51df56a49aa963 +size 25991 diff --git a/Skins/rafis_gothic/selection-mod-key5.png b/Skins/rafis_gothic/selection-mod-key5.png new file mode 100644 index 00000000..7275e4fe --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b98636d74a32c5d9651a44cd19837acefad6ad3112c4ed6b41c9deb085dfc7 +size 16748 diff --git a/Skins/rafis_gothic/selection-mod-key5@2x.png b/Skins/rafis_gothic/selection-mod-key5@2x.png new file mode 100644 index 00000000..460b56f5 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e79661a02d112c5fd945f0ba8e75daa6b965989755d216d0e105ca17cb3b0b +size 26341 diff --git a/Skins/rafis_gothic/selection-mod-key6.png b/Skins/rafis_gothic/selection-mod-key6.png new file mode 100644 index 00000000..d401e4aa --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0858c0d91f62af661a4fbe8dd8946d02e31a557190a6b779677ca5e884349f49 +size 16780 diff --git a/Skins/rafis_gothic/selection-mod-key6@2x.png b/Skins/rafis_gothic/selection-mod-key6@2x.png new file mode 100644 index 00000000..ae642e44 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2744e75a20a65305963001a8626bd25978ff0dd063b245269fe35c83f79b7b4f +size 26014 diff --git a/Skins/rafis_gothic/selection-mod-key7.png b/Skins/rafis_gothic/selection-mod-key7.png new file mode 100644 index 00000000..33652cae --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:836431dc85a171861aa51052bc4b120f83c5dc77e2e535185d2a179cfaae4d7f +size 16514 diff --git a/Skins/rafis_gothic/selection-mod-key7@2x.png b/Skins/rafis_gothic/selection-mod-key7@2x.png new file mode 100644 index 00000000..18b7b07d --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8989727b3af0f1945db5e7cfaa5ae038d3aa3cb6e4d2ca13afdac3600e744c2d +size 25281 diff --git a/Skins/rafis_gothic/selection-mod-key8.png b/Skins/rafis_gothic/selection-mod-key8.png new file mode 100644 index 00000000..2e304fb5 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b689f3d61a919f745101cfb67e7b65271ba462fa655646327e70ddda6f0a33 +size 16928 diff --git a/Skins/rafis_gothic/selection-mod-key8@2x.png b/Skins/rafis_gothic/selection-mod-key8@2x.png new file mode 100644 index 00000000..0b379c77 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846f9db1a253e431aca29cb7f3223800f076ec6e3236241997115e60330b2f13 +size 26181 diff --git a/Skins/rafis_gothic/selection-mod-key9.png b/Skins/rafis_gothic/selection-mod-key9.png new file mode 100644 index 00000000..c1d490fd --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7927f4f382b32d9122cd4482043a8edf3ea035b5241b9b72305b74e51da3de9d +size 16715 diff --git a/Skins/rafis_gothic/selection-mod-key9@2x.png b/Skins/rafis_gothic/selection-mod-key9@2x.png new file mode 100644 index 00000000..d0438d2c --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-key9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fd9e828cea09ffd0f13db1084b3fdc1ec32360110e2b9fd10a75e0a24f7068 +size 26375 diff --git a/Skins/rafis_gothic/selection-mod-keycoop.png b/Skins/rafis_gothic/selection-mod-keycoop.png new file mode 100644 index 00000000..d9c4157a --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-keycoop.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968564f9fb2dd3d20b22d42484c571a954e02d8fd4e436f0193346e5c2daab82 +size 16401 diff --git a/Skins/rafis_gothic/selection-mod-keycoop@2x.png b/Skins/rafis_gothic/selection-mod-keycoop@2x.png new file mode 100644 index 00000000..e9c0598b --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-keycoop@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf58b5acb39e95e96860e1c7e6432633c398429dfc6721bfc3873e7062fe757 +size 24512 diff --git a/Skins/rafis_gothic/selection-mod-nightcore.png b/Skins/rafis_gothic/selection-mod-nightcore.png new file mode 100644 index 00000000..e06bc3c3 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f372f00e1286d50ed08f0a2b88e4c1d1f1aadfae71404e5b700ea70fab24bf22 +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-nightcore@2x.png b/Skins/rafis_gothic/selection-mod-nightcore@2x.png new file mode 100644 index 00000000..c8d11bf1 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-nightcore@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2ba8650f886cddbe6e8eabfb3cf08c3b384af67e0a94382a86ed87174e2fdd +size 54730 diff --git a/Skins/rafis_gothic/selection-mod-nofail.png b/Skins/rafis_gothic/selection-mod-nofail.png new file mode 100644 index 00000000..4b3db2a1 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1511af803e84e79da49f01190b2f1159a9269400d7eed45cc0e5c5e512ed5a +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-nofail@2x.png b/Skins/rafis_gothic/selection-mod-nofail@2x.png new file mode 100644 index 00000000..70b9454c --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-nofail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2895e203a397a2f1acc86b006995130bcc75d01d3a872f727c1312abc090cfaf +size 56825 diff --git a/Skins/rafis_gothic/selection-mod-perfect.png b/Skins/rafis_gothic/selection-mod-perfect.png new file mode 100644 index 00000000..9dd01a39 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8ddacac3d72596af2c9d3ea8da2782973f262c824dda5f3a3481f0fb9d7c2d +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-perfect@2x.png b/Skins/rafis_gothic/selection-mod-perfect@2x.png new file mode 100644 index 00000000..19bbbf3d --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1939152335d45fd730c1a8936b8d702e8bf8cbcb8985dbac4662feccc018254e +size 61159 diff --git a/Skins/rafis_gothic/selection-mod-random.png b/Skins/rafis_gothic/selection-mod-random.png new file mode 100644 index 00000000..45368a79 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4929a02442cef3af3d1a41d8aba4da0e27be738bf3bfb25551ce6caeb5e17b74 +size 16856 diff --git a/Skins/rafis_gothic/selection-mod-random@2x.png b/Skins/rafis_gothic/selection-mod-random@2x.png new file mode 100644 index 00000000..74cd4cf5 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8fb6dfe4e1ab08cf24825d6c49329f663cb128a5a29be08012cc36e306f9ed +size 26290 diff --git a/Skins/rafis_gothic/selection-mod-relax.png b/Skins/rafis_gothic/selection-mod-relax.png new file mode 100644 index 00000000..8a35a647 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecfdf0d80661aeba607ac00170d0c6dc86b317f612636fa547441735f791f27 +size 17193 diff --git a/Skins/rafis_gothic/selection-mod-relax2.png b/Skins/rafis_gothic/selection-mod-relax2.png new file mode 100644 index 00000000..f84b1f71 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c11c54ad385c3873bef00803cc63c221a8585bfab3cad4dd025f9ece4f49e9 +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-relax2@2x.png b/Skins/rafis_gothic/selection-mod-relax2@2x.png new file mode 100644 index 00000000..8eefb999 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-relax2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48e18f8c2130d25e977a5668162faa2cf88b819534834cb67ca69b076fc0e25 +size 60300 diff --git a/Skins/rafis_gothic/selection-mod-relax@2x.png b/Skins/rafis_gothic/selection-mod-relax@2x.png new file mode 100644 index 00000000..0c09a89f --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-relax@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24baa72317f31c1d0802acf4d673d535956a37cbcd2671b5b365425a2f509e18 +size 63049 diff --git a/Skins/rafis_gothic/selection-mod-scorev2.png b/Skins/rafis_gothic/selection-mod-scorev2.png new file mode 100644 index 00000000..67214d66 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c23160d331750ef80389360d627a58765eed18b0ef5127a604ad1bb5fe501b +size 16334 diff --git a/Skins/rafis_gothic/selection-mod-scorev2@2x.png b/Skins/rafis_gothic/selection-mod-scorev2@2x.png new file mode 100644 index 00000000..63cc37fb --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-scorev2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8dae8b62b0aa3d6192a26767ed1e0c500752fc1cfe2fc33d6ff1f0fb936ea96 +size 58197 diff --git a/Skins/rafis_gothic/selection-mod-spunout.png b/Skins/rafis_gothic/selection-mod-spunout.png new file mode 100644 index 00000000..7c651b03 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adfd713818f977b74d556a0c991562f70a17521cd56952bcdaff8963f839d53 +size 40279 diff --git a/Skins/rafis_gothic/selection-mod-spunout@2x.png b/Skins/rafis_gothic/selection-mod-spunout@2x.png new file mode 100644 index 00000000..ce15eebb --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-spunout@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c2dca481d848090dc684218b35d25e9246ad960e580053da4b822b1e8a36af +size 61577 diff --git a/Skins/rafis_gothic/selection-mod-suddendeath.png b/Skins/rafis_gothic/selection-mod-suddendeath.png new file mode 100644 index 00000000..ceb7cbc8 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22642a94eddaa516d8dea8fd0dfc5588a623f9a4ad13b3d678ff5a6572eeaf94 +size 48701 diff --git a/Skins/rafis_gothic/selection-mod-suddendeath@2x.png b/Skins/rafis_gothic/selection-mod-suddendeath@2x.png new file mode 100644 index 00000000..d549d65a --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-suddendeath@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20dff217a096f4753ea22fa97b8286c1b63e16de62b93aab201a69d932f405a0 +size 61757 diff --git a/Skins/rafis_gothic/selection-mod-target.png b/Skins/rafis_gothic/selection-mod-target.png new file mode 100644 index 00000000..e37be890 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b60b004811e6208e0c37217bda24e69c3baea634a169096167dda3b308aff26 +size 8225 diff --git a/Skins/rafis_gothic/selection-mod-target@2x.png b/Skins/rafis_gothic/selection-mod-target@2x.png new file mode 100644 index 00000000..c623ea88 --- /dev/null +++ b/Skins/rafis_gothic/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5725065ca3f4261bade2742ca2522aeb3843f577c4b8e4f055412afe1bbc34d8 +size 14174 diff --git a/Skins/rafis_gothic/selection-mode-over.png b/Skins/rafis_gothic/selection-mode-over.png new file mode 100644 index 00000000..f523b94b --- /dev/null +++ b/Skins/rafis_gothic/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45bddb9ee842a7cfe55db446d18715ce75814f0f0c5b304bfa0a8d9a12339bae +size 3460 diff --git a/Skins/rafis_gothic/selection-mode-over@2x.png b/Skins/rafis_gothic/selection-mode-over@2x.png new file mode 100644 index 00000000..42775c50 --- /dev/null +++ b/Skins/rafis_gothic/selection-mode-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ed543665bad79aea16da870d5ab9b7cce73afdc50d95b029bcfbefe33daa56 +size 3635 diff --git a/Skins/rafis_gothic/selection-mode.png b/Skins/rafis_gothic/selection-mode.png new file mode 100644 index 00000000..8d239a44 --- /dev/null +++ b/Skins/rafis_gothic/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f2ccaaa49d7a3ca550e94c9f1037c81c79c2793aa0d287ed2bd46905090948 +size 3468 diff --git a/Skins/rafis_gothic/selection-mode@2x.png b/Skins/rafis_gothic/selection-mode@2x.png new file mode 100644 index 00000000..14083f12 --- /dev/null +++ b/Skins/rafis_gothic/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07be10d1625bf1ca8be3bbf81125b53ebfbd4f7e033fcb80eaf18b6b0ab7655 +size 3709 diff --git a/Skins/rafis_gothic/selection-mods-over.png b/Skins/rafis_gothic/selection-mods-over.png new file mode 100644 index 00000000..ec004aa7 --- /dev/null +++ b/Skins/rafis_gothic/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb204960a484a58be09530d4a95614d6b0c7866ca44926cb9ab2301a9774048 +size 5653 diff --git a/Skins/rafis_gothic/selection-mods-over@2x.png b/Skins/rafis_gothic/selection-mods-over@2x.png new file mode 100644 index 00000000..30069079 --- /dev/null +++ b/Skins/rafis_gothic/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115e5ed8b0b0fbf476407773fc72543de965f0fd0576ba944861f33cb94dd7a6 +size 28199 diff --git a/Skins/rafis_gothic/selection-mods.png b/Skins/rafis_gothic/selection-mods.png new file mode 100644 index 00000000..2cfb0147 --- /dev/null +++ b/Skins/rafis_gothic/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6426bd47c2a14700a3c23281f65c5237934d5a0709ff4b536c2b2b2a5f8b66d +size 2391 diff --git a/Skins/rafis_gothic/selection-mods@2x.png b/Skins/rafis_gothic/selection-mods@2x.png new file mode 100644 index 00000000..39c24218 --- /dev/null +++ b/Skins/rafis_gothic/selection-mods@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d7e61caac697d909fccb6ac01ac80afd711375e96922b154ddadcce52ade49 +size 4089 diff --git a/Skins/rafis_gothic/selection-options-over.png b/Skins/rafis_gothic/selection-options-over.png new file mode 100644 index 00000000..7db72bc9 --- /dev/null +++ b/Skins/rafis_gothic/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df099c20daa720cdbc20c5c73d4ce364cfc73a5b5450ce86558475f375e69ce +size 5461 diff --git a/Skins/rafis_gothic/selection-options-over@2x.png b/Skins/rafis_gothic/selection-options-over@2x.png new file mode 100644 index 00000000..eadd4ee1 --- /dev/null +++ b/Skins/rafis_gothic/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b8f5ef18be3a9da582c8812eca352d110f6503161a9f13de4a39ac6ce33f47 +size 8495 diff --git a/Skins/rafis_gothic/selection-options.png b/Skins/rafis_gothic/selection-options.png new file mode 100644 index 00000000..57e49230 --- /dev/null +++ b/Skins/rafis_gothic/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e825990abac32d986dd030a71e785704f8be1a18f4870199667d280bd77c13 +size 4121 diff --git a/Skins/rafis_gothic/selection-options@2x.png b/Skins/rafis_gothic/selection-options@2x.png new file mode 100644 index 00000000..64548260 --- /dev/null +++ b/Skins/rafis_gothic/selection-options@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbdf778eae35acecb5497b6d9cd7f3cac0482e090340f25dd576bf67b94d3f7 +size 4691 diff --git a/Skins/rafis_gothic/selection-random-over.png b/Skins/rafis_gothic/selection-random-over.png new file mode 100644 index 00000000..8546dbbc --- /dev/null +++ b/Skins/rafis_gothic/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb04db3429b427d4ed5be7a361cebabed56de2a4c4ebb184bd3b32ddc15ef8d +size 6022 diff --git a/Skins/rafis_gothic/selection-random-over@2x.png b/Skins/rafis_gothic/selection-random-over@2x.png new file mode 100644 index 00000000..ab37ff9d --- /dev/null +++ b/Skins/rafis_gothic/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ced4f52bd2b0f03e502a6a00b3ba8379990ce70a4d330f99897dd80945ce4a2 +size 15229 diff --git a/Skins/rafis_gothic/selection-random.png b/Skins/rafis_gothic/selection-random.png new file mode 100644 index 00000000..e441c835 --- /dev/null +++ b/Skins/rafis_gothic/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b316d38e3bfae56d2756d8e137061b2dded0e1060857b4f3da545480ba7768f3 +size 4228 diff --git a/Skins/rafis_gothic/selection-random@2x.png b/Skins/rafis_gothic/selection-random@2x.png new file mode 100644 index 00000000..0ac84ecd --- /dev/null +++ b/Skins/rafis_gothic/selection-random@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6645c281933dbd6ff3aef66d67adef7ca1fe9802738881baab130664ce2d7fc6 +size 7123 diff --git a/Skins/rafis_gothic/selection-selectoptions-over.png b/Skins/rafis_gothic/selection-selectoptions-over.png new file mode 100644 index 00000000..ef49e7a7 --- /dev/null +++ b/Skins/rafis_gothic/selection-selectoptions-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d17470c892f72405e6e836dcd880030be0c8edc4c891c74e9a448de4a01a38 +size 3904 diff --git a/Skins/rafis_gothic/selection-selectoptions.png b/Skins/rafis_gothic/selection-selectoptions.png new file mode 100644 index 00000000..bd52ae1c --- /dev/null +++ b/Skins/rafis_gothic/selection-selectoptions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500167adb5b2a8a487b6678724eeb23f1f453fee3baef9f284cd0f5c1be9ad6 +size 3652 diff --git a/Skins/rafis_gothic/selection-tab.png b/Skins/rafis_gothic/selection-tab.png new file mode 100644 index 00000000..73f15121 --- /dev/null +++ b/Skins/rafis_gothic/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec16bd5a867810ee6dadcc2751eef1e537e8f34e660304f308e3ce1e2cd262d2 +size 3506 diff --git a/Skins/rafis_gothic/skin.ini b/Skins/rafis_gothic/skin.ini new file mode 100644 index 00000000..dfcd7f25 --- /dev/null +++ b/Skins/rafis_gothic/skin.ini @@ -0,0 +1,45 @@ +// skin.ini generated by osu! skin mixer v2.9.0 + +[General] +Name: Rafis 2018-03-26 HDDT +Author: DDK RPK +Profile: https: +║ Downloaded from https: +║ Skin https: +Version: 2.2 +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 +ComboBurstRandom: 0 +SliderBallFlip: 0 +SliderBallFrames: 1 +SliderStyle: 2 + +[Colours] +Combo1: 255,255,255 +Combo2: 255,255,255 +Combo3: 255,255,255 +Combo4: 255,255,255 +MenuGlow: 0,0,190 +SliderBorder: 255, 255, 255 +SliderTrackOverride: 0,0,0 +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 230,230,230 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 3 +ScorePrefix: score +ScoreOverlap: 2 + +[Mania] +Keys: 4 +ColumnStart: 136 +ColumnWidth: 30,30,30,30 +ComboPosition: 111 +HitPosition: 402 +JudgementLine: 1 +LightFramePerSecond: 24 +ScorePosition: 325 +SpecialStyle: 0 +UpsideDown: 0 diff --git a/Skins/rafis_gothic/sliderb0.png b/Skins/rafis_gothic/sliderb0.png new file mode 100644 index 00000000..59de1c38 --- /dev/null +++ b/Skins/rafis_gothic/sliderb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf3edc17906aacfd7fd7c32920ae1a2691a06fcd2453201f39d52656585858c7 +size 4952 diff --git a/Skins/rafis_gothic/sliderb0@2x.png b/Skins/rafis_gothic/sliderb0@2x.png new file mode 100644 index 00000000..9e104e33 --- /dev/null +++ b/Skins/rafis_gothic/sliderb0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c66e0a67d287dadf66b66b327416c28ba04234971710ab76068e28da850c063 +size 16023 diff --git a/Skins/rafis_gothic/sliderendcircle.png b/Skins/rafis_gothic/sliderendcircle.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/rafis_gothic/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/rafis_gothic/sliderfollowcircle.png b/Skins/rafis_gothic/sliderfollowcircle.png new file mode 100644 index 00000000..9386f4e8 --- /dev/null +++ b/Skins/rafis_gothic/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8cb94df3b7d03e32aa00e7b5e56c2c0407bdedc0919cfc32612b1252072d99 +size 16755 diff --git a/Skins/rafis_gothic/sliderfollowcircle@2x.png b/Skins/rafis_gothic/sliderfollowcircle@2x.png new file mode 100644 index 00000000..9d27a481 --- /dev/null +++ b/Skins/rafis_gothic/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b9bad4ba927e410a220c95df4b08a1fb14e71a82045b443f439a9228973e91 +size 31059 diff --git a/Skins/rafis_gothic/sliderpoint10.png b/Skins/rafis_gothic/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/sliderpoint30.png b/Skins/rafis_gothic/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/sliderscorepoint.png b/Skins/rafis_gothic/sliderscorepoint.png new file mode 100644 index 00000000..cf83f494 --- /dev/null +++ b/Skins/rafis_gothic/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d579cf9670162a630192b68827b8d08dddfbfc855d4dde9b8c0661cf1628436d +size 3307 diff --git a/Skins/rafis_gothic/sliderstartcircle@2xhjk.png b/Skins/rafis_gothic/sliderstartcircle@2xhjk.png new file mode 100644 index 00000000..c0743850 --- /dev/null +++ b/Skins/rafis_gothic/sliderstartcircle@2xhjk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0382beb44c29cfbde7c48c0ae48000dbde37bda9c9c3e16e62abfd2f798386ce +size 19542 diff --git a/Skins/rafis_gothic/sliderstartcircleghj.png b/Skins/rafis_gothic/sliderstartcircleghj.png new file mode 100644 index 00000000..ad4e800b --- /dev/null +++ b/Skins/rafis_gothic/sliderstartcircleghj.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65d5882b8ec40233394f103468ab78c496de9f9d4540a43fd633acc1d3cd163 +size 9483 diff --git a/Skins/rafis_gothic/sliderstartcircleoverlay.png b/Skins/rafis_gothic/sliderstartcircleoverlay.png new file mode 100644 index 00000000..50b67c8b --- /dev/null +++ b/Skins/rafis_gothic/sliderstartcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc952374c096f22774a4a92de613dcf4487458126569abd08b875a8e5c6f66ec +size 17614 diff --git a/Skins/rafis_gothic/sliderstartcircleoverlay@2x.png b/Skins/rafis_gothic/sliderstartcircleoverlay@2x.png new file mode 100644 index 00000000..19e9bbe2 --- /dev/null +++ b/Skins/rafis_gothic/sliderstartcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3222efcf05f0d30009f254626eb6a223e994af9dc9d2ed6c472efcb73628e7 +size 32193 diff --git a/Skins/rafis_gothic/sliderstartjk.png b/Skins/rafis_gothic/sliderstartjk.png new file mode 100644 index 00000000..4b273472 --- /dev/null +++ b/Skins/rafis_gothic/sliderstartjk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:997a6c620833fdd69146c8a315d8e98fd226ffa2f9faafccac2a7b0970d8ed3f +size 10595 diff --git a/Skins/rafis_gothic/soft-hitclap.wav b/Skins/rafis_gothic/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/rafis_gothic/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/rafis_gothic/soft-hitclap2.ogg b/Skins/rafis_gothic/soft-hitclap2.ogg new file mode 100644 index 00000000..085ec269 --- /dev/null +++ b/Skins/rafis_gothic/soft-hitclap2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee389b83f7d1bdbefd19d4552a94a6d6ed3cec3cb64acf00f14665c927f3843 +size 7496 diff --git a/Skins/rafis_gothic/soft-hitfinish.wav b/Skins/rafis_gothic/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/rafis_gothic/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/rafis_gothic/soft-hitfinish2.ogg b/Skins/rafis_gothic/soft-hitfinish2.ogg new file mode 100644 index 00000000..02a654f3 --- /dev/null +++ b/Skins/rafis_gothic/soft-hitfinish2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c181175f91f0cbf922ced55f89386008d898aeb484954d656822669610afc586 +size 15904 diff --git a/Skins/rafis_gothic/soft-hitnormal.wav b/Skins/rafis_gothic/soft-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/rafis_gothic/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/rafis_gothic/soft-hitnormal1.ogg b/Skins/rafis_gothic/soft-hitnormal1.ogg new file mode 100644 index 00000000..c84036ae --- /dev/null +++ b/Skins/rafis_gothic/soft-hitnormal1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e12bcbddab61d73f9c2048aac5f110a2a66144a5fcedde430218657e8ae38a +size 7044 diff --git a/Skins/rafis_gothic/soft-hitnormal2.ogg b/Skins/rafis_gothic/soft-hitnormal2.ogg new file mode 100644 index 00000000..cb3265d6 --- /dev/null +++ b/Skins/rafis_gothic/soft-hitnormal2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3c74c7a25fefdbe6a0dd0207f9e4eb75f2b271c3697c2b472e1d5e6438dfb2 +size 10576 diff --git a/Skins/rafis_gothic/soft-hitwhistle.wav b/Skins/rafis_gothic/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/rafis_gothic/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/rafis_gothic/soft-hitwhistle2.ogg b/Skins/rafis_gothic/soft-hitwhistle2.ogg new file mode 100644 index 00000000..30a517cc --- /dev/null +++ b/Skins/rafis_gothic/soft-hitwhistle2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4fd64adf655a9e5e64b8530be0546ea2e8b7ece3fc5dd29c06b50b957f7892 +size 6993 diff --git a/Skins/rafis_gothic/soft-sliderslide.wav b/Skins/rafis_gothic/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/soft-sliderslide2.ogg b/Skins/rafis_gothic/soft-sliderslide2.ogg new file mode 100644 index 00000000..eaf9ed8a --- /dev/null +++ b/Skins/rafis_gothic/soft-sliderslide2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f505526a9308475d2449bb38a004ce15e18e8da899142069d23c392149fe91b +size 4426 diff --git a/Skins/rafis_gothic/soft-slidertick.wav b/Skins/rafis_gothic/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/soft-slidertick2.ogg b/Skins/rafis_gothic/soft-slidertick2.ogg new file mode 100644 index 00000000..3a192c10 --- /dev/null +++ b/Skins/rafis_gothic/soft-slidertick2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d292290bd7c0c13314bc69a49fe6cbdbd19225848dc6cdffcaf8d6fa88b9ff68 +size 4426 diff --git a/Skins/rafis_gothic/soft-sliderwhistle.wav b/Skins/rafis_gothic/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/rafis_gothic/spinner-approachcircle.png b/Skins/rafis_gothic/spinner-approachcircle.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/rafis_gothic/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/rafis_gothic/spinner-approachcircle@2x.png b/Skins/rafis_gothic/spinner-approachcircle@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/rafis_gothic/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/rafis_gothic/spinner-background.png b/Skins/rafis_gothic/spinner-background.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/rafis_gothic/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/rafis_gothic/spinner-bottom.png b/Skins/rafis_gothic/spinner-bottom.png new file mode 100644 index 00000000..946c8b3a --- /dev/null +++ b/Skins/rafis_gothic/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5797167de9aad06f6855e5f7302d6fad47beb5e01c2a4c28de952efc05bf27ff +size 1137 diff --git a/Skins/rafis_gothic/spinner-bottom@2x.png b/Skins/rafis_gothic/spinner-bottom@2x.png new file mode 100644 index 00000000..76e175fb --- /dev/null +++ b/Skins/rafis_gothic/spinner-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04d400f0b6d1e0d390ade101df3877b8c6bcec8a7f21b2308f3e56c59b8b03b +size 3836 diff --git a/Skins/rafis_gothic/spinner-circle.png b/Skins/rafis_gothic/spinner-circle.png new file mode 100644 index 00000000..bda8edf4 --- /dev/null +++ b/Skins/rafis_gothic/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eefb18e81fe38aa3e4769812b628da9bcd4f8ef53b196c7d17f0ae65c6aa0e76 +size 11087 diff --git a/Skins/rafis_gothic/spinner-circle@2x.png b/Skins/rafis_gothic/spinner-circle@2x.png new file mode 100644 index 00000000..37f8f90b --- /dev/null +++ b/Skins/rafis_gothic/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f08507d5ef48929f50f899c7d387ad8c78f86bb607a04bcbd0ea3e5c311cf6 +size 18294 diff --git a/Skins/rafis_gothic/spinner-clear.png b/Skins/rafis_gothic/spinner-clear.png new file mode 100644 index 00000000..bc660b6e --- /dev/null +++ b/Skins/rafis_gothic/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6038e4ec67126dd095ae229d68a41ed10993475d21a3dd300bfb66481d1181ec +size 1230 diff --git a/Skins/rafis_gothic/spinner-clear@2x.png b/Skins/rafis_gothic/spinner-clear@2x.png new file mode 100644 index 00000000..bd7fae87 --- /dev/null +++ b/Skins/rafis_gothic/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae921da18f29a88056c4388b54ab362f89796bad9a8b483add548e8fa8b5a7f +size 2383 diff --git a/Skins/rafis_gothic/spinner-glow.png b/Skins/rafis_gothic/spinner-glow.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/rafis_gothic/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/rafis_gothic/spinner-metre.png b/Skins/rafis_gothic/spinner-metre.png new file mode 100644 index 00000000..c9d29ae8 --- /dev/null +++ b/Skins/rafis_gothic/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31994f3ab5771342bfd0d27e63bfb33169effea50e7002bfe948298f03a8421 +size 16577 diff --git a/Skins/rafis_gothic/spinner-metre@2x.png b/Skins/rafis_gothic/spinner-metre@2x.png new file mode 100644 index 00000000..bffcbc0e --- /dev/null +++ b/Skins/rafis_gothic/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce403f5d4883a2563d7461f4d693fed8b93b515d05a89aa8c862ba74f55143a +size 39555 diff --git a/Skins/rafis_gothic/spinner-middle.png b/Skins/rafis_gothic/spinner-middle.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/rafis_gothic/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/rafis_gothic/spinner-middle2.png b/Skins/rafis_gothic/spinner-middle2.png new file mode 100644 index 00000000..8b0c0ebd --- /dev/null +++ b/Skins/rafis_gothic/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca5b62cbfb3f1e1fc2eb845c9f39d9345df8cd36af7ea0c904741c41d647173 +size 141 diff --git a/Skins/rafis_gothic/spinner-middle2@2x.png b/Skins/rafis_gothic/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/rafis_gothic/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/rafis_gothic/spinner-middle@2x.png b/Skins/rafis_gothic/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/rafis_gothic/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/rafis_gothic/spinner-osu.png b/Skins/rafis_gothic/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/spinner-rpm.png b/Skins/rafis_gothic/spinner-rpm.png new file mode 100644 index 00000000..5d2df5e4 --- /dev/null +++ b/Skins/rafis_gothic/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75dd2f3e1c5798531ad2cae52d40619eab1dd6251149aabec033afae9628e3b0 +size 5482 diff --git a/Skins/rafis_gothic/spinner-rpm@2x.png b/Skins/rafis_gothic/spinner-rpm@2x.png new file mode 100644 index 00000000..39a6692b --- /dev/null +++ b/Skins/rafis_gothic/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6877128fd58b8818e813660e1cdb78ccd08220247e332e91ea9c1d0e22bebfa3 +size 8526 diff --git a/Skins/rafis_gothic/spinner-spin.png b/Skins/rafis_gothic/spinner-spin.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/rafis_gothic/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/rafis_gothic/spinner-top.png b/Skins/rafis_gothic/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/rafis_gothic/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/rafis_gothic/spinnerbonus.wav b/Skins/rafis_gothic/spinnerbonus.wav new file mode 100644 index 00000000..4eeeb4b8 --- /dev/null +++ b/Skins/rafis_gothic/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a207a6a8e703df332c545b7a8e26282eca46ed72b619eb10e857797cdd98be +size 81574 diff --git a/Skins/rafis_gothic/spinnerspin.wav b/Skins/rafis_gothic/spinnerspin.wav new file mode 100644 index 00000000..875566af --- /dev/null +++ b/Skins/rafis_gothic/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d78a8ca9586439e7ec23cdf6d3118b2d89668a60d4884d9cdb3fda00119da1e +size 180140 diff --git a/Skins/rafis_gothic/star.png b/Skins/rafis_gothic/star.png new file mode 100644 index 00000000..57cc86e3 --- /dev/null +++ b/Skins/rafis_gothic/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0923dba4b00cd7e9a694d731db281bf87da06a8a5bb51c7bf59f889c630f69 +size 17316 diff --git a/Skins/rafis_gothic/star2.png b/Skins/rafis_gothic/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/rafis_gothic/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/rafis_gothic/volume-bg-effect.png b/Skins/rafis_gothic/volume-bg-effect.png new file mode 100644 index 00000000..9401cbe2 --- /dev/null +++ b/Skins/rafis_gothic/volume-bg-effect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed8c50bb03c0004cef60b88f3e11116de0bb44acd3e9d9e089e6f367622ada3 +size 6130 diff --git a/Skins/rafis_gothic/volume-bg-effect@2x.png b/Skins/rafis_gothic/volume-bg-effect@2x.png new file mode 100644 index 00000000..4515098f --- /dev/null +++ b/Skins/rafis_gothic/volume-bg-effect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101be858ccc62f2e7895e1d9b62fb3f60b3c2e01b17d31b92f89586c2d99cfd1 +size 10602 diff --git a/Skins/rafis_gothic/volume-bg.png b/Skins/rafis_gothic/volume-bg.png new file mode 100644 index 00000000..e6e39b51 --- /dev/null +++ b/Skins/rafis_gothic/volume-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9b202321950e38de2a38e76eae508212ebb11900c679646ac40bab5e3d9ded +size 5280 diff --git a/Skins/rafis_gothic/volume-bg@2x.png b/Skins/rafis_gothic/volume-bg@2x.png new file mode 100644 index 00000000..4649433b --- /dev/null +++ b/Skins/rafis_gothic/volume-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35baa1a18decd33f8a1f2991c2fed3fca43a308495df049596c987cf6c891c3f +size 8664 diff --git a/Skins/rafis_gothic/welcome.wav b/Skins/rafis_gothic/welcome.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/rafis_gothic/welcome.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/rafis_gothic/whoosh.wav b/Skins/rafis_gothic/whoosh.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/rafis_gothic/whoosh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/sora (copy)/applause.ogg b/Skins/sora (copy)/applause.ogg new file mode 100644 index 00000000..0179b49f --- /dev/null +++ b/Skins/sora (copy)/applause.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0bf5a514f127dc9070cacb8cd117b1fa2f23ae538b8047baba7c9d3ab96e326 +size 4841277 diff --git a/Skins/sora (copy)/approachcircle@2x.png b/Skins/sora (copy)/approachcircle@2x.png new file mode 100644 index 00000000..131edc32 --- /dev/null +++ b/Skins/sora (copy)/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e86d90a39bd82a03a73504c7d9dcc5d3ce9cbc177fad8dd726d342002848a62 +size 331621 diff --git a/Skins/sora (copy)/back-button-hover.ogg b/Skins/sora (copy)/back-button-hover.ogg new file mode 100644 index 00000000..e437c964 --- /dev/null +++ b/Skins/sora (copy)/back-button-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8830e06410d44b1e5b99436be58b35df52ad1d79b2c4b5037eda916a68be28 +size 9500 diff --git a/Skins/sora (copy)/button-left.png b/Skins/sora (copy)/button-left.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/button-middle.png b/Skins/sora (copy)/button-middle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/button-right.png b/Skins/sora (copy)/button-right.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/check-off.ogg b/Skins/sora (copy)/check-off.ogg new file mode 100644 index 00000000..9f5f098f --- /dev/null +++ b/Skins/sora (copy)/check-off.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4291ca8242cdf63fe51e47bf86124c668750dae8a5a2815f3881679631e87ef5 +size 7970 diff --git a/Skins/sora (copy)/check-on.ogg b/Skins/sora (copy)/check-on.ogg new file mode 100644 index 00000000..9080c5bd --- /dev/null +++ b/Skins/sora (copy)/check-on.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa24375fd5df19efc0199a56ce4d9d3b76cfb64b8f5ace680ed70d648c344e7 +size 8730 diff --git a/Skins/sora (copy)/click-short-confirm.ogg b/Skins/sora (copy)/click-short-confirm.ogg new file mode 100644 index 00000000..8bb0e651 --- /dev/null +++ b/Skins/sora (copy)/click-short-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf404f3f26900781b36ed55897928752e0f246722b4cc574b755c576a8c726c +size 7055 diff --git a/Skins/sora (copy)/click-short.ogg b/Skins/sora (copy)/click-short.ogg new file mode 100644 index 00000000..0efd0137 --- /dev/null +++ b/Skins/sora (copy)/click-short.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635ca99003d3593c8fd9bcab78308ce3975e9445b86fefdf3452c6eb33fc066d +size 5462 diff --git a/Skins/sora (copy)/combobreak.ogg b/Skins/sora (copy)/combobreak.ogg new file mode 100644 index 00000000..9060c04e --- /dev/null +++ b/Skins/sora (copy)/combobreak.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92abefb734e6c9eaedf838350ebc05d5e8c68d3d3db1d765e5276cfd5a145d86 +size 14051 diff --git a/Skins/sora (copy)/comboburst.png b/Skins/sora (copy)/comboburst.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/count1.png b/Skins/sora (copy)/count1.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/count2.png b/Skins/sora (copy)/count2.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/count3.png b/Skins/sora (copy)/count3.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/cursor@2x.png b/Skins/sora (copy)/cursor@2x.png new file mode 100644 index 00000000..3165d24d --- /dev/null +++ b/Skins/sora (copy)/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a96aa32c8e6ecb1e13a11a0bee5076a2f95ec320fcad8291451036b6c4477e +size 23767 diff --git a/Skins/sora (copy)/cursortrail.png b/Skins/sora (copy)/cursortrail.png new file mode 100644 index 00000000..2673c6c4 --- /dev/null +++ b/Skins/sora (copy)/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76eb0ea5295de0d91cac73acbcafad0dd6d291093deb451d6b9d0b6867dc128a +size 1250 diff --git a/Skins/sora (copy)/default-0@2x.png b/Skins/sora (copy)/default-0@2x.png new file mode 100644 index 00000000..dd84b2f5 --- /dev/null +++ b/Skins/sora (copy)/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02fe862a0fc788ad73c202b31587cd95f7494bababcf6e7b4b7c96678c11353 +size 4637 diff --git a/Skins/sora (copy)/default-1@2x.png b/Skins/sora (copy)/default-1@2x.png new file mode 100644 index 00000000..485faa40 --- /dev/null +++ b/Skins/sora (copy)/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cebd3fa239bfdc06d7cd0fa269caf27940428ccc2c0d83a90e759b9aeca340cc +size 2705 diff --git a/Skins/sora (copy)/default-2@2x.png b/Skins/sora (copy)/default-2@2x.png new file mode 100644 index 00000000..4fdedfb5 --- /dev/null +++ b/Skins/sora (copy)/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57671498da2e064ec483edd6bad4e7eba4ad4fe8ed054c039ea30725ac1ea11 +size 4389 diff --git a/Skins/sora (copy)/default-3@2x.png b/Skins/sora (copy)/default-3@2x.png new file mode 100644 index 00000000..6189e9e4 --- /dev/null +++ b/Skins/sora (copy)/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb83d35f132c2082e8c8c2d105c230d94b3cdd98a4058e5c2679b9b770b8935 +size 4806 diff --git a/Skins/sora (copy)/default-4@2x.png b/Skins/sora (copy)/default-4@2x.png new file mode 100644 index 00000000..79c0adc0 --- /dev/null +++ b/Skins/sora (copy)/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6ec0cdd288ebad1a7530b8062054224442aa2c1f82d65fcaf9840fe2fb581ae +size 4191 diff --git a/Skins/sora (copy)/default-5@2x.png b/Skins/sora (copy)/default-5@2x.png new file mode 100644 index 00000000..e5741b71 --- /dev/null +++ b/Skins/sora (copy)/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13730fbc014bd8a3f38454f0b3381a7aa7d3ebeda42aeacfe313b9267db6063 +size 4342 diff --git a/Skins/sora (copy)/default-6@2x.png b/Skins/sora (copy)/default-6@2x.png new file mode 100644 index 00000000..143a84ff --- /dev/null +++ b/Skins/sora (copy)/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38cc8a1cb48cdca1b9847f0fe693d13fdb506895221729f3d0de30f70882717b +size 4492 diff --git a/Skins/sora (copy)/default-7@2x.png b/Skins/sora (copy)/default-7@2x.png new file mode 100644 index 00000000..b2558ce0 --- /dev/null +++ b/Skins/sora (copy)/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b4b6380e7a7aac0d251ec57d77535a8e29e4955a9c94cedd8500b06d4132d2 +size 3897 diff --git a/Skins/sora (copy)/default-8@2x.png b/Skins/sora (copy)/default-8@2x.png new file mode 100644 index 00000000..dfda26ee --- /dev/null +++ b/Skins/sora (copy)/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc80e9701a9e3e74a9b10f756da5e2e851b97085980fa799ddc53b2f94ef52e +size 4604 diff --git a/Skins/sora (copy)/default-9@2x.png b/Skins/sora (copy)/default-9@2x.png new file mode 100644 index 00000000..c07bf33a --- /dev/null +++ b/Skins/sora (copy)/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94cecd92e77ade7e59bf8c521e518f3b0d3d2cc9cfc3cfd91050718d0391188 +size 4301 diff --git a/Skins/sora (copy)/drum-hitclap.ogg b/Skins/sora (copy)/drum-hitclap.ogg new file mode 100644 index 00000000..2660dcc8 --- /dev/null +++ b/Skins/sora (copy)/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69eabf62e397ed90700e37a29b372c1a2a5ea6386ffa58df04fb2bceb33f91f +size 6397 diff --git a/Skins/sora (copy)/drum-hitfinish.ogg b/Skins/sora (copy)/drum-hitfinish.ogg new file mode 100644 index 00000000..79979f0d --- /dev/null +++ b/Skins/sora (copy)/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eefb59e618fcfaa0335bda373be2833ead21f6d75fb95e5f857fb09e79845f4 +size 6913 diff --git a/Skins/sora (copy)/drum-hitnormal.ogg b/Skins/sora (copy)/drum-hitnormal.ogg new file mode 100644 index 00000000..a2db2707 --- /dev/null +++ b/Skins/sora (copy)/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c8fd069f9d8c0d3169a9b24e0dc3cf957edebc5d213d8abefd15c4f8ce1073 +size 7393 diff --git a/Skins/sora (copy)/drum-hitwhistle.wav b/Skins/sora (copy)/drum-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/sora (copy)/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/sora (copy)/drum-sliderslide.wav b/Skins/sora (copy)/drum-sliderslide.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/sora (copy)/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/sora (copy)/drum-slidertick.wav b/Skins/sora (copy)/drum-slidertick.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/sora (copy)/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/sora (copy)/drum-sliderwhistle.wav b/Skins/sora (copy)/drum-sliderwhistle.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/sora (copy)/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/sora (copy)/failsound.ogg b/Skins/sora (copy)/failsound.ogg new file mode 100644 index 00000000..4913954e --- /dev/null +++ b/Skins/sora (copy)/failsound.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c328c20fbb479ab0bb5516f62c89fc3dcf673af315e4b85c8c2376fcfa91000 +size 53201 diff --git a/Skins/sora (copy)/followpoint-0.png b/Skins/sora (copy)/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/sora (copy)/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/sora (copy)/followpoint-1.png b/Skins/sora (copy)/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/sora (copy)/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/sora (copy)/followpoint-11.png b/Skins/sora (copy)/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/sora (copy)/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/sora (copy)/followpoint-12.png b/Skins/sora (copy)/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/sora (copy)/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/sora (copy)/followpoint-13.png b/Skins/sora (copy)/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/sora (copy)/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/sora (copy)/followpoint-14.png b/Skins/sora (copy)/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/sora (copy)/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/sora (copy)/followpoint-15.png b/Skins/sora (copy)/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/sora (copy)/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/sora (copy)/followpoint-16.png b/Skins/sora (copy)/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/sora (copy)/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/sora (copy)/followpoint-17.png b/Skins/sora (copy)/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/sora (copy)/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/sora (copy)/followpoint-18.png b/Skins/sora (copy)/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/sora (copy)/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/sora (copy)/followpoint-19.png b/Skins/sora (copy)/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/sora (copy)/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/sora (copy)/followpoint-2.png b/Skins/sora (copy)/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/sora (copy)/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/sora (copy)/followpoint-20.png b/Skins/sora (copy)/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/sora (copy)/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/sora (copy)/followpoint-21.png b/Skins/sora (copy)/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/sora (copy)/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/sora (copy)/followpoint-22.png b/Skins/sora (copy)/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/sora (copy)/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/sora (copy)/followpoint-23.png b/Skins/sora (copy)/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/sora (copy)/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/sora (copy)/followpoint-3.png b/Skins/sora (copy)/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/sora (copy)/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/sora (copy)/followpoint-4.png b/Skins/sora (copy)/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/sora (copy)/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/sora (copy)/followpoint-5.png b/Skins/sora (copy)/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/sora (copy)/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/sora (copy)/followpoint-6.png b/Skins/sora (copy)/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/sora (copy)/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/sora (copy)/followpoint-7.png b/Skins/sora (copy)/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/sora (copy)/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/sora (copy)/followpoint-8.png b/Skins/sora (copy)/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/sora (copy)/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/sora (copy)/followpoint-9.png b/Skins/sora (copy)/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/sora (copy)/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/sora (copy)/followpoint.png b/Skins/sora (copy)/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/sora (copy)/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/sora (copy)/go.png b/Skins/sora (copy)/go.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/hit0-0@2x.png b/Skins/sora (copy)/hit0-0@2x.png new file mode 100644 index 00000000..06e8ccb8 --- /dev/null +++ b/Skins/sora (copy)/hit0-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58dd1321d8839ce1754467e7b7c3a89e309fbcbf8c9e8949d1266f4bd3fb9e6a +size 3815 diff --git a/Skins/sora (copy)/hit0.png b/Skins/sora (copy)/hit0.png new file mode 100644 index 00000000..b0cd74a3 --- /dev/null +++ b/Skins/sora (copy)/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab142c3bad172a564f50931dd667c07af918ed7298107b0c41f79cd761cc8f +size 143 diff --git a/Skins/sora (copy)/hit100-0@2x.png b/Skins/sora (copy)/hit100-0@2x.png new file mode 100644 index 00000000..db0d603b --- /dev/null +++ b/Skins/sora (copy)/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c20542ec3b2497a2dcffc7b61e15cc80cab4c9ceda8062e014a90c899e4d746 +size 4935 diff --git a/Skins/sora (copy)/hit100.png b/Skins/sora (copy)/hit100.png new file mode 100644 index 00000000..b0cd74a3 --- /dev/null +++ b/Skins/sora (copy)/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab142c3bad172a564f50931dd667c07af918ed7298107b0c41f79cd761cc8f +size 143 diff --git a/Skins/sora (copy)/hit100k-0@2x.png b/Skins/sora (copy)/hit100k-0@2x.png new file mode 100644 index 00000000..ef9d69cd --- /dev/null +++ b/Skins/sora (copy)/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4205f3276a7fdf2700b4fdfbfc827dd0392f3c6625c79c57d52331ab8af976b4 +size 5835 diff --git a/Skins/sora (copy)/hit100k.png b/Skins/sora (copy)/hit100k.png new file mode 100644 index 00000000..b0cd74a3 --- /dev/null +++ b/Skins/sora (copy)/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab142c3bad172a564f50931dd667c07af918ed7298107b0c41f79cd761cc8f +size 143 diff --git a/Skins/sora (copy)/hit300-0.png b/Skins/sora (copy)/hit300-0.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/hit300.png b/Skins/sora (copy)/hit300.png new file mode 100644 index 00000000..b0cd74a3 --- /dev/null +++ b/Skins/sora (copy)/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab142c3bad172a564f50931dd667c07af918ed7298107b0c41f79cd761cc8f +size 143 diff --git a/Skins/sora (copy)/hit300g-0.png b/Skins/sora (copy)/hit300g-0.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/hit300g.png b/Skins/sora (copy)/hit300g.png new file mode 100644 index 00000000..b0cd74a3 --- /dev/null +++ b/Skins/sora (copy)/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab142c3bad172a564f50931dd667c07af918ed7298107b0c41f79cd761cc8f +size 143 diff --git a/Skins/sora (copy)/hit300k-0.png b/Skins/sora (copy)/hit300k-0.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/hit300k.png b/Skins/sora (copy)/hit300k.png new file mode 100644 index 00000000..b0cd74a3 --- /dev/null +++ b/Skins/sora (copy)/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab142c3bad172a564f50931dd667c07af918ed7298107b0c41f79cd761cc8f +size 143 diff --git a/Skins/sora (copy)/hit50-0@2x.png b/Skins/sora (copy)/hit50-0@2x.png new file mode 100644 index 00000000..7cfe9f1b --- /dev/null +++ b/Skins/sora (copy)/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28a8905816b2e57a0252e062576b179f7311902c41cbd2a492ecd8b8d461839 +size 4378 diff --git a/Skins/sora (copy)/hit50.png b/Skins/sora (copy)/hit50.png new file mode 100644 index 00000000..b0cd74a3 --- /dev/null +++ b/Skins/sora (copy)/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab142c3bad172a564f50931dd667c07af918ed7298107b0c41f79cd761cc8f +size 143 diff --git a/Skins/sora (copy)/hitcircle.png b/Skins/sora (copy)/hitcircle.png new file mode 100644 index 00000000..3ed9ac9f --- /dev/null +++ b/Skins/sora (copy)/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6379e4f126624492e79118f171de2726b2fbebe29756a1df7b647e3906653453 +size 6651 diff --git a/Skins/sora (copy)/hitcircleoverlay.png b/Skins/sora (copy)/hitcircleoverlay.png new file mode 100644 index 00000000..8b53d861 --- /dev/null +++ b/Skins/sora (copy)/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764fb977574e37f960453aaf280e3989d7a70abf57092e5ed5de40b5a79e67b5 +size 7349 diff --git a/Skins/sora (copy)/inputoverlay-background.png b/Skins/sora (copy)/inputoverlay-background.png new file mode 100644 index 00000000..faa8d637 --- /dev/null +++ b/Skins/sora (copy)/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1c00c316056a6b1db2ae050db243344e6e1da6a106a8cf30a2658a8ae68147 +size 148 diff --git a/Skins/sora (copy)/inputoverlay-key.png b/Skins/sora (copy)/inputoverlay-key.png new file mode 100644 index 00000000..192e33f5 --- /dev/null +++ b/Skins/sora (copy)/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94479ac8e798ff3c6431722e565c29914ad02ed3ee87c872ffb68625b6406b7 +size 1841 diff --git a/Skins/sora (copy)/key-delete.ogg b/Skins/sora (copy)/key-delete.ogg new file mode 100644 index 00000000..d0d6207c --- /dev/null +++ b/Skins/sora (copy)/key-delete.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b910332433f4c74e33b49d983a9091d6f66ca58859400fbca79f54fb890ac612 +size 8279 diff --git a/Skins/sora (copy)/key-movement.ogg b/Skins/sora (copy)/key-movement.ogg new file mode 100644 index 00000000..dbcb9a40 --- /dev/null +++ b/Skins/sora (copy)/key-movement.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c9a05c7ddb5aaa465d623ac3300261c1c629a9906690b1093af4cfb163a092 +size 12344 diff --git a/Skins/sora (copy)/key-press-1.ogg b/Skins/sora (copy)/key-press-1.ogg new file mode 100644 index 00000000..ec1c3f4f --- /dev/null +++ b/Skins/sora (copy)/key-press-1.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3bec44446a33421f37b45b6c7c743330f257200211b995fe2122766bbc685f +size 10884 diff --git a/Skins/sora (copy)/key-press-2.ogg b/Skins/sora (copy)/key-press-2.ogg new file mode 100644 index 00000000..cee1e50f --- /dev/null +++ b/Skins/sora (copy)/key-press-2.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98033b8f5cb3f22ef5891067d9b2a1f9c603c2abc7afe6f16018f3bf20bb07ae +size 10432 diff --git a/Skins/sora (copy)/key-press-3.ogg b/Skins/sora (copy)/key-press-3.ogg new file mode 100644 index 00000000..87dfec2a --- /dev/null +++ b/Skins/sora (copy)/key-press-3.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8eb5348d366f8f8d49ccfdac5bc36088919fda94b73c40ce71530672667eb5 +size 10863 diff --git a/Skins/sora (copy)/key-press-4.ogg b/Skins/sora (copy)/key-press-4.ogg new file mode 100644 index 00000000..be2184fb --- /dev/null +++ b/Skins/sora (copy)/key-press-4.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645cfc115a295405d232954e295b55a34f204dd5b111dd02ead24e5336cc2c78 +size 10594 diff --git a/Skins/sora (copy)/lighting.png b/Skins/sora (copy)/lighting.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/lighting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/match-confirm.ogg b/Skins/sora (copy)/match-confirm.ogg new file mode 100644 index 00000000..7d42f5cb --- /dev/null +++ b/Skins/sora (copy)/match-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c47af90d23df97db542dbe525c16489a37ec21969ab6f1a857df771694b864b +size 10495 diff --git a/Skins/sora (copy)/match-join.ogg b/Skins/sora (copy)/match-join.ogg new file mode 100644 index 00000000..78cd24cc --- /dev/null +++ b/Skins/sora (copy)/match-join.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed966bca3d979d70e436cf8b434b08da598b860101935011eb3b772f7b30c6b +size 29597 diff --git a/Skins/sora (copy)/match-leave.ogg b/Skins/sora (copy)/match-leave.ogg new file mode 100644 index 00000000..94ebfc06 --- /dev/null +++ b/Skins/sora (copy)/match-leave.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:730072aae43c4d013a0087030783b23a385e7d918d103d425e92ed7517dfcb87 +size 29843 diff --git a/Skins/sora (copy)/match-start.ogg b/Skins/sora (copy)/match-start.ogg new file mode 100644 index 00000000..786445ac --- /dev/null +++ b/Skins/sora (copy)/match-start.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9304cdd4cc1dbe1f7a89fab4536526e534e9d47f0d056dd2153a6f1b9704b17c +size 65666 diff --git a/Skins/sora (copy)/menu-button-background.png b/Skins/sora (copy)/menu-button-background.png new file mode 100644 index 00000000..7a62b82d --- /dev/null +++ b/Skins/sora (copy)/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95036a0e8fb39f75d78b4613e955fa22b06c8542d35b71af8294a8dd0fcbb253 +size 3772 diff --git a/Skins/sora (copy)/menu-freeplay-click.ogg b/Skins/sora (copy)/menu-freeplay-click.ogg new file mode 100644 index 00000000..2a67134e --- /dev/null +++ b/Skins/sora (copy)/menu-freeplay-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77456d03210bcf95408dbeb21f25d6531bec7f813d8e989d658ff1dbff9be0d1 +size 26457 diff --git a/Skins/sora (copy)/menuback.ogg b/Skins/sora (copy)/menuback.ogg new file mode 100644 index 00000000..a8bed7ba --- /dev/null +++ b/Skins/sora (copy)/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34244b61914037a22b381be08e7cd259b73ca012ea2f79dc036123fec99884e8 +size 6205 diff --git a/Skins/sora (copy)/menuclick.ogg b/Skins/sora (copy)/menuclick.ogg new file mode 100644 index 00000000..591a42ba --- /dev/null +++ b/Skins/sora (copy)/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc74dfb0e38685e41cb38058a91c5fc38638af51af76b19e3b26b8d84abe2381 +size 5235 diff --git a/Skins/sora (copy)/menuhit.ogg b/Skins/sora (copy)/menuhit.ogg new file mode 100644 index 00000000..993a905e --- /dev/null +++ b/Skins/sora (copy)/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95c09015a6bbf6184f2a6d29fac8211f696a1448d52784f3dbe4a0e3ebf9aad +size 31392 diff --git a/Skins/sora (copy)/nightcore-clap.wav b/Skins/sora (copy)/nightcore-clap.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/sora (copy)/nightcore-clap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/sora (copy)/nightcore-finish.wav b/Skins/sora (copy)/nightcore-finish.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/sora (copy)/nightcore-finish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/sora (copy)/nightcore-hat.wav b/Skins/sora (copy)/nightcore-hat.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/sora (copy)/nightcore-hat.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/sora (copy)/nightcore-kick.wav b/Skins/sora (copy)/nightcore-kick.wav new file mode 100644 index 00000000..ea3a72c8 --- /dev/null +++ b/Skins/sora (copy)/nightcore-kick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b6d53ca3e73bde21e1a27f036b3bbbd9b6ea1563fe8e6ab3ad125895e94f7b +size 45 diff --git a/Skins/sora (copy)/normal-hitclap.ogg b/Skins/sora (copy)/normal-hitclap.ogg new file mode 100644 index 00000000..2660dcc8 --- /dev/null +++ b/Skins/sora (copy)/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69eabf62e397ed90700e37a29b372c1a2a5ea6386ffa58df04fb2bceb33f91f +size 6397 diff --git a/Skins/sora (copy)/normal-hitfinish.ogg b/Skins/sora (copy)/normal-hitfinish.ogg new file mode 100644 index 00000000..79979f0d --- /dev/null +++ b/Skins/sora (copy)/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eefb59e618fcfaa0335bda373be2833ead21f6d75fb95e5f857fb09e79845f4 +size 6913 diff --git a/Skins/sora (copy)/normal-hitnormal.ogg b/Skins/sora (copy)/normal-hitnormal.ogg new file mode 100644 index 00000000..a2db2707 --- /dev/null +++ b/Skins/sora (copy)/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c8fd069f9d8c0d3169a9b24e0dc3cf957edebc5d213d8abefd15c4f8ce1073 +size 7393 diff --git a/Skins/sora (copy)/normal-hitwhistle.wav b/Skins/sora (copy)/normal-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/sora (copy)/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/sora (copy)/normal-sliderslide.wav b/Skins/sora (copy)/normal-sliderslide.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/sora (copy)/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/sora (copy)/normal-slidertick.ogg b/Skins/sora (copy)/normal-slidertick.ogg new file mode 100644 index 00000000..08d3cb3b --- /dev/null +++ b/Skins/sora (copy)/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db6135249c0c6b3158a95e431c33d5dcef10e92a389412e2d70373684d872bf +size 6859 diff --git a/Skins/sora (copy)/normal-sliderwhistle.wav b/Skins/sora (copy)/normal-sliderwhistle.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/sora (copy)/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/sora (copy)/pause-back-click.ogg b/Skins/sora (copy)/pause-back-click.ogg new file mode 100644 index 00000000..e3d817f1 --- /dev/null +++ b/Skins/sora (copy)/pause-back-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb37180c09de25f083bd20a189cc6ac5c256570221885c49c07edebe92e38e16 +size 9848 diff --git a/Skins/sora (copy)/pause-back-hover.ogg b/Skins/sora (copy)/pause-back-hover.ogg new file mode 100644 index 00000000..432f734e --- /dev/null +++ b/Skins/sora (copy)/pause-back-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32bbcbb1a30532f9a9122aed9b47f38ae60ce6840e1c8e36ecd1edffeeea578 +size 9539 diff --git a/Skins/sora (copy)/pause-back.png b/Skins/sora (copy)/pause-back.png new file mode 100644 index 00000000..d9cc1ea1 --- /dev/null +++ b/Skins/sora (copy)/pause-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8518606a646d8370cf9db030da59ae21a7cd20804033bafe63192c802b7b31 +size 2711 diff --git a/Skins/sora (copy)/pause-continue-click.ogg b/Skins/sora (copy)/pause-continue-click.ogg new file mode 100644 index 00000000..125bcadd --- /dev/null +++ b/Skins/sora (copy)/pause-continue-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d584f19160bb0a1e6af9ec19b0c57669f4511972042ca2299f9d1a4c19959e0a +size 9848 diff --git a/Skins/sora (copy)/pause-continue-hover.ogg b/Skins/sora (copy)/pause-continue-hover.ogg new file mode 100644 index 00000000..436902f8 --- /dev/null +++ b/Skins/sora (copy)/pause-continue-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185f2884ef899d2eded32cdb431f5055f5d3fdcab99e5cb3ef67a81f667d7b64 +size 9539 diff --git a/Skins/sora (copy)/pause-continue.png b/Skins/sora (copy)/pause-continue.png new file mode 100644 index 00000000..e6bcd311 --- /dev/null +++ b/Skins/sora (copy)/pause-continue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b4efcfc92207fc25dab72494e702365f3c57991201ed26e2af4b30789b9057 +size 2863 diff --git a/Skins/sora (copy)/pause-hover.ogg b/Skins/sora (copy)/pause-hover.ogg new file mode 100644 index 00000000..05f1ed36 --- /dev/null +++ b/Skins/sora (copy)/pause-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87406dd3c75da36673f39a3bb15badc23db8df9a77877991abf5a97c04286e1c +size 7447 diff --git a/Skins/sora (copy)/pause-loop.wav b/Skins/sora (copy)/pause-loop.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/sora (copy)/pause-loop.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/sora (copy)/pause-replay.png b/Skins/sora (copy)/pause-replay.png new file mode 100644 index 00000000..195fb083 --- /dev/null +++ b/Skins/sora (copy)/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049b3bcbae6cbac5b2a66712c8db1e8683cf29681ade4c1a8ce4e2011909fc3 +size 2962 diff --git a/Skins/sora (copy)/pause-retry-click.ogg b/Skins/sora (copy)/pause-retry-click.ogg new file mode 100644 index 00000000..701a0b0f --- /dev/null +++ b/Skins/sora (copy)/pause-retry-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51fad20c1f0bd2b0ecbaf332eb5e2cc904f272a76ecc2d692e1ab258a40b0783 +size 9848 diff --git a/Skins/sora (copy)/pause-retry-hover.ogg b/Skins/sora (copy)/pause-retry-hover.ogg new file mode 100644 index 00000000..33e981b8 --- /dev/null +++ b/Skins/sora (copy)/pause-retry-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d26e20c732223213f7400da366aa760d819080e2f2d8eb818e510e2a386e5974 +size 9539 diff --git a/Skins/sora (copy)/pause-retry.png b/Skins/sora (copy)/pause-retry.png new file mode 100644 index 00000000..563f2c62 --- /dev/null +++ b/Skins/sora (copy)/pause-retry.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287b3dd8c92c5ba647229cf81ac7aaefa078900ca794707a8ff1e57e349a3aa +size 2673 diff --git a/Skins/sora (copy)/play-skip.png b/Skins/sora (copy)/play-skip.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/play-unranked.png b/Skins/sora (copy)/play-unranked.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/play-warningarrow.png b/Skins/sora (copy)/play-warningarrow.png new file mode 100644 index 00000000..f38f6aaa --- /dev/null +++ b/Skins/sora (copy)/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0881578ff6ff5bf5a819d908544abea3f31b57e70a09e093313239fddd7664 +size 632 diff --git a/Skins/sora (copy)/rank-forum@2x.png b/Skins/sora (copy)/rank-forum@2x.png new file mode 100644 index 00000000..0fd5076d --- /dev/null +++ b/Skins/sora (copy)/rank-forum@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc16ab97c5c9e16b9390c11ceab9f0253d6f4df2fcffe9f8cc8c7126690a366 +size 988 diff --git a/Skins/sora (copy)/ranking-A-small@2x.png b/Skins/sora (copy)/ranking-A-small@2x.png new file mode 100644 index 00000000..adc6d6be --- /dev/null +++ b/Skins/sora (copy)/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbcc5037081a8f6b34ca742823043eb1edf85f24fecc08c4a29c4afe13bc8c74 +size 6876 diff --git a/Skins/sora (copy)/ranking-B-small@2x.png b/Skins/sora (copy)/ranking-B-small@2x.png new file mode 100644 index 00000000..c588aa71 --- /dev/null +++ b/Skins/sora (copy)/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4712ffe6eed22c85c0fd9b882d6be98e2b707840668100761a6c55f9233d4339 +size 9360 diff --git a/Skins/sora (copy)/ranking-C-small@2x.png b/Skins/sora (copy)/ranking-C-small@2x.png new file mode 100644 index 00000000..31e7668b --- /dev/null +++ b/Skins/sora (copy)/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:950a9851ed333fd0af5482d7dde19623f8e813fc37c8df9d68283d5dc00fe438 +size 6489 diff --git a/Skins/sora (copy)/ranking-D-small@2x.png b/Skins/sora (copy)/ranking-D-small@2x.png new file mode 100644 index 00000000..79deb0ce --- /dev/null +++ b/Skins/sora (copy)/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34139c14c30c6ab3d981db0f2eda24c91dc9855d39572ef71091f51ca3f1f3d +size 7872 diff --git a/Skins/sora (copy)/ranking-S-small@2x.png b/Skins/sora (copy)/ranking-S-small@2x.png new file mode 100644 index 00000000..c7f27e64 --- /dev/null +++ b/Skins/sora (copy)/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea875154abf8467dcaa5de27049e6c6758625cdea28e54a905c042031aad107 +size 8141 diff --git a/Skins/sora (copy)/ranking-SH-small@2x.png b/Skins/sora (copy)/ranking-SH-small@2x.png new file mode 100644 index 00000000..1b9cec49 --- /dev/null +++ b/Skins/sora (copy)/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bdc5d6ce9dc1667843e839e45eb1419e8819e5b109c17c97577636342415080 +size 7947 diff --git a/Skins/sora (copy)/ranking-X-small@2x.png b/Skins/sora (copy)/ranking-X-small@2x.png new file mode 100644 index 00000000..ae008f90 --- /dev/null +++ b/Skins/sora (copy)/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf5b988d5ef8fa4fe843e5732a365fae1c7ee53cdae173e96febd7d94c773f63 +size 12394 diff --git a/Skins/sora (copy)/ranking-XH-small@2x.png b/Skins/sora (copy)/ranking-XH-small@2x.png new file mode 100644 index 00000000..46d92e09 --- /dev/null +++ b/Skins/sora (copy)/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbeb3f38943e2a1a25592327dc5785987770b3b6cfbcd2197f3e2d483cdd913f +size 12073 diff --git a/Skins/sora (copy)/ranking-a-small.png b/Skins/sora (copy)/ranking-a-small.png new file mode 100644 index 00000000..b4bafee7 --- /dev/null +++ b/Skins/sora (copy)/ranking-a-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cde53f1209f80a3f8e01730923ec4f06eea414d4e3e38e23243d240f2d1d236 +size 4413 diff --git a/Skins/sora (copy)/ranking-a.png b/Skins/sora (copy)/ranking-a.png new file mode 100644 index 00000000..d7fbe40b --- /dev/null +++ b/Skins/sora (copy)/ranking-a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3dc4bd6f760ebbfab61300ada89b9e4ef2f83990c829c23af1fd6e853f0e89 +size 167222 diff --git a/Skins/sora (copy)/ranking-accuracy.png b/Skins/sora (copy)/ranking-accuracy.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/ranking-b-small.png b/Skins/sora (copy)/ranking-b-small.png new file mode 100644 index 00000000..1f4119ae --- /dev/null +++ b/Skins/sora (copy)/ranking-b-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92c8ad179f8f5e04b75193fe2044dc8f6f077c39d5b662f36a396e7534caba1 +size 4981 diff --git a/Skins/sora (copy)/ranking-b.png b/Skins/sora (copy)/ranking-b.png new file mode 100644 index 00000000..a81e4864 --- /dev/null +++ b/Skins/sora (copy)/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab9117d0222048f2bc6c636b7dc1f75decb12f60dc41cbd74418e2fbba39306 +size 175866 diff --git a/Skins/sora (copy)/ranking-c-small.png b/Skins/sora (copy)/ranking-c-small.png new file mode 100644 index 00000000..2896fba3 --- /dev/null +++ b/Skins/sora (copy)/ranking-c-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605093db4c61dac97d25c06ccaa2b501bf408dbab7cd1a1f1157a8ad876fa4da +size 4145 diff --git a/Skins/sora (copy)/ranking-c.png b/Skins/sora (copy)/ranking-c.png new file mode 100644 index 00000000..22a314d8 --- /dev/null +++ b/Skins/sora (copy)/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fadd94251d572b5da61fc72e4156802c68d8bf00c766eea95b592ba54a0a34a7 +size 175159 diff --git a/Skins/sora (copy)/ranking-d-small.png b/Skins/sora (copy)/ranking-d-small.png new file mode 100644 index 00000000..92410aed --- /dev/null +++ b/Skins/sora (copy)/ranking-d-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fab49e81baa198edc20e9987ab2ea9ed45b009c6660baa72822d3898207c93 +size 4538 diff --git a/Skins/sora (copy)/ranking-d.png b/Skins/sora (copy)/ranking-d.png new file mode 100644 index 00000000..22d57c0d --- /dev/null +++ b/Skins/sora (copy)/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21f2949c1ca4001aaaacff337348218d2c4bfad9a0b308909af0d8493663331 +size 147972 diff --git a/Skins/sora (copy)/ranking-graph.png b/Skins/sora (copy)/ranking-graph.png new file mode 100644 index 00000000..d4af6b34 --- /dev/null +++ b/Skins/sora (copy)/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52616bdb820538196240182a81d2a7d5b3c88dab87c1a53109baf97903089e32 +size 114 diff --git a/Skins/sora (copy)/ranking-maxcombo.png b/Skins/sora (copy)/ranking-maxcombo.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/ranking-panel.png b/Skins/sora (copy)/ranking-panel.png new file mode 100644 index 00000000..2a66f1f3 --- /dev/null +++ b/Skins/sora (copy)/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a73fe80425f06c1de8c8343d3502968f384388698256ad66242a42fe750905 +size 159 diff --git a/Skins/sora (copy)/ranking-perfect.png b/Skins/sora (copy)/ranking-perfect.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/ranking-s-small.png b/Skins/sora (copy)/ranking-s-small.png new file mode 100644 index 00000000..b4d1a885 --- /dev/null +++ b/Skins/sora (copy)/ranking-s-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98a2f7ced163c10639af5a7e857a351a708fa7f1c7b2c143e54e57d677f4a3ca +size 4802 diff --git a/Skins/sora (copy)/ranking-s.png b/Skins/sora (copy)/ranking-s.png new file mode 100644 index 00000000..1b909279 --- /dev/null +++ b/Skins/sora (copy)/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609afc98fdb769a91a5b8689abbadc806075a2f6a76fdea1a31b5bd54f3b98bc +size 141944 diff --git a/Skins/sora (copy)/ranking-sh-small.png b/Skins/sora (copy)/ranking-sh-small.png new file mode 100644 index 00000000..d3f0cc98 --- /dev/null +++ b/Skins/sora (copy)/ranking-sh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f90466e4dcde8fddc143588ecfeb30addea3fda98c60586426755cb4b3d473c +size 4732 diff --git a/Skins/sora (copy)/ranking-sh.png b/Skins/sora (copy)/ranking-sh.png new file mode 100644 index 00000000..b0363adf --- /dev/null +++ b/Skins/sora (copy)/ranking-sh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ebe6c5c9826cd7721e50f96e9e90ee6d7e98e083151f878064f3b9a01ff27cb +size 110096 diff --git a/Skins/sora (copy)/ranking-title.png b/Skins/sora (copy)/ranking-title.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/ranking-winner.png b/Skins/sora (copy)/ranking-winner.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/ranking-x-small.png b/Skins/sora (copy)/ranking-x-small.png new file mode 100644 index 00000000..9bc382e7 --- /dev/null +++ b/Skins/sora (copy)/ranking-x-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b401326f6d5355f94c50bd0453146abd30a2849e29f196675889bdbb7da77e25 +size 5615 diff --git a/Skins/sora (copy)/ranking-x.png b/Skins/sora (copy)/ranking-x.png new file mode 100644 index 00000000..3b71aeae --- /dev/null +++ b/Skins/sora (copy)/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a25935d4ad57ca2f8b250fcdecccbc2c7afca5966a34b52754e5aefad9710355 +size 188754 diff --git a/Skins/sora (copy)/ranking-xh-small.png b/Skins/sora (copy)/ranking-xh-small.png new file mode 100644 index 00000000..cb73031a --- /dev/null +++ b/Skins/sora (copy)/ranking-xh-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8b9fc43a56da7eb60202bec07e4b3cb504fb63322673c9d754eced40ce826c +size 5471 diff --git a/Skins/sora (copy)/ranking-xh.png b/Skins/sora (copy)/ranking-xh.png new file mode 100644 index 00000000..9fc151be --- /dev/null +++ b/Skins/sora (copy)/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bbee5cbcd8d08d3340c33f151d16d16dba089784e57c2929915f42a7009317d +size 147221 diff --git a/Skins/sora (copy)/ready.png b/Skins/sora (copy)/ready.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/reversearrow@2x.png b/Skins/sora (copy)/reversearrow@2x.png new file mode 100644 index 00000000..2e311fba --- /dev/null +++ b/Skins/sora (copy)/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04dff47c45b5a03dbb37df094daea2bb371d3e729eef16171f9857decbd6233 +size 40397 diff --git a/Skins/sora (copy)/score-0.png b/Skins/sora (copy)/score-0.png new file mode 100644 index 00000000..855c8e71 --- /dev/null +++ b/Skins/sora (copy)/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7170a4bced5520f101074bf05ba7bfcfa240ee6d0024dde437c97b167cf3902 +size 530 diff --git a/Skins/sora (copy)/score-1.png b/Skins/sora (copy)/score-1.png new file mode 100644 index 00000000..70878031 --- /dev/null +++ b/Skins/sora (copy)/score-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595b96e50ba6a1c465fbebb37155946a3079ed3e40ea2c368d1f816b34b69803 +size 284 diff --git a/Skins/sora (copy)/score-2.png b/Skins/sora (copy)/score-2.png new file mode 100644 index 00000000..892a7cb6 --- /dev/null +++ b/Skins/sora (copy)/score-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d22ebbcec0d8124c61f2035c5298c04a905cf293769c9c3728efa0e1f00166 +size 465 diff --git a/Skins/sora (copy)/score-3.png b/Skins/sora (copy)/score-3.png new file mode 100644 index 00000000..d06a275a --- /dev/null +++ b/Skins/sora (copy)/score-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d8e7dd630fce143b22e6f2366eae27779aba36f2f327f7b21919f63c96c11e +size 525 diff --git a/Skins/sora (copy)/score-4.png b/Skins/sora (copy)/score-4.png new file mode 100644 index 00000000..12e11a93 --- /dev/null +++ b/Skins/sora (copy)/score-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681db845b3a800c7ba924c694a8de925a38aeb66f5d71cb9a46622fdcbcfd736 +size 433 diff --git a/Skins/sora (copy)/score-5.png b/Skins/sora (copy)/score-5.png new file mode 100644 index 00000000..2d75f7d7 --- /dev/null +++ b/Skins/sora (copy)/score-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8819f5f0101099bb01631e9bd405c157a4345f57cd9cb69013df1fa29abde895 +size 491 diff --git a/Skins/sora (copy)/score-6.png b/Skins/sora (copy)/score-6.png new file mode 100644 index 00000000..fab1e0be --- /dev/null +++ b/Skins/sora (copy)/score-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ef287a30f81fe6c72e06b09ae10ccf529ee80f026389268018f4bcca87e74b +size 545 diff --git a/Skins/sora (copy)/score-7.png b/Skins/sora (copy)/score-7.png new file mode 100644 index 00000000..f6a6efe1 --- /dev/null +++ b/Skins/sora (copy)/score-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2684c2d794f6f6ddb0172e5c6dc62a14c441186c5310debbd1f06e16f3e9fd1a +size 378 diff --git a/Skins/sora (copy)/score-8.png b/Skins/sora (copy)/score-8.png new file mode 100644 index 00000000..bb5af047 --- /dev/null +++ b/Skins/sora (copy)/score-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc655c3def011471916f520dab0e9e5f97c924b905d8af838f16d1878ac0980a +size 517 diff --git a/Skins/sora (copy)/score-9.png b/Skins/sora (copy)/score-9.png new file mode 100644 index 00000000..4679ed1a --- /dev/null +++ b/Skins/sora (copy)/score-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea51b6d119aa6c25435748ed2f685ef0e75fae500b5d84f58975f9169325e69 +size 552 diff --git a/Skins/sora (copy)/score-comma.png b/Skins/sora (copy)/score-comma.png new file mode 100644 index 00000000..2a675b76 --- /dev/null +++ b/Skins/sora (copy)/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3ab83160dddd23fc3a762ea79653b5256fa8ba03c695b76a658846cff9de57 +size 253 diff --git a/Skins/sora (copy)/score-dot.png b/Skins/sora (copy)/score-dot.png new file mode 100644 index 00000000..8932c22e --- /dev/null +++ b/Skins/sora (copy)/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0bf1654e55dd0ad97bbdeb25c955cd249bd3c8ac11b478deef94c1c41de20e +size 190 diff --git a/Skins/sora (copy)/score-percent.png b/Skins/sora (copy)/score-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/score-x.png b/Skins/sora (copy)/score-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/scorebar-bg.png b/Skins/sora (copy)/scorebar-bg.png new file mode 100644 index 00000000..b093ad53 --- /dev/null +++ b/Skins/sora (copy)/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f0b825a14421ba9fe172201ad6b58eecd92ef73d33cbd90c810a1e58af5910 +size 46978 diff --git a/Skins/sora (copy)/scorebar-colour.png b/Skins/sora (copy)/scorebar-colour.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/scorebar-marker.png b/Skins/sora (copy)/scorebar-marker.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/scorebar-marker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/scoreentry-comma.png b/Skins/sora (copy)/scoreentry-comma.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/sora (copy)/scoreentry-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/sora (copy)/scoreentry-dot.png b/Skins/sora (copy)/scoreentry-dot.png new file mode 100644 index 00000000..42db1619 --- /dev/null +++ b/Skins/sora (copy)/scoreentry-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68be05d1feb40c87fe533716952724594213b48e544451cfeefa5f536c3508b2 +size 119 diff --git a/Skins/sora (copy)/scoreentry-percent.png b/Skins/sora (copy)/scoreentry-percent.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/scoreentry-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/scoreentry-x.png b/Skins/sora (copy)/scoreentry-x.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/scoreentry-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/sectionfail.ogg b/Skins/sora (copy)/sectionfail.ogg new file mode 100644 index 00000000..8fbd59b1 --- /dev/null +++ b/Skins/sora (copy)/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac4f7d402c86ee7fa9b1fcc8fd9ed6199a93ea2ac7538a16dad37bcd4856621 +size 17457 diff --git a/Skins/sora (copy)/sectionpass.ogg b/Skins/sora (copy)/sectionpass.ogg new file mode 100644 index 00000000..27463307 --- /dev/null +++ b/Skins/sora (copy)/sectionpass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a82ed631558b4c2b7d017289cb4353b1cc193a2d78d9d89f4a715e4626ee5f7f +size 15342 diff --git a/Skins/sora (copy)/seeya.ogg b/Skins/sora (copy)/seeya.ogg new file mode 100644 index 00000000..d16fa0a2 --- /dev/null +++ b/Skins/sora (copy)/seeya.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d87397f3d0734df857ed107c9ba1dd49c629c02e8bd5f55b949cdd2a146fe78 +size 102602 diff --git a/Skins/sora (copy)/select-difficulty.ogg b/Skins/sora (copy)/select-difficulty.ogg new file mode 100644 index 00000000..7555e46a --- /dev/null +++ b/Skins/sora (copy)/select-difficulty.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4436f3eb36801006df29d440543e9be91895d90946d9c8a1b274a9df1d93a22c +size 6487 diff --git a/Skins/sora (copy)/select-expand.ogg b/Skins/sora (copy)/select-expand.ogg new file mode 100644 index 00000000..dd69a527 --- /dev/null +++ b/Skins/sora (copy)/select-expand.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f36fa8ec71d234d5f1391f4a5a88d389a448044f384bf951580fc968808f31 +size 9857 diff --git a/Skins/sora (copy)/shutter.ogg b/Skins/sora (copy)/shutter.ogg new file mode 100644 index 00000000..6bf5bbd4 --- /dev/null +++ b/Skins/sora (copy)/shutter.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ba74912d9faf75719a0143a3dacb58d86b0b5e6a413c55cd431c715159a250 +size 12526 diff --git a/Skins/sora (copy)/skin.ini b/Skins/sora (copy)/skin.ini new file mode 100644 index 00000000..3f0b5a7e --- /dev/null +++ b/Skins/sora (copy)/skin.ini @@ -0,0 +1,22 @@ +// skin.ini generated by osu! skin mixer v2.8.1 + +[General] +Name: sora +Author: Hidoi (onnneetti helped too) +Version: 2.2 +CursorCentre: 1 +CursorExpand: 0 +CursorRotate: 0 +AllowSliderBallTint: 1 + +[Colours] +Combo1: 255,255,255 +SliderBorder: 100,100,100 +SliderTrackOverride: 0,0,0 +SongSelectActiveText: 255,255,255 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 130 +ScoreOverlap: 7 +ComboPrefix: hide diff --git a/Skins/sora (copy)/sliderb@2x.png b/Skins/sora (copy)/sliderb@2x.png new file mode 100644 index 00000000..ac70a0ab --- /dev/null +++ b/Skins/sora (copy)/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e10344282fea41156c95301f2d0a70b7197da3b5dd6fa5e09464e758b35dc9 +size 30427 diff --git a/Skins/sora (copy)/sliderendcircle.png b/Skins/sora (copy)/sliderendcircle.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/sliderfollowcircle.png b/Skins/sora (copy)/sliderfollowcircle.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/sliderfollowcircle@2x.png b/Skins/sora (copy)/sliderfollowcircle@2x.png new file mode 100644 index 00000000..2f6ff224 --- /dev/null +++ b/Skins/sora (copy)/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:444fe05ff32d3ae906bf4f02ec897035e7c25c0a6d3de3ebc429b045d50af978 +size 44545 diff --git a/Skins/sora (copy)/sliderscorepoint@2x.png b/Skins/sora (copy)/sliderscorepoint@2x.png new file mode 100644 index 00000000..e3c4a631 --- /dev/null +++ b/Skins/sora (copy)/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3402f9043cff21c8693995e92ea6df3f11e024ba368151004c6ef8b23de3f524 +size 3899 diff --git a/Skins/sora (copy)/soft-hitclap.ogg b/Skins/sora (copy)/soft-hitclap.ogg new file mode 100644 index 00000000..2660dcc8 --- /dev/null +++ b/Skins/sora (copy)/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69eabf62e397ed90700e37a29b372c1a2a5ea6386ffa58df04fb2bceb33f91f +size 6397 diff --git a/Skins/sora (copy)/soft-hitfinish.ogg b/Skins/sora (copy)/soft-hitfinish.ogg new file mode 100644 index 00000000..79979f0d --- /dev/null +++ b/Skins/sora (copy)/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eefb59e618fcfaa0335bda373be2833ead21f6d75fb95e5f857fb09e79845f4 +size 6913 diff --git a/Skins/sora (copy)/soft-hitnormal.ogg b/Skins/sora (copy)/soft-hitnormal.ogg new file mode 100644 index 00000000..a2db2707 --- /dev/null +++ b/Skins/sora (copy)/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c8fd069f9d8c0d3169a9b24e0dc3cf957edebc5d213d8abefd15c4f8ce1073 +size 7393 diff --git a/Skins/sora (copy)/soft-hitwhistle.wav b/Skins/sora (copy)/soft-hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/sora (copy)/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/sora (copy)/soft-sliderslide.wav b/Skins/sora (copy)/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/sora (copy)/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/sora (copy)/soft-slidertick.wav b/Skins/sora (copy)/soft-slidertick.wav new file mode 100644 index 00000000..672a2a0f --- /dev/null +++ b/Skins/sora (copy)/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad7f52dd6999b0e6989d9bef639bee16088c5f0de71723cc8dbd0e21cf9ef0a +size 268 diff --git a/Skins/sora (copy)/soft-sliderwhistle.wav b/Skins/sora (copy)/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/sora (copy)/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/sora (copy)/spinner-approachcircle.png b/Skins/sora (copy)/spinner-approachcircle.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/sora (copy)/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/sora (copy)/spinner-background.png b/Skins/sora (copy)/spinner-background.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/sora (copy)/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/sora (copy)/spinner-bottom.png b/Skins/sora (copy)/spinner-bottom.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/sora (copy)/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/sora (copy)/spinner-circle.png b/Skins/sora (copy)/spinner-circle.png new file mode 100644 index 00000000..2e075e47 --- /dev/null +++ b/Skins/sora (copy)/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9504491973d3b4cec1959baf24d953378fe9dc020f884740787a0d68e4220f1 +size 5354 diff --git a/Skins/sora (copy)/spinner-circle@2x.png b/Skins/sora (copy)/spinner-circle@2x.png new file mode 100644 index 00000000..c78df48b --- /dev/null +++ b/Skins/sora (copy)/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6741e3affb785c99067acdf33dcdd346a388daaddd7df1c8ed180f8952183613 +size 46742 diff --git a/Skins/sora (copy)/spinner-clear.png b/Skins/sora (copy)/spinner-clear.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/sora (copy)/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/sora (copy)/spinner-glow.png b/Skins/sora (copy)/spinner-glow.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/sora (copy)/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/sora (copy)/spinner-metre.png b/Skins/sora (copy)/spinner-metre.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/sora (copy)/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/sora (copy)/spinner-middle.png b/Skins/sora (copy)/spinner-middle.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/sora (copy)/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/sora (copy)/spinner-osu.png b/Skins/sora (copy)/spinner-osu.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/sora (copy)/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/sora (copy)/spinner-rpm.png b/Skins/sora (copy)/spinner-rpm.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/spinner-spin.png b/Skins/sora (copy)/spinner-spin.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/sora (copy)/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/sora (copy)/spinner-top.png b/Skins/sora (copy)/spinner-top.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/sora (copy)/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/sora (copy)/spinner-warning.png b/Skins/sora (copy)/spinner-warning.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/sora (copy)/spinner-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/sora (copy)/spinnerbonus.ogg b/Skins/sora (copy)/spinnerbonus.ogg new file mode 100644 index 00000000..be524c0e --- /dev/null +++ b/Skins/sora (copy)/spinnerbonus.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3b9cde9c4546256f0a05397bd30eb671b51a1dba01e8b88ef1c76e446ddbe4 +size 9564 diff --git a/Skins/sora (copy)/spinnerspin.ogg b/Skins/sora (copy)/spinnerspin.ogg new file mode 100644 index 00000000..79ee1ad0 --- /dev/null +++ b/Skins/sora (copy)/spinnerspin.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a95f6c6c91dec2d4267269423c22813efcc0a18681def42c3203654333fbe0f +size 8629 diff --git a/Skins/sora (copy)/star.png b/Skins/sora (copy)/star.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/sora (copy)/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/sora (copy)/star2.png b/Skins/sora (copy)/star2.png new file mode 100644 index 00000000..b16f24ca --- /dev/null +++ b/Skins/sora (copy)/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa4fa20701cdd6d8d56046069001186b5267e3ee7d0ef618ad2f4a683723e11 +size 68 diff --git a/Skins/sora (copy)/welcome.ogg b/Skins/sora (copy)/welcome.ogg new file mode 100644 index 00000000..50cbeee0 --- /dev/null +++ b/Skins/sora (copy)/welcome.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b0affb42f244d54d7f6f15d7972d956365819ab30fba1933b0031ca5fafdd2 +size 41397 diff --git a/Skins/stellerino 2/Ranking-title.png b/Skins/stellerino 2/Ranking-title.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/Ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/approachcircle@2x.png b/Skins/stellerino 2/approachcircle@2x.png new file mode 100644 index 00000000..fd575ae3 --- /dev/null +++ b/Skins/stellerino 2/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:729fcdebc0b80dc25ebebfaedcc4b8c8b94ec63b73c5326f0353d42a7cf23d8a +size 9854 diff --git a/Skins/stellerino 2/button-left.png b/Skins/stellerino 2/button-left.png new file mode 100644 index 00000000..f13ebca5 --- /dev/null +++ b/Skins/stellerino 2/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1eacfc0e7aba372a544bc469aff762d8ed6e1a17c273e4ef504948c0e76e3c +size 84 diff --git a/Skins/stellerino 2/button-middle.png b/Skins/stellerino 2/button-middle.png new file mode 100644 index 00000000..6b9cdb44 --- /dev/null +++ b/Skins/stellerino 2/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f18cf9a60d6531b7a13347059686b12b143b6024d1690a2406ca2e162e9a4b3 +size 91 diff --git a/Skins/stellerino 2/button-right.png b/Skins/stellerino 2/button-right.png new file mode 100644 index 00000000..f13ebca5 --- /dev/null +++ b/Skins/stellerino 2/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1eacfc0e7aba372a544bc469aff762d8ed6e1a17c273e4ef504948c0e76e3c +size 84 diff --git a/Skins/stellerino 2/combo-0.png b/Skins/stellerino 2/combo-0.png new file mode 100644 index 00000000..2553d122 --- /dev/null +++ b/Skins/stellerino 2/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd39d9b6fb2301f469abbf1284bfecbb4d50c4886f1d8ef8758cff41a3f1bfc +size 1362 diff --git a/Skins/stellerino 2/combo-1.png b/Skins/stellerino 2/combo-1.png new file mode 100644 index 00000000..538dc8bb --- /dev/null +++ b/Skins/stellerino 2/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52df3b8d7d80e2997cd5b77b5eaa849e0a3235fcf7f1113a99794268c39941e9 +size 488 diff --git a/Skins/stellerino 2/combo-2.png b/Skins/stellerino 2/combo-2.png new file mode 100644 index 00000000..d746250a --- /dev/null +++ b/Skins/stellerino 2/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b5617c1f495f34368766e535521450aed769b65c5be09c94ab02c5dfc5724a +size 1091 diff --git a/Skins/stellerino 2/combo-3.png b/Skins/stellerino 2/combo-3.png new file mode 100644 index 00000000..6cd6c4cc --- /dev/null +++ b/Skins/stellerino 2/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68a235c471354bf71915b3992f2666abe0f2be56c0ff8915b3afb03b0d3bc97d +size 1283 diff --git a/Skins/stellerino 2/combo-4.png b/Skins/stellerino 2/combo-4.png new file mode 100644 index 00000000..bb45b6dd --- /dev/null +++ b/Skins/stellerino 2/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a84c61746e743679de91cc0347b03104b64222ec7a7330fd9baa90307e25d7 +size 930 diff --git a/Skins/stellerino 2/combo-5.png b/Skins/stellerino 2/combo-5.png new file mode 100644 index 00000000..323f01a3 --- /dev/null +++ b/Skins/stellerino 2/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea05afcc0b0d6cf747a49dfbf27f62cacdcb9cc93f95f0512bc85c4d44c3886 +size 1209 diff --git a/Skins/stellerino 2/combo-6.png b/Skins/stellerino 2/combo-6.png new file mode 100644 index 00000000..5e59d0a5 --- /dev/null +++ b/Skins/stellerino 2/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e47a405278ea12ebe4f1d6b6be3c4f972f10ff4d853c6196d98f8da3d2cdec8 +size 1417 diff --git a/Skins/stellerino 2/combo-7.png b/Skins/stellerino 2/combo-7.png new file mode 100644 index 00000000..0a8d8256 --- /dev/null +++ b/Skins/stellerino 2/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6454ddf6ffc281461bbba56d6f609659a869ef3bb19c0b41221673ea9f706836 +size 877 diff --git a/Skins/stellerino 2/combo-8.png b/Skins/stellerino 2/combo-8.png new file mode 100644 index 00000000..931ab5d4 --- /dev/null +++ b/Skins/stellerino 2/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71aab9a5acd85670370efbe439408da43a9adab3d3d59cbf60603c1d53f5fb4 +size 1460 diff --git a/Skins/stellerino 2/combo-9.png b/Skins/stellerino 2/combo-9.png new file mode 100644 index 00000000..ba0166d5 --- /dev/null +++ b/Skins/stellerino 2/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb284c4e65df03c8099b992c4393a072c8fa01321568eb466cf2fe0595a09300 +size 1447 diff --git a/Skins/stellerino 2/combo-x.png b/Skins/stellerino 2/combo-x.png new file mode 100644 index 00000000..46eac26d --- /dev/null +++ b/Skins/stellerino 2/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e11eb12b5ed930510e6504e2c99314afed53bfd20f25a83386ae79a0bc70a19 +size 1008 diff --git a/Skins/stellerino 2/combobreak.mp3 b/Skins/stellerino 2/combobreak.mp3 new file mode 100644 index 00000000..3fee01b1 --- /dev/null +++ b/Skins/stellerino 2/combobreak.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c74e428bfe21838cb09557da36c6401e9486cdb418aac1ff1ca6a8e455f5e22 +size 6219 diff --git a/Skins/stellerino 2/comboburst.png b/Skins/stellerino 2/comboburst.png new file mode 100644 index 00000000..500b220b --- /dev/null +++ b/Skins/stellerino 2/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb101ac8f789733d0a60a35a057518e92ded3f12aa8c984b53197ebdb22f203 +size 96 diff --git a/Skins/stellerino 2/count.mp3 b/Skins/stellerino 2/count.mp3 new file mode 100644 index 00000000..a06eddb6 --- /dev/null +++ b/Skins/stellerino 2/count.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8914512de026cea41a2fa5635e216b6f3560d699de2e3d7ac369877c333ebafa +size 3827 diff --git a/Skins/stellerino 2/count1.png b/Skins/stellerino 2/count1.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/count2.png b/Skins/stellerino 2/count2.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/count3.png b/Skins/stellerino 2/count3.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/cursor.png b/Skins/stellerino 2/cursor.png new file mode 100644 index 00000000..e043921d --- /dev/null +++ b/Skins/stellerino 2/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c9b2975924dbd539e38f05f5a5256a8619ba2ef922b6d57cc3a30e67b533e2f +size 2027 diff --git a/Skins/stellerino 2/cursor@2xaaaa.png b/Skins/stellerino 2/cursor@2xaaaa.png new file mode 100644 index 00000000..fc2d580d --- /dev/null +++ b/Skins/stellerino 2/cursor@2xaaaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35c8f8bff9cb93d2c8541113cc45226e18b1ccf1fd33941374f65d6c553f9fd +size 4250 diff --git a/Skins/stellerino 2/cursor@2xsadf.png b/Skins/stellerino 2/cursor@2xsadf.png new file mode 100644 index 00000000..df4afd8a --- /dev/null +++ b/Skins/stellerino 2/cursor@2xsadf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65f0bf4ab3c96f9b8ff24feebd7ad21dd41ef3ad0d3f08f7472f9e4b0c12425 +size 8934 diff --git a/Skins/stellerino 2/cursoraaaaaa.png b/Skins/stellerino 2/cursoraaaaaa.png new file mode 100644 index 00000000..b78dc9a1 --- /dev/null +++ b/Skins/stellerino 2/cursoraaaaaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b19d28a95af019dccf9a57a71130fadf03085f9b44d3bd23995ebe6c618e244 +size 2026 diff --git a/Skins/stellerino 2/cursortraiLasdf.png b/Skins/stellerino 2/cursortraiLasdf.png new file mode 100644 index 00000000..8840ad27 --- /dev/null +++ b/Skins/stellerino 2/cursortraiLasdf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d930113867ee5e90a87461e5ed061ddde24b123ac3965e6b5ea0da3790ec25 +size 1722 diff --git a/Skins/stellerino 2/cursortrail.png b/Skins/stellerino 2/cursortrail.png new file mode 100644 index 00000000..10973de0 --- /dev/null +++ b/Skins/stellerino 2/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:888f64466b7a73633d9135504c32fe095f8bfc52e48f1d257aca69f56556108c +size 1796 diff --git a/Skins/stellerino 2/cursortrailaaa.png b/Skins/stellerino 2/cursortrailaaa.png new file mode 100644 index 00000000..5000fd73 --- /dev/null +++ b/Skins/stellerino 2/cursortrailaaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac25616e9408f5eae6ea9a1e7b4e23d15956f05955a381bce6fd321c7065e71e +size 1694 diff --git a/Skins/stellerino 2/cursortrailaaaa.png b/Skins/stellerino 2/cursortrailaaaa.png new file mode 100644 index 00000000..602c82b3 --- /dev/null +++ b/Skins/stellerino 2/cursortrailaaaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa49d6d7659b0b9d36c23ede7ed9f6f45e67f04f80837dd6adaa1274fb418a2 +size 1532 diff --git a/Skins/stellerino 2/default-0.png b/Skins/stellerino 2/default-0.png new file mode 100644 index 00000000..770f6c07 --- /dev/null +++ b/Skins/stellerino 2/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea52428adc2a41b2f8a3a15802776b1335c2d05900281b83c934290ade94c4b +size 452 diff --git a/Skins/stellerino 2/default-1.png b/Skins/stellerino 2/default-1.png new file mode 100644 index 00000000..83de4995 --- /dev/null +++ b/Skins/stellerino 2/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39fcfa565b60804e9fb713abb1c2cba925c505d95253b49d758b312d0cc8e863 +size 194 diff --git a/Skins/stellerino 2/default-2.png b/Skins/stellerino 2/default-2.png new file mode 100644 index 00000000..553b93b9 --- /dev/null +++ b/Skins/stellerino 2/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b83c480f10e8f95b404eee0ecc4ffe94af0ebd323dca46f79fe35cb49993f62 +size 432 diff --git a/Skins/stellerino 2/default-3.png b/Skins/stellerino 2/default-3.png new file mode 100644 index 00000000..46531d2c --- /dev/null +++ b/Skins/stellerino 2/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11d98a093bb10c53324fceac63798d45c677906f5e834f8d736f56c9399c00e +size 462 diff --git a/Skins/stellerino 2/default-4.png b/Skins/stellerino 2/default-4.png new file mode 100644 index 00000000..38142189 --- /dev/null +++ b/Skins/stellerino 2/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9248ceeb38b3f1842b3ebdbe8551aa33863e05b3619e38367a2a3e65b546441 +size 303 diff --git a/Skins/stellerino 2/default-5.png b/Skins/stellerino 2/default-5.png new file mode 100644 index 00000000..dc1b77cd --- /dev/null +++ b/Skins/stellerino 2/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167191ac59ad8d8eb6d4a612c9d1c2ab0e0c6b849362cc9c100a0932d2573bab +size 420 diff --git a/Skins/stellerino 2/default-6.png b/Skins/stellerino 2/default-6.png new file mode 100644 index 00000000..5721356a --- /dev/null +++ b/Skins/stellerino 2/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0808e56ada5d6a6d33ac6d2c9c6256a39df54e3ca44e46f2efbaa406f75818b1 +size 487 diff --git a/Skins/stellerino 2/default-7.png b/Skins/stellerino 2/default-7.png new file mode 100644 index 00000000..32aa23ad --- /dev/null +++ b/Skins/stellerino 2/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0a16e463df9f973be8408538ff8715ed9fd651f5e8bac755de0612b5a692af +size 337 diff --git a/Skins/stellerino 2/default-8.png b/Skins/stellerino 2/default-8.png new file mode 100644 index 00000000..d68e6767 --- /dev/null +++ b/Skins/stellerino 2/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b97bb35d4fa8250421f0188c36996c4fd5775e1f1e5c3c6c94fc722b54254a +size 484 diff --git a/Skins/stellerino 2/default-9.png b/Skins/stellerino 2/default-9.png new file mode 100644 index 00000000..fd882fdc --- /dev/null +++ b/Skins/stellerino 2/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb2ba9dc84a4b504c869965f1f3686a1c086e9159ac632e35496e6eb1df7d88 +size 489 diff --git a/Skins/stellerino 2/drum-hitclap.mp3 b/Skins/stellerino 2/drum-hitclap.mp3 new file mode 100644 index 00000000..654aabfb --- /dev/null +++ b/Skins/stellerino 2/drum-hitclap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74de9205c31c8c8629e8387f2f8aaca304c5b88060054a21600168dc96246644 +size 2130 diff --git a/Skins/stellerino 2/drum-hitfinish.mp3 b/Skins/stellerino 2/drum-hitfinish.mp3 new file mode 100644 index 00000000..708cc818 --- /dev/null +++ b/Skins/stellerino 2/drum-hitfinish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9745187e9babf483bd2464a4634d70393c90a516399939b3ad5e8eb1ca543741 +size 3801 diff --git a/Skins/stellerino 2/drum-hitnormal.mp3 b/Skins/stellerino 2/drum-hitnormal.mp3 new file mode 100644 index 00000000..c72e5b9a --- /dev/null +++ b/Skins/stellerino 2/drum-hitnormal.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df34351f163491466302b19159bb7665f9eca9cc3bd8d2be75dc5ef01a0b93d8 +size 4583 diff --git a/Skins/stellerino 2/drum-hitwhistle.mp3 b/Skins/stellerino 2/drum-hitwhistle.mp3 new file mode 100644 index 00000000..6bf2b6ce --- /dev/null +++ b/Skins/stellerino 2/drum-hitwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa9c8282ba7ffcc8bd5ba79b764755d9b8d8a1740a4b5c7ec968160b1f4f99c +size 2828 diff --git a/Skins/stellerino 2/followpoint-0.png b/Skins/stellerino 2/followpoint-0.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/followpoint-1.png b/Skins/stellerino 2/followpoint-1.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/followpoint-11.png b/Skins/stellerino 2/followpoint-11.png new file mode 100644 index 00000000..b67f3568 --- /dev/null +++ b/Skins/stellerino 2/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:064ff5df4c9b6664c40d85d33827f3bdffcbdbe80922604df2184fe8fb1311da +size 753 diff --git a/Skins/stellerino 2/followpoint-12.png b/Skins/stellerino 2/followpoint-12.png new file mode 100644 index 00000000..005c8d62 --- /dev/null +++ b/Skins/stellerino 2/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7717b02fa74ebeb135f570b731ce69d09a6ab9bad322c47b509c61d4e6517fc +size 876 diff --git a/Skins/stellerino 2/followpoint-13.png b/Skins/stellerino 2/followpoint-13.png new file mode 100644 index 00000000..81bf75fd --- /dev/null +++ b/Skins/stellerino 2/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fce4b0953eb3ed945d9865230d1b6d9fc0f60dcec9b5a2fdde5edb2b4c644c +size 810 diff --git a/Skins/stellerino 2/followpoint-14.png b/Skins/stellerino 2/followpoint-14.png new file mode 100644 index 00000000..3e501b3d --- /dev/null +++ b/Skins/stellerino 2/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c044430e2ca745779365146219f6202f15a191fd25911c5f30bc4575e6006935 +size 870 diff --git a/Skins/stellerino 2/followpoint-15.png b/Skins/stellerino 2/followpoint-15.png new file mode 100644 index 00000000..a451db12 --- /dev/null +++ b/Skins/stellerino 2/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8e0dc5e34543dac96cfa74555a02e5a48ec86b4415495b9b057e81a4a4fd13 +size 880 diff --git a/Skins/stellerino 2/followpoint-16.png b/Skins/stellerino 2/followpoint-16.png new file mode 100644 index 00000000..ba2fa8b5 --- /dev/null +++ b/Skins/stellerino 2/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c83580705af5895f6ea058f97da4ec27bf0ae1fa7746fcb56e7ca535972a81c +size 870 diff --git a/Skins/stellerino 2/followpoint-17.png b/Skins/stellerino 2/followpoint-17.png new file mode 100644 index 00000000..bcb91d08 --- /dev/null +++ b/Skins/stellerino 2/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9ffa4ca29aa9d5aa62a5d0f3b39c7cfd1cddc93bf8f6d674cd75659314a178 +size 864 diff --git a/Skins/stellerino 2/followpoint-18.png b/Skins/stellerino 2/followpoint-18.png new file mode 100644 index 00000000..dc3789ee --- /dev/null +++ b/Skins/stellerino 2/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd4b37f7c3c050828d664958efe77fb8e9e159bf671ff2ff48a23a46b97207a +size 811 diff --git a/Skins/stellerino 2/followpoint-19.png b/Skins/stellerino 2/followpoint-19.png new file mode 100644 index 00000000..94cdc4b5 --- /dev/null +++ b/Skins/stellerino 2/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e934f4c5fd1d50b16880f23c922043970997c52a9f2a6e5fdce6b5acf053a2e +size 736 diff --git a/Skins/stellerino 2/followpoint-2.png b/Skins/stellerino 2/followpoint-2.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/followpoint-20.png b/Skins/stellerino 2/followpoint-20.png new file mode 100644 index 00000000..af387cc3 --- /dev/null +++ b/Skins/stellerino 2/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6026227ee7e264b960034e5b039c7db541fe6c614e25bb182d643c0671066b +size 668 diff --git a/Skins/stellerino 2/followpoint-21.png b/Skins/stellerino 2/followpoint-21.png new file mode 100644 index 00000000..d13d4748 --- /dev/null +++ b/Skins/stellerino 2/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387bba5374acc19caab6aca66f5c44990085f6d75ba6263630abf81ccf44c127 +size 589 diff --git a/Skins/stellerino 2/followpoint-22.png b/Skins/stellerino 2/followpoint-22.png new file mode 100644 index 00000000..58869a63 --- /dev/null +++ b/Skins/stellerino 2/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa83d96d4f300d5bd505fed5fc94cadbd2c6cc9f040a08712795df3afeae969 +size 444 diff --git a/Skins/stellerino 2/followpoint-23.png b/Skins/stellerino 2/followpoint-23.png new file mode 100644 index 00000000..cc9e4891 --- /dev/null +++ b/Skins/stellerino 2/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39c82d89262ba951f0c449498220e17bac6521148db1397544ee55293e9d6c6 +size 98 diff --git a/Skins/stellerino 2/followpoint-3.png b/Skins/stellerino 2/followpoint-3.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/followpoint-4.png b/Skins/stellerino 2/followpoint-4.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino 2/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino 2/followpoint-5.png b/Skins/stellerino 2/followpoint-5.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino 2/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino 2/followpoint-6.png b/Skins/stellerino 2/followpoint-6.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino 2/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino 2/followpoint-7.png b/Skins/stellerino 2/followpoint-7.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino 2/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino 2/followpoint-8.png b/Skins/stellerino 2/followpoint-8.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino 2/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino 2/followpoint-9.png b/Skins/stellerino 2/followpoint-9.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino 2/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino 2/followpoint.png b/Skins/stellerino 2/followpoint.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/go.png b/Skins/stellerino 2/go.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/hit0-0.png b/Skins/stellerino 2/hit0-0.png new file mode 100644 index 00000000..deafa095 --- /dev/null +++ b/Skins/stellerino 2/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e52619d7b0e7c033a19bba4274cb16bbc58682ee7ee5e80e653e6392bd02f96 +size 2253 diff --git a/Skins/stellerino 2/hit0.png b/Skins/stellerino 2/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/stellerino 2/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/stellerino 2/hit100-0.png b/Skins/stellerino 2/hit100-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/stellerino 2/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/stellerino 2/hit100.png b/Skins/stellerino 2/hit100.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/stellerino 2/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/stellerino 2/hit100k-0.png b/Skins/stellerino 2/hit100k-0.png new file mode 100644 index 00000000..8e52e9ad --- /dev/null +++ b/Skins/stellerino 2/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624369e0f1b7f2f31df12dbea1ad892476224ebaf81a861afc48ac279558670 +size 1962 diff --git a/Skins/stellerino 2/hit100k.png b/Skins/stellerino 2/hit100k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/stellerino 2/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/stellerino 2/hit300.png b/Skins/stellerino 2/hit300.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/stellerino 2/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/stellerino 2/hit300g.png b/Skins/stellerino 2/hit300g.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/stellerino 2/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/stellerino 2/hit300k.png b/Skins/stellerino 2/hit300k.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/stellerino 2/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/stellerino 2/hit50-0.png b/Skins/stellerino 2/hit50-0.png new file mode 100644 index 00000000..378cdf1e --- /dev/null +++ b/Skins/stellerino 2/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1317680bf0c857731dbc67d8689fb11a031033ec4527ff1b25023e0ed4361 +size 1956 diff --git a/Skins/stellerino 2/hit50.png b/Skins/stellerino 2/hit50.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/stellerino 2/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/stellerino 2/hitcircle.png b/Skins/stellerino 2/hitcircle.png new file mode 100644 index 00000000..51681248 --- /dev/null +++ b/Skins/stellerino 2/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19fa85d27440b7e1bfe1056707e54e6514976aa1f57847f8c799c4ae11155d35 +size 2770 diff --git a/Skins/stellerino 2/hitcircleoverlay.png b/Skins/stellerino 2/hitcircleoverlay.png new file mode 100644 index 00000000..adcae602 --- /dev/null +++ b/Skins/stellerino 2/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e878240f692f105fd5894f377bb0cc3127235b765d8c8a51e6cba201e3096ce +size 2113 diff --git a/Skins/stellerino 2/hitcircleoverlay@2x.png b/Skins/stellerino 2/hitcircleoverlay@2x.png new file mode 100644 index 00000000..e927b0a1 --- /dev/null +++ b/Skins/stellerino 2/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393d4e8c950b6794a4d47ba0b6f032822ac1fb6b5adec2dc6dd6c3f331d10930 +size 9281 diff --git a/Skins/stellerino 2/hitcircleoverlay@2xaa.png b/Skins/stellerino 2/hitcircleoverlay@2xaa.png new file mode 100644 index 00000000..e927b0a1 --- /dev/null +++ b/Skins/stellerino 2/hitcircleoverlay@2xaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393d4e8c950b6794a4d47ba0b6f032822ac1fb6b5adec2dc6dd6c3f331d10930 +size 9281 diff --git a/Skins/stellerino 2/inputoverlay-background.png b/Skins/stellerino 2/inputoverlay-background.png new file mode 100644 index 00000000..6d1a45ba --- /dev/null +++ b/Skins/stellerino 2/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300a14071fabb31c1345d0852d1c7c1b85f52821358183e365c64c905eb651a2 +size 1943 diff --git a/Skins/stellerino 2/inputoverlay-key.png b/Skins/stellerino 2/inputoverlay-key.png new file mode 100644 index 00000000..35c07d12 --- /dev/null +++ b/Skins/stellerino 2/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f9387975dd973e0112d6c0b92e1709a39192d149cd9cc7463a8f2cbc49da7d +size 146 diff --git a/Skins/stellerino 2/inputoverlay-key@2x.png b/Skins/stellerino 2/inputoverlay-key@2x.png new file mode 100644 index 00000000..d3d99643 --- /dev/null +++ b/Skins/stellerino 2/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48853e01edb17a4eeb1a3c2a009aa8935465f77f5ecc87463bb6b3f50709e4a +size 201 diff --git a/Skins/stellerino 2/menu-back.png b/Skins/stellerino 2/menu-back.png new file mode 100644 index 00000000..789d87d4 --- /dev/null +++ b/Skins/stellerino 2/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e81100f26a037617533fcadf4e41cd298712a4aacd620a2a0ecdfdf7524980 +size 113 diff --git a/Skins/stellerino 2/menu-background.jpg b/Skins/stellerino 2/menu-background.jpg new file mode 100644 index 00000000..e599a6dc --- /dev/null +++ b/Skins/stellerino 2/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b08d0dd03574254801513676060872d524f431536c5ef2005e1e4c6e91bc99 +size 296038 diff --git a/Skins/stellerino 2/menu-button-background.png b/Skins/stellerino 2/menu-button-background.png new file mode 100644 index 00000000..f35de60f --- /dev/null +++ b/Skins/stellerino 2/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03da62a58b5541822a8cc7a63e08c6a17ad596d1a2a214dabf404260a2a2d9bc +size 13892 diff --git a/Skins/stellerino 2/menu-snow.png b/Skins/stellerino 2/menu-snow.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/mode-osu-small.png b/Skins/stellerino 2/mode-osu-small.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/mode-osu-small@2x.png b/Skins/stellerino 2/mode-osu-small@2x.png new file mode 100644 index 00000000..afcab4d5 --- /dev/null +++ b/Skins/stellerino 2/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24deb6fa7a3ade007e617f2e83f045d920dcfdb674a97bc18b17f4602c90b4a +size 51613 diff --git a/Skins/stellerino 2/mode-taiko-med.png b/Skins/stellerino 2/mode-taiko-med.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/stellerino 2/mode-taiko-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/stellerino 2/mode-taiko-small.png b/Skins/stellerino 2/mode-taiko-small.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/mode-taiko-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/mode-taiko.png b/Skins/stellerino 2/mode-taiko.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/stellerino 2/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/stellerino 2/nightcore-clap.mp3 b/Skins/stellerino 2/nightcore-clap.mp3 new file mode 100644 index 00000000..5f497ead --- /dev/null +++ b/Skins/stellerino 2/nightcore-clap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743371d816c42bec9c520bd2bf6386cad03a26934f069a1eb940880bb191301f +size 564 diff --git a/Skins/stellerino 2/nightcore-finish.mp3 b/Skins/stellerino 2/nightcore-finish.mp3 new file mode 100644 index 00000000..5f497ead --- /dev/null +++ b/Skins/stellerino 2/nightcore-finish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743371d816c42bec9c520bd2bf6386cad03a26934f069a1eb940880bb191301f +size 564 diff --git a/Skins/stellerino 2/nightcore-hat.mp3 b/Skins/stellerino 2/nightcore-hat.mp3 new file mode 100644 index 00000000..5f497ead --- /dev/null +++ b/Skins/stellerino 2/nightcore-hat.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743371d816c42bec9c520bd2bf6386cad03a26934f069a1eb940880bb191301f +size 564 diff --git a/Skins/stellerino 2/nightcore-kick.mp3 b/Skins/stellerino 2/nightcore-kick.mp3 new file mode 100644 index 00000000..5f497ead --- /dev/null +++ b/Skins/stellerino 2/nightcore-kick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743371d816c42bec9c520bd2bf6386cad03a26934f069a1eb940880bb191301f +size 564 diff --git a/Skins/stellerino 2/normal-hitfinish.mp3 b/Skins/stellerino 2/normal-hitfinish.mp3 new file mode 100644 index 00000000..0d6a3d24 --- /dev/null +++ b/Skins/stellerino 2/normal-hitfinish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95395d167fbbc8efcf019ab2c6e1df7afe07296ddee3887fcb1592841fca1f1e +size 4323 diff --git a/Skins/stellerino 2/normal-hitnormal.mp3 b/Skins/stellerino 2/normal-hitnormal.mp3 new file mode 100644 index 00000000..c72e5b9a --- /dev/null +++ b/Skins/stellerino 2/normal-hitnormal.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df34351f163491466302b19159bb7665f9eca9cc3bd8d2be75dc5ef01a0b93d8 +size 4583 diff --git a/Skins/stellerino 2/normal-hitwhistle.mp3 b/Skins/stellerino 2/normal-hitwhistle.mp3 new file mode 100644 index 00000000..6bf2b6ce --- /dev/null +++ b/Skins/stellerino 2/normal-hitwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa9c8282ba7ffcc8bd5ba79b764755d9b8d8a1740a4b5c7ec968160b1f4f99c +size 2828 diff --git a/Skins/stellerino 2/normal-slidertick.mp3 b/Skins/stellerino 2/normal-slidertick.mp3 new file mode 100644 index 00000000..1c873839 --- /dev/null +++ b/Skins/stellerino 2/normal-slidertick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce83fc96cd09300385f3b8926568b3a01a79edbda21f0f770da30b63c928285 +size 3878 diff --git a/Skins/stellerino 2/pause-back@2x.png b/Skins/stellerino 2/pause-back@2x.png new file mode 100644 index 00000000..0c6e1e3b --- /dev/null +++ b/Skins/stellerino 2/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbdb6257dae36dd637434c7f05e94608b5eca0188cd4922889fee023a323bf17 +size 6467 diff --git a/Skins/stellerino 2/pause-continue@2x.png b/Skins/stellerino 2/pause-continue@2x.png new file mode 100644 index 00000000..6db80ff7 --- /dev/null +++ b/Skins/stellerino 2/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab08a240ddd47dd471e7bf89f7510e73caf8498a7fa7f1359683f16d29079da +size 10340 diff --git a/Skins/stellerino 2/pause-replay.png b/Skins/stellerino 2/pause-replay.png new file mode 100644 index 00000000..d853dd11 --- /dev/null +++ b/Skins/stellerino 2/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ad6808586ad1d2cf7cf01ce53238f73bc1d2634ddb81fe440b429bd8f8cde3 +size 11804 diff --git a/Skins/stellerino 2/pause-retry@2x.png b/Skins/stellerino 2/pause-retry@2x.png new file mode 100644 index 00000000..c9850606 --- /dev/null +++ b/Skins/stellerino 2/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dd485daebb2fde40a162a6799f828f0dd8753e9bfd20ee63c5faff6fd842566 +size 7008 diff --git a/Skins/stellerino 2/play-skip.png b/Skins/stellerino 2/play-skip.png new file mode 100644 index 00000000..219a6127 --- /dev/null +++ b/Skins/stellerino 2/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:569d5cffc02d0aff54f03d99e9bfb3f8acb4884c2f071979a7f7b27799ea5272 +size 10429 diff --git a/Skins/stellerino 2/play-unranked.png b/Skins/stellerino 2/play-unranked.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/play-warningarrow.png b/Skins/stellerino 2/play-warningarrow.png new file mode 100644 index 00000000..df4f7cf0 --- /dev/null +++ b/Skins/stellerino 2/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94f9bd533855d97da46773ad9b91cfddbec896514cdd4df27c2cd16fda115f5 +size 648 diff --git a/Skins/stellerino 2/ranking-A-small.png b/Skins/stellerino 2/ranking-A-small.png new file mode 100644 index 00000000..a005b24a --- /dev/null +++ b/Skins/stellerino 2/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcae39324135f81f5695a90a72146c4a5201bca793903838e514450e1d18741 +size 1645 diff --git a/Skins/stellerino 2/ranking-A.png b/Skins/stellerino 2/ranking-A.png new file mode 100644 index 00000000..83e70043 --- /dev/null +++ b/Skins/stellerino 2/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de0d108a8370a2d949f7e0b8c1851c7178e5f36aaee1009064ab74e04aab8b8 +size 1108 diff --git a/Skins/stellerino 2/ranking-B-small.png b/Skins/stellerino 2/ranking-B-small.png new file mode 100644 index 00000000..b00b645b --- /dev/null +++ b/Skins/stellerino 2/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb088227a5e686219a5c4a03da8d5d8b73bb047bb080ab47c584e0a28160148 +size 1673 diff --git a/Skins/stellerino 2/ranking-C-small.png b/Skins/stellerino 2/ranking-C-small.png new file mode 100644 index 00000000..613f849c --- /dev/null +++ b/Skins/stellerino 2/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473cdc9b1175ce4817d4ee5105073f2e9361fa0ced9bb4852e5e4baddb250776 +size 1809 diff --git a/Skins/stellerino 2/ranking-D-small.png b/Skins/stellerino 2/ranking-D-small.png new file mode 100644 index 00000000..88eda505 --- /dev/null +++ b/Skins/stellerino 2/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d302aab3e65849dff022d507ee32db6c11a4277a7ba31cd446ef97075ac13c3e +size 1781 diff --git a/Skins/stellerino 2/ranking-S-small.png b/Skins/stellerino 2/ranking-S-small.png new file mode 100644 index 00000000..16dd8d03 --- /dev/null +++ b/Skins/stellerino 2/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff7d348183899fb02dd1395e4eaa0d44e1799a38e95073c9935773f1ea6d32a4 +size 1816 diff --git a/Skins/stellerino 2/ranking-SH-small.png b/Skins/stellerino 2/ranking-SH-small.png new file mode 100644 index 00000000..69b9e9b4 --- /dev/null +++ b/Skins/stellerino 2/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2debc0f40b0efdbe50631439d61d5bb9f3d1ca74bbe36e9def56efc24d918dd2 +size 1735 diff --git a/Skins/stellerino 2/ranking-SH.PNG b/Skins/stellerino 2/ranking-SH.PNG new file mode 100644 index 00000000..04593acb --- /dev/null +++ b/Skins/stellerino 2/ranking-SH.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e145c88c81556f7d5ff3ad5a363265d8699a8dfc1482524c32516aa3f9dde60a +size 3401 diff --git a/Skins/stellerino 2/ranking-X-small.png b/Skins/stellerino 2/ranking-X-small.png new file mode 100644 index 00000000..c1bb2970 --- /dev/null +++ b/Skins/stellerino 2/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7472c345a898f9e569456ee1cc4b8dcfc1c7869586b5f2acea9fbea993d5fc68 +size 1987 diff --git a/Skins/stellerino 2/ranking-XH-small.png b/Skins/stellerino 2/ranking-XH-small.png new file mode 100644 index 00000000..d5ef1ea9 --- /dev/null +++ b/Skins/stellerino 2/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aff44ba5f4ff1cd5735bc11ff92ce844deeaa0002ff4ec04a9909511c75cf8e +size 1933 diff --git a/Skins/stellerino 2/ranking-accuracy.png b/Skins/stellerino 2/ranking-accuracy.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/ranking-b.png b/Skins/stellerino 2/ranking-b.png new file mode 100644 index 00000000..2e741fbe --- /dev/null +++ b/Skins/stellerino 2/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8936e90f0b30beaa2fbb5ab961d0d6f91b6e76f867bf97d32a287546025aa5 +size 940 diff --git a/Skins/stellerino 2/ranking-c.png b/Skins/stellerino 2/ranking-c.png new file mode 100644 index 00000000..ddca672c --- /dev/null +++ b/Skins/stellerino 2/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcdeb33d787c4f6ec07812692e4b6fe333bd9d5e1177dfc46fbb9b72fb9bb7f8 +size 1216 diff --git a/Skins/stellerino 2/ranking-d.png b/Skins/stellerino 2/ranking-d.png new file mode 100644 index 00000000..28494664 --- /dev/null +++ b/Skins/stellerino 2/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6999fc8923b7c8dfb5f2d98be2dda561f507e69414c46449f54a827303a57fb +size 819 diff --git a/Skins/stellerino 2/ranking-graph.png b/Skins/stellerino 2/ranking-graph.png new file mode 100644 index 00000000..9b3e8f6e --- /dev/null +++ b/Skins/stellerino 2/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae059a26e499a357ee99658c75d30a830261ab8c8f4f91b3599b10d918dae90f +size 113 diff --git a/Skins/stellerino 2/ranking-maxcombo.png b/Skins/stellerino 2/ranking-maxcombo.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/ranking-panel@2x.png b/Skins/stellerino 2/ranking-panel@2x.png new file mode 100644 index 00000000..dae7f16d --- /dev/null +++ b/Skins/stellerino 2/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f973eb5e00717b1af49855913a23bc56cf363ad0b87a360168b41ba9aab45e +size 578021 diff --git a/Skins/stellerino 2/ranking-perfect.png b/Skins/stellerino 2/ranking-perfect.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/ranking-s.png b/Skins/stellerino 2/ranking-s.png new file mode 100644 index 00000000..50616892 --- /dev/null +++ b/Skins/stellerino 2/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ae0eef261c9e450e228488402b0e34707171034b36cbe3c16e7175836bcc00 +size 1323 diff --git a/Skins/stellerino 2/ranking-winner.png b/Skins/stellerino 2/ranking-winner.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/ranking-x.png b/Skins/stellerino 2/ranking-x.png new file mode 100644 index 00000000..9c6cc815 --- /dev/null +++ b/Skins/stellerino 2/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d168ff923a25fa98886917b58270b50fa28254d10884e1c2d651a8378d55b2cc +size 1104 diff --git a/Skins/stellerino 2/ranking-xh.png b/Skins/stellerino 2/ranking-xh.png new file mode 100644 index 00000000..9c6cc815 --- /dev/null +++ b/Skins/stellerino 2/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d168ff923a25fa98886917b58270b50fa28254d10884e1c2d651a8378d55b2cc +size 1104 diff --git a/Skins/stellerino 2/ready.png b/Skins/stellerino 2/ready.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/reversearrow@2x.png b/Skins/stellerino 2/reversearrow@2x.png new file mode 100644 index 00000000..341654f7 --- /dev/null +++ b/Skins/stellerino 2/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a70cde42e617c493aa91cf9237d97dbf3a77d1780fa7de740ec54d838078119 +size 18157 diff --git a/Skins/stellerino 2/score-0@2x.png b/Skins/stellerino 2/score-0@2x.png new file mode 100644 index 00000000..35be59d5 --- /dev/null +++ b/Skins/stellerino 2/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70251d56f8ab95fac0832bd2a83faf3470591f316a8d7ca995fd97eeafda5e2 +size 2631 diff --git a/Skins/stellerino 2/score-1@2x.png b/Skins/stellerino 2/score-1@2x.png new file mode 100644 index 00000000..11cb1723 --- /dev/null +++ b/Skins/stellerino 2/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec7a0e91f414743ac026cc262d9f6b3f5bef7e78e0c9dec1aaea5f997f46fcc +size 1993 diff --git a/Skins/stellerino 2/score-2@2x.png b/Skins/stellerino 2/score-2@2x.png new file mode 100644 index 00000000..c1f2bb63 --- /dev/null +++ b/Skins/stellerino 2/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9100d42e0ae2af9b57ad5071b7c38573419028568afddee7f8940e3c3362aa +size 2404 diff --git a/Skins/stellerino 2/score-3@2x.png b/Skins/stellerino 2/score-3@2x.png new file mode 100644 index 00000000..0af0ea5a --- /dev/null +++ b/Skins/stellerino 2/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c696fa6fe60798fd5f958c722d72c35c4461f4241ba7cf5f669b75d74044baae +size 2356 diff --git a/Skins/stellerino 2/score-4@2x.png b/Skins/stellerino 2/score-4@2x.png new file mode 100644 index 00000000..25184dc7 --- /dev/null +++ b/Skins/stellerino 2/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ec88b59e4c820126816b491c33df6a6821cd1ff95a5172d341454c7b535f73 +size 2323 diff --git a/Skins/stellerino 2/score-5@2x.png b/Skins/stellerino 2/score-5@2x.png new file mode 100644 index 00000000..1e1c75e1 --- /dev/null +++ b/Skins/stellerino 2/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334b49368a37bf886ff1b3cf1bf115c44996a11a0f977986047d6f4c0041eacb +size 2331 diff --git a/Skins/stellerino 2/score-6@2x.png b/Skins/stellerino 2/score-6@2x.png new file mode 100644 index 00000000..4727a526 --- /dev/null +++ b/Skins/stellerino 2/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e06c2eae9e8099a5728185ec2e8935a5553cb8a5d715a2da6df4f508f9c378d +size 2499 diff --git a/Skins/stellerino 2/score-7@2x.png b/Skins/stellerino 2/score-7@2x.png new file mode 100644 index 00000000..fb06b670 --- /dev/null +++ b/Skins/stellerino 2/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e257bdcb27e5301cd57bafe61832dcb71495d5b6f20b7419e5d506ef1e082e +size 1969 diff --git a/Skins/stellerino 2/score-8@2x.png b/Skins/stellerino 2/score-8@2x.png new file mode 100644 index 00000000..ce3a6242 --- /dev/null +++ b/Skins/stellerino 2/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379ff61da1468cff2feb184c616a4ab7541c0965a8e5f453162b96e6f67f3fe7 +size 2598 diff --git a/Skins/stellerino 2/score-9@2x.png b/Skins/stellerino 2/score-9@2x.png new file mode 100644 index 00000000..bcd51245 --- /dev/null +++ b/Skins/stellerino 2/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd20bfb2e12d8875477a8cb2a99c8842852280680ddb60d0d8b3b1231b789d8e +size 2506 diff --git a/Skins/stellerino 2/score-comma@2x.png b/Skins/stellerino 2/score-comma@2x.png new file mode 100644 index 00000000..56336099 --- /dev/null +++ b/Skins/stellerino 2/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e5d209f43186fea4467d8649b270f658e155f2f0710052e0c88dda2e221ab8 +size 623 diff --git a/Skins/stellerino 2/score-dot@2x.png b/Skins/stellerino 2/score-dot@2x.png new file mode 100644 index 00000000..d2ac189b --- /dev/null +++ b/Skins/stellerino 2/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd263a5880c070ab50d4b31ba3e83d7b1e0cf481b51887d41fa6bbe8ed69763a +size 570 diff --git a/Skins/stellerino 2/score-percent.png b/Skins/stellerino 2/score-percent.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/score-percent@2xx.png b/Skins/stellerino 2/score-percent@2xx.png new file mode 100644 index 00000000..b979620e --- /dev/null +++ b/Skins/stellerino 2/score-percent@2xx.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08a877e31514855a698bd0ace2a1d2e0dc19aaf65bdd0ab78d20d02030a30ed +size 2502 diff --git a/Skins/stellerino 2/score-x.png b/Skins/stellerino 2/score-x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/score-x@2xx.png b/Skins/stellerino 2/score-x@2xx.png new file mode 100644 index 00000000..7653356d --- /dev/null +++ b/Skins/stellerino 2/score-x@2xx.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82e0e834b103c60e9a4a6441d8e155955a55d31ff1234b13a3dfa14c66b5fdd0 +size 2005 diff --git a/Skins/stellerino 2/scorebar-bg .png b/Skins/stellerino 2/scorebar-bg .png new file mode 100644 index 00000000..678fb0a1 --- /dev/null +++ b/Skins/stellerino 2/scorebar-bg .png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff313708c1ae1ca392bf995e7f89d489636f6e2c106db3bb80bfd51904077a9 +size 148 diff --git a/Skins/stellerino 2/scorebar-bg@2x.png b/Skins/stellerino 2/scorebar-bg@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/scorebar-bg@2xjkhjk.png b/Skins/stellerino 2/scorebar-bg@2xjkhjk.png new file mode 100644 index 00000000..f44323ae --- /dev/null +++ b/Skins/stellerino 2/scorebar-bg@2xjkhjk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7cbdb2e13725501073a15dbe83799f1c20a3ca8520e1626c5069bd526e6f0b +size 388326 diff --git a/Skins/stellerino 2/scorebar-bgjkhjk.png b/Skins/stellerino 2/scorebar-bgjkhjk.png new file mode 100644 index 00000000..97b15073 --- /dev/null +++ b/Skins/stellerino 2/scorebar-bgjkhjk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54a601db11d72d7866c8711c20a2a96397bdac60c33c44d877abb042a701251 +size 168901 diff --git a/Skins/stellerino 2/scorebar-cologr-0.png b/Skins/stellerino 2/scorebar-cologr-0.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/scorebar-cologr-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/scorebar-colour@2x.png b/Skins/stellerino 2/scorebar-colour@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/selection-mod-autoplay.png b/Skins/stellerino 2/selection-mod-autoplay.png new file mode 100644 index 00000000..86bb9e50 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b900e6201538c11f1394c9462f5c7b53e14e721b09c9ffec0be778673f4b28f1 +size 2518 diff --git a/Skins/stellerino 2/selection-mod-cinema.png b/Skins/stellerino 2/selection-mod-cinema.png new file mode 100644 index 00000000..aed5adec --- /dev/null +++ b/Skins/stellerino 2/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa47dc66ac55686411888d33576b2a9aa71f05158587221d926d8a76a862b5a +size 3798 diff --git a/Skins/stellerino 2/selection-mod-doubletime.png b/Skins/stellerino 2/selection-mod-doubletime.png new file mode 100644 index 00000000..74d22086 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9c8c00ceab5d5d0e31802d82784fea46e7665d91aecf309b6d931263e4922c +size 3331 diff --git a/Skins/stellerino 2/selection-mod-easy.png b/Skins/stellerino 2/selection-mod-easy.png new file mode 100644 index 00000000..661166a2 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3ad4e3cca92db7e47d998d859fee01bd4de953aa2787d3e8dc8345a074ccd5 +size 2440 diff --git a/Skins/stellerino 2/selection-mod-flashlight.png b/Skins/stellerino 2/selection-mod-flashlight.png new file mode 100644 index 00000000..42438c1f --- /dev/null +++ b/Skins/stellerino 2/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4df2cb26274819951d0f5da34214f5209e705396fbf4b59700e71d4294ce17 +size 3098 diff --git a/Skins/stellerino 2/selection-mod-halftime.png b/Skins/stellerino 2/selection-mod-halftime.png new file mode 100644 index 00000000..13827f72 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef5c58909a52532fcb0ac34fa976fcb1a56d09c1a6b6f9794963baebf683214 +size 2591 diff --git a/Skins/stellerino 2/selection-mod-hardrock.png b/Skins/stellerino 2/selection-mod-hardrock.png new file mode 100644 index 00000000..cef3bf29 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa57e1d89c10fc66fb542e035e95043001c3e658b86bff2ebe69a84576d1197f +size 3220 diff --git a/Skins/stellerino 2/selection-mod-hidden.png b/Skins/stellerino 2/selection-mod-hidden.png new file mode 100644 index 00000000..fbc01f3e --- /dev/null +++ b/Skins/stellerino 2/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752d7a278f6b81ec2fc813d02788ea0be237d5b4b59ca241b132a372cd52faf3 +size 4016 diff --git a/Skins/stellerino 2/selection-mod-nightcore.png b/Skins/stellerino 2/selection-mod-nightcore.png new file mode 100644 index 00000000..c3984f14 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c556102a532a53f73f82e64825ec02db63ffd919719356846f1f727e2dd6a7db +size 2773 diff --git a/Skins/stellerino 2/selection-mod-nofail.png b/Skins/stellerino 2/selection-mod-nofail.png new file mode 100644 index 00000000..bb76db5b --- /dev/null +++ b/Skins/stellerino 2/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e72699e9d48e5e3689f6622dfa55d94ac4e70773b03a332b849c5dde80b4803 +size 3730 diff --git a/Skins/stellerino 2/selection-mod-perfect.png b/Skins/stellerino 2/selection-mod-perfect.png new file mode 100644 index 00000000..95e17f27 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1e768f1bf642479e9b670c577bed2838b5b2c592cb563be9f620f86d5bdf8e +size 2934 diff --git a/Skins/stellerino 2/selection-mod-relax.png b/Skins/stellerino 2/selection-mod-relax.png new file mode 100644 index 00000000..ff1e53d5 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892cef8ac4f08cf090b301d14de124cb99811347e9bae7a0ef797ae2bdd69e57 +size 2397 diff --git a/Skins/stellerino 2/selection-mod-relax2.png b/Skins/stellerino 2/selection-mod-relax2.png new file mode 100644 index 00000000..94f44f84 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fb7bdf64c4918640cedb67fe93669e1f8d01d0fd95383db439d8dce3172a6c +size 2791 diff --git a/Skins/stellerino 2/selection-mod-scorev2.png b/Skins/stellerino 2/selection-mod-scorev2.png new file mode 100644 index 00000000..5fb7d72e --- /dev/null +++ b/Skins/stellerino 2/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78da2652d31fa695333632fd2152c5d4199b7656d8ceed575c59e076bf4aec0 +size 1565 diff --git a/Skins/stellerino 2/selection-mod-spunout.png b/Skins/stellerino 2/selection-mod-spunout.png new file mode 100644 index 00000000..e9e448f3 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53161f9b4433772e9800ee3637e74dc2d359e4264cdfadc25c1f9b02b5c6dad +size 3056 diff --git a/Skins/stellerino 2/selection-mod-suddendeath.png b/Skins/stellerino 2/selection-mod-suddendeath.png new file mode 100644 index 00000000..a8565384 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8509e3e45e81ccaed5caaed52a7a38906403899940e8aed7097a17277bc62301 +size 3391 diff --git a/Skins/stellerino 2/selection-mod-target.png b/Skins/stellerino 2/selection-mod-target.png new file mode 100644 index 00000000..699a6eb3 --- /dev/null +++ b/Skins/stellerino 2/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46994709cb41c22b7b2d7deeea0e79395b6d211546a81e7c1d76f0e2b576eae +size 3977 diff --git a/Skins/stellerino 2/selection-mode-over.png b/Skins/stellerino 2/selection-mode-over.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/selection-mode.png b/Skins/stellerino 2/selection-mode.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/stellerino 2/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/stellerino 2/selection-mods-over.png b/Skins/stellerino 2/selection-mods-over.png new file mode 100644 index 00000000..86a23978 --- /dev/null +++ b/Skins/stellerino 2/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a48e9284425351164421779bbb644b98975b019ea8557b01607ad6d0f5e5900 +size 111 diff --git a/Skins/stellerino 2/selection-mods.png b/Skins/stellerino 2/selection-mods.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/selection-options-over.png b/Skins/stellerino 2/selection-options-over.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/selection-options.png b/Skins/stellerino 2/selection-options.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/selection-random-over.png b/Skins/stellerino 2/selection-random-over.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/selection-random.png b/Skins/stellerino 2/selection-random.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/selection-tab.png b/Skins/stellerino 2/selection-tab.png new file mode 100644 index 00000000..40b18722 --- /dev/null +++ b/Skins/stellerino 2/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1ad4fcf7de4a4d07c8a71c13b6a10da0af704273c3d8c57d2ad7d1d001c26f +size 102 diff --git a/Skins/stellerino 2/skin.ini b/Skins/stellerino 2/skin.ini new file mode 100644 index 00000000..98a2e337 --- /dev/null +++ b/Skins/stellerino 2/skin.ini @@ -0,0 +1,25 @@ +// skin.ini generated by osu! skin mixer v2.9.0 + +[General] +Name: stellerino no instafade hit numbers +Author: stellasu +Version: 2.2 +HitCircleOverlayAboveNumber: 1 +SliderBallFlip: 0 +CursorCentre: 1 +CursorExpand: 1 +CursorRotate: 0 + +[Colours] +SliderBorder: 80,80,80 +SliderTrackOverride: 0,0,0 +InputOverlayText: 255,255,255 +Combo1: 169,254,246 +Combo2: 221,237,232 +Combo3: 144,206,225 + +[Fonts] +HitCirclePrefix: default +ScorePrefix: score +ScoreOverlap: 3 +HitCircleOverlap: 10 diff --git a/Skins/stellerino 2/sliderb@2x.png b/Skins/stellerino 2/sliderb@2x.png new file mode 100644 index 00000000..e821f49e --- /dev/null +++ b/Skins/stellerino 2/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40fd6d130b2d2c27859e06ab7be428c451253eb54c8ed7bd6a88522ee5784bd6 +size 3201 diff --git a/Skins/stellerino 2/sliderendcircle.png b/Skins/stellerino 2/sliderendcircle.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/stellerino 2/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/stellerino 2/sliderfollowcircle.png b/Skins/stellerino 2/sliderfollowcircle.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/sliderfollowcircle@2x.png b/Skins/stellerino 2/sliderfollowcircle@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/sliderpoint10.png b/Skins/stellerino 2/sliderpoint10.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/sliderpoint30.png b/Skins/stellerino 2/sliderpoint30.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/sliderscorepoint.png b/Skins/stellerino 2/sliderscorepoint.png new file mode 100644 index 00000000..7f137ffa --- /dev/null +++ b/Skins/stellerino 2/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bbc1d6de2c581c84274b5157b585abca51b23b8a11be66e49b7e09557a1914 +size 3547 diff --git a/Skins/stellerino 2/soft-hitclap.mp3 b/Skins/stellerino 2/soft-hitclap.mp3 new file mode 100644 index 00000000..43920c1c --- /dev/null +++ b/Skins/stellerino 2/soft-hitclap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb2c93d169fda3649b498509ab15ac3a54a7d6c2c06672230413fc07b7fc6c0 +size 1448 diff --git a/Skins/stellerino 2/soft-hitfinish.mp3 b/Skins/stellerino 2/soft-hitfinish.mp3 new file mode 100644 index 00000000..708cc818 --- /dev/null +++ b/Skins/stellerino 2/soft-hitfinish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9745187e9babf483bd2464a4634d70393c90a516399939b3ad5e8eb1ca543741 +size 3801 diff --git a/Skins/stellerino 2/soft-hitnormal.mp3 b/Skins/stellerino 2/soft-hitnormal.mp3 new file mode 100644 index 00000000..c72e5b9a --- /dev/null +++ b/Skins/stellerino 2/soft-hitnormal.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df34351f163491466302b19159bb7665f9eca9cc3bd8d2be75dc5ef01a0b93d8 +size 4583 diff --git a/Skins/stellerino 2/soft-hitwhistle.mp3 b/Skins/stellerino 2/soft-hitwhistle.mp3 new file mode 100644 index 00000000..6bf2b6ce --- /dev/null +++ b/Skins/stellerino 2/soft-hitwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa9c8282ba7ffcc8bd5ba79b764755d9b8d8a1740a4b5c7ec968160b1f4f99c +size 2828 diff --git a/Skins/stellerino 2/songselect-bottom@2x.png b/Skins/stellerino 2/songselect-bottom@2x.png new file mode 100644 index 00000000..2fc3fb97 --- /dev/null +++ b/Skins/stellerino 2/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788521cd185ed07c260d96d5edb85c0130182077b4e090e86e4ee6305156bb9f +size 4619 diff --git a/Skins/stellerino 2/songselect-top.png b/Skins/stellerino 2/songselect-top.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/songselect-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/songselect-top@2x.png b/Skins/stellerino 2/songselect-top@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/songselect-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-approachcircle.png b/Skins/stellerino 2/spinner-approachcircle.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-background.png b/Skins/stellerino 2/spinner-background.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-bottom.png b/Skins/stellerino 2/spinner-bottom.png new file mode 100644 index 00000000..089af424 --- /dev/null +++ b/Skins/stellerino 2/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c1ba046d6d8afeedec6985c8a3be678fb0aed18af508c0300bc7e9736344ae +size 708 diff --git a/Skins/stellerino 2/spinner-circle.png b/Skins/stellerino 2/spinner-circle.png new file mode 100644 index 00000000..4ae3c7ab --- /dev/null +++ b/Skins/stellerino 2/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c36ad7bb19cec7770628fbd582dadac0f6e6c77356ab8b4ac871b9d553fe93e +size 8816 diff --git a/Skins/stellerino 2/spinner-circle@2x.png b/Skins/stellerino 2/spinner-circle@2x.png new file mode 100644 index 00000000..bd164dbd --- /dev/null +++ b/Skins/stellerino 2/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7f914f881d78d2399a822b43c6dd7c75141537a2efbea8d4b3a58b3c456620 +size 19376 diff --git a/Skins/stellerino 2/spinner-clear.png b/Skins/stellerino 2/spinner-clear.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-glow.png b/Skins/stellerino 2/spinner-glow.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-metre.png b/Skins/stellerino 2/spinner-metre.png new file mode 100644 index 00000000..96d0e81f --- /dev/null +++ b/Skins/stellerino 2/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4afb97f486e3877276916d716dd40c628335df3f8171d36a64e6f5a46b4f384d +size 57511 diff --git a/Skins/stellerino 2/spinner-middle.png b/Skins/stellerino 2/spinner-middle.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-middle2.png b/Skins/stellerino 2/spinner-middle2.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-osu.png b/Skins/stellerino 2/spinner-osu.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-rpm.png b/Skins/stellerino 2/spinner-rpm.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-spin.png b/Skins/stellerino 2/spinner-spin.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/spinner-top.png b/Skins/stellerino 2/spinner-top.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/star.png b/Skins/stellerino 2/star.png new file mode 100644 index 00000000..56a7de50 --- /dev/null +++ b/Skins/stellerino 2/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdf73b58b843255ecb0013df70da0fd9b31061d9849811ccf57b165f9680352 +size 1047 diff --git a/Skins/stellerino 2/star2.png b/Skins/stellerino 2/star2.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/star2@2x.png b/Skins/stellerino 2/star2@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino 2/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino 2/whoosh.mp3 b/Skins/stellerino 2/whoosh.mp3 new file mode 100644 index 00000000..ee8cdf47 --- /dev/null +++ b/Skins/stellerino 2/whoosh.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b67f582b648dbb5eb7d5d8d2ab6ab7d67f3f962387609fcf112c15fa96382e +size 252 diff --git a/Skins/stellerino/Ranking-title.png b/Skins/stellerino/Ranking-title.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/Ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/approachcircle@2x.png b/Skins/stellerino/approachcircle@2x.png new file mode 100644 index 00000000..fd575ae3 --- /dev/null +++ b/Skins/stellerino/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:729fcdebc0b80dc25ebebfaedcc4b8c8b94ec63b73c5326f0353d42a7cf23d8a +size 9854 diff --git a/Skins/stellerino/button-left.png b/Skins/stellerino/button-left.png new file mode 100644 index 00000000..f13ebca5 --- /dev/null +++ b/Skins/stellerino/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1eacfc0e7aba372a544bc469aff762d8ed6e1a17c273e4ef504948c0e76e3c +size 84 diff --git a/Skins/stellerino/button-middle.png b/Skins/stellerino/button-middle.png new file mode 100644 index 00000000..6b9cdb44 --- /dev/null +++ b/Skins/stellerino/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f18cf9a60d6531b7a13347059686b12b143b6024d1690a2406ca2e162e9a4b3 +size 91 diff --git a/Skins/stellerino/button-right.png b/Skins/stellerino/button-right.png new file mode 100644 index 00000000..f13ebca5 --- /dev/null +++ b/Skins/stellerino/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1eacfc0e7aba372a544bc469aff762d8ed6e1a17c273e4ef504948c0e76e3c +size 84 diff --git a/Skins/stellerino/combo-0.png b/Skins/stellerino/combo-0.png new file mode 100644 index 00000000..2553d122 --- /dev/null +++ b/Skins/stellerino/combo-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd39d9b6fb2301f469abbf1284bfecbb4d50c4886f1d8ef8758cff41a3f1bfc +size 1362 diff --git a/Skins/stellerino/combo-1.png b/Skins/stellerino/combo-1.png new file mode 100644 index 00000000..538dc8bb --- /dev/null +++ b/Skins/stellerino/combo-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52df3b8d7d80e2997cd5b77b5eaa849e0a3235fcf7f1113a99794268c39941e9 +size 488 diff --git a/Skins/stellerino/combo-2.png b/Skins/stellerino/combo-2.png new file mode 100644 index 00000000..d746250a --- /dev/null +++ b/Skins/stellerino/combo-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b5617c1f495f34368766e535521450aed769b65c5be09c94ab02c5dfc5724a +size 1091 diff --git a/Skins/stellerino/combo-3.png b/Skins/stellerino/combo-3.png new file mode 100644 index 00000000..6cd6c4cc --- /dev/null +++ b/Skins/stellerino/combo-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68a235c471354bf71915b3992f2666abe0f2be56c0ff8915b3afb03b0d3bc97d +size 1283 diff --git a/Skins/stellerino/combo-4.png b/Skins/stellerino/combo-4.png new file mode 100644 index 00000000..bb45b6dd --- /dev/null +++ b/Skins/stellerino/combo-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a84c61746e743679de91cc0347b03104b64222ec7a7330fd9baa90307e25d7 +size 930 diff --git a/Skins/stellerino/combo-5.png b/Skins/stellerino/combo-5.png new file mode 100644 index 00000000..323f01a3 --- /dev/null +++ b/Skins/stellerino/combo-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea05afcc0b0d6cf747a49dfbf27f62cacdcb9cc93f95f0512bc85c4d44c3886 +size 1209 diff --git a/Skins/stellerino/combo-6.png b/Skins/stellerino/combo-6.png new file mode 100644 index 00000000..5e59d0a5 --- /dev/null +++ b/Skins/stellerino/combo-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e47a405278ea12ebe4f1d6b6be3c4f972f10ff4d853c6196d98f8da3d2cdec8 +size 1417 diff --git a/Skins/stellerino/combo-7.png b/Skins/stellerino/combo-7.png new file mode 100644 index 00000000..0a8d8256 --- /dev/null +++ b/Skins/stellerino/combo-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6454ddf6ffc281461bbba56d6f609659a869ef3bb19c0b41221673ea9f706836 +size 877 diff --git a/Skins/stellerino/combo-8.png b/Skins/stellerino/combo-8.png new file mode 100644 index 00000000..931ab5d4 --- /dev/null +++ b/Skins/stellerino/combo-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71aab9a5acd85670370efbe439408da43a9adab3d3d59cbf60603c1d53f5fb4 +size 1460 diff --git a/Skins/stellerino/combo-9.png b/Skins/stellerino/combo-9.png new file mode 100644 index 00000000..ba0166d5 --- /dev/null +++ b/Skins/stellerino/combo-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb284c4e65df03c8099b992c4393a072c8fa01321568eb466cf2fe0595a09300 +size 1447 diff --git a/Skins/stellerino/combo-x.png b/Skins/stellerino/combo-x.png new file mode 100644 index 00000000..46eac26d --- /dev/null +++ b/Skins/stellerino/combo-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e11eb12b5ed930510e6504e2c99314afed53bfd20f25a83386ae79a0bc70a19 +size 1008 diff --git a/Skins/stellerino/combobreak.mp3 b/Skins/stellerino/combobreak.mp3 new file mode 100644 index 00000000..3fee01b1 --- /dev/null +++ b/Skins/stellerino/combobreak.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c74e428bfe21838cb09557da36c6401e9486cdb418aac1ff1ca6a8e455f5e22 +size 6219 diff --git a/Skins/stellerino/comboburst.png b/Skins/stellerino/comboburst.png new file mode 100644 index 00000000..500b220b --- /dev/null +++ b/Skins/stellerino/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb101ac8f789733d0a60a35a057518e92ded3f12aa8c984b53197ebdb22f203 +size 96 diff --git a/Skins/stellerino/count.mp3 b/Skins/stellerino/count.mp3 new file mode 100644 index 00000000..a06eddb6 --- /dev/null +++ b/Skins/stellerino/count.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8914512de026cea41a2fa5635e216b6f3560d699de2e3d7ac369877c333ebafa +size 3827 diff --git a/Skins/stellerino/count1.png b/Skins/stellerino/count1.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/count2.png b/Skins/stellerino/count2.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/count3.png b/Skins/stellerino/count3.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/cursor.png b/Skins/stellerino/cursor.png new file mode 100644 index 00000000..e043921d --- /dev/null +++ b/Skins/stellerino/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c9b2975924dbd539e38f05f5a5256a8619ba2ef922b6d57cc3a30e67b533e2f +size 2027 diff --git a/Skins/stellerino/cursor@2xaaaa.png b/Skins/stellerino/cursor@2xaaaa.png new file mode 100644 index 00000000..fc2d580d --- /dev/null +++ b/Skins/stellerino/cursor@2xaaaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35c8f8bff9cb93d2c8541113cc45226e18b1ccf1fd33941374f65d6c553f9fd +size 4250 diff --git a/Skins/stellerino/cursor@2xsadf.png b/Skins/stellerino/cursor@2xsadf.png new file mode 100644 index 00000000..df4afd8a --- /dev/null +++ b/Skins/stellerino/cursor@2xsadf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65f0bf4ab3c96f9b8ff24feebd7ad21dd41ef3ad0d3f08f7472f9e4b0c12425 +size 8934 diff --git a/Skins/stellerino/cursoraaaaaa.png b/Skins/stellerino/cursoraaaaaa.png new file mode 100644 index 00000000..b78dc9a1 --- /dev/null +++ b/Skins/stellerino/cursoraaaaaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b19d28a95af019dccf9a57a71130fadf03085f9b44d3bd23995ebe6c618e244 +size 2026 diff --git a/Skins/stellerino/cursortraiLasdf.png b/Skins/stellerino/cursortraiLasdf.png new file mode 100644 index 00000000..8840ad27 --- /dev/null +++ b/Skins/stellerino/cursortraiLasdf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d930113867ee5e90a87461e5ed061ddde24b123ac3965e6b5ea0da3790ec25 +size 1722 diff --git a/Skins/stellerino/cursortrail.png b/Skins/stellerino/cursortrail.png new file mode 100644 index 00000000..10973de0 --- /dev/null +++ b/Skins/stellerino/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:888f64466b7a73633d9135504c32fe095f8bfc52e48f1d257aca69f56556108c +size 1796 diff --git a/Skins/stellerino/cursortrailaaa.png b/Skins/stellerino/cursortrailaaa.png new file mode 100644 index 00000000..5000fd73 --- /dev/null +++ b/Skins/stellerino/cursortrailaaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac25616e9408f5eae6ea9a1e7b4e23d15956f05955a381bce6fd321c7065e71e +size 1694 diff --git a/Skins/stellerino/cursortrailaaaa.png b/Skins/stellerino/cursortrailaaaa.png new file mode 100644 index 00000000..602c82b3 --- /dev/null +++ b/Skins/stellerino/cursortrailaaaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa49d6d7659b0b9d36c23ede7ed9f6f45e67f04f80837dd6adaa1274fb418a2 +size 1532 diff --git a/Skins/stellerino/default-0.png b/Skins/stellerino/default-0.png new file mode 100644 index 00000000..770f6c07 --- /dev/null +++ b/Skins/stellerino/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea52428adc2a41b2f8a3a15802776b1335c2d05900281b83c934290ade94c4b +size 452 diff --git a/Skins/stellerino/default-1.png b/Skins/stellerino/default-1.png new file mode 100644 index 00000000..83de4995 --- /dev/null +++ b/Skins/stellerino/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39fcfa565b60804e9fb713abb1c2cba925c505d95253b49d758b312d0cc8e863 +size 194 diff --git a/Skins/stellerino/default-2.png b/Skins/stellerino/default-2.png new file mode 100644 index 00000000..553b93b9 --- /dev/null +++ b/Skins/stellerino/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b83c480f10e8f95b404eee0ecc4ffe94af0ebd323dca46f79fe35cb49993f62 +size 432 diff --git a/Skins/stellerino/default-3.png b/Skins/stellerino/default-3.png new file mode 100644 index 00000000..46531d2c --- /dev/null +++ b/Skins/stellerino/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11d98a093bb10c53324fceac63798d45c677906f5e834f8d736f56c9399c00e +size 462 diff --git a/Skins/stellerino/default-4.png b/Skins/stellerino/default-4.png new file mode 100644 index 00000000..38142189 --- /dev/null +++ b/Skins/stellerino/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9248ceeb38b3f1842b3ebdbe8551aa33863e05b3619e38367a2a3e65b546441 +size 303 diff --git a/Skins/stellerino/default-5.png b/Skins/stellerino/default-5.png new file mode 100644 index 00000000..dc1b77cd --- /dev/null +++ b/Skins/stellerino/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167191ac59ad8d8eb6d4a612c9d1c2ab0e0c6b849362cc9c100a0932d2573bab +size 420 diff --git a/Skins/stellerino/default-6.png b/Skins/stellerino/default-6.png new file mode 100644 index 00000000..5721356a --- /dev/null +++ b/Skins/stellerino/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0808e56ada5d6a6d33ac6d2c9c6256a39df54e3ca44e46f2efbaa406f75818b1 +size 487 diff --git a/Skins/stellerino/default-7.png b/Skins/stellerino/default-7.png new file mode 100644 index 00000000..32aa23ad --- /dev/null +++ b/Skins/stellerino/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0a16e463df9f973be8408538ff8715ed9fd651f5e8bac755de0612b5a692af +size 337 diff --git a/Skins/stellerino/default-8.png b/Skins/stellerino/default-8.png new file mode 100644 index 00000000..d68e6767 --- /dev/null +++ b/Skins/stellerino/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b97bb35d4fa8250421f0188c36996c4fd5775e1f1e5c3c6c94fc722b54254a +size 484 diff --git a/Skins/stellerino/default-9.png b/Skins/stellerino/default-9.png new file mode 100644 index 00000000..fd882fdc --- /dev/null +++ b/Skins/stellerino/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb2ba9dc84a4b504c869965f1f3686a1c086e9159ac632e35496e6eb1df7d88 +size 489 diff --git a/Skins/stellerino/drum-hitclap.mp3 b/Skins/stellerino/drum-hitclap.mp3 new file mode 100644 index 00000000..654aabfb --- /dev/null +++ b/Skins/stellerino/drum-hitclap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74de9205c31c8c8629e8387f2f8aaca304c5b88060054a21600168dc96246644 +size 2130 diff --git a/Skins/stellerino/drum-hitfinish.mp3 b/Skins/stellerino/drum-hitfinish.mp3 new file mode 100644 index 00000000..708cc818 --- /dev/null +++ b/Skins/stellerino/drum-hitfinish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9745187e9babf483bd2464a4634d70393c90a516399939b3ad5e8eb1ca543741 +size 3801 diff --git a/Skins/stellerino/drum-hitnormal.mp3 b/Skins/stellerino/drum-hitnormal.mp3 new file mode 100644 index 00000000..c72e5b9a --- /dev/null +++ b/Skins/stellerino/drum-hitnormal.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df34351f163491466302b19159bb7665f9eca9cc3bd8d2be75dc5ef01a0b93d8 +size 4583 diff --git a/Skins/stellerino/drum-hitwhistle.mp3 b/Skins/stellerino/drum-hitwhistle.mp3 new file mode 100644 index 00000000..6bf2b6ce --- /dev/null +++ b/Skins/stellerino/drum-hitwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa9c8282ba7ffcc8bd5ba79b764755d9b8d8a1740a4b5c7ec968160b1f4f99c +size 2828 diff --git a/Skins/stellerino/followpoint-0.png b/Skins/stellerino/followpoint-0.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/followpoint-1.png b/Skins/stellerino/followpoint-1.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/followpoint-11.png b/Skins/stellerino/followpoint-11.png new file mode 100644 index 00000000..b67f3568 --- /dev/null +++ b/Skins/stellerino/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:064ff5df4c9b6664c40d85d33827f3bdffcbdbe80922604df2184fe8fb1311da +size 753 diff --git a/Skins/stellerino/followpoint-12.png b/Skins/stellerino/followpoint-12.png new file mode 100644 index 00000000..005c8d62 --- /dev/null +++ b/Skins/stellerino/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7717b02fa74ebeb135f570b731ce69d09a6ab9bad322c47b509c61d4e6517fc +size 876 diff --git a/Skins/stellerino/followpoint-13.png b/Skins/stellerino/followpoint-13.png new file mode 100644 index 00000000..81bf75fd --- /dev/null +++ b/Skins/stellerino/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fce4b0953eb3ed945d9865230d1b6d9fc0f60dcec9b5a2fdde5edb2b4c644c +size 810 diff --git a/Skins/stellerino/followpoint-14.png b/Skins/stellerino/followpoint-14.png new file mode 100644 index 00000000..3e501b3d --- /dev/null +++ b/Skins/stellerino/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c044430e2ca745779365146219f6202f15a191fd25911c5f30bc4575e6006935 +size 870 diff --git a/Skins/stellerino/followpoint-15.png b/Skins/stellerino/followpoint-15.png new file mode 100644 index 00000000..a451db12 --- /dev/null +++ b/Skins/stellerino/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8e0dc5e34543dac96cfa74555a02e5a48ec86b4415495b9b057e81a4a4fd13 +size 880 diff --git a/Skins/stellerino/followpoint-16.png b/Skins/stellerino/followpoint-16.png new file mode 100644 index 00000000..ba2fa8b5 --- /dev/null +++ b/Skins/stellerino/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c83580705af5895f6ea058f97da4ec27bf0ae1fa7746fcb56e7ca535972a81c +size 870 diff --git a/Skins/stellerino/followpoint-17.png b/Skins/stellerino/followpoint-17.png new file mode 100644 index 00000000..bcb91d08 --- /dev/null +++ b/Skins/stellerino/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9ffa4ca29aa9d5aa62a5d0f3b39c7cfd1cddc93bf8f6d674cd75659314a178 +size 864 diff --git a/Skins/stellerino/followpoint-18.png b/Skins/stellerino/followpoint-18.png new file mode 100644 index 00000000..dc3789ee --- /dev/null +++ b/Skins/stellerino/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd4b37f7c3c050828d664958efe77fb8e9e159bf671ff2ff48a23a46b97207a +size 811 diff --git a/Skins/stellerino/followpoint-19.png b/Skins/stellerino/followpoint-19.png new file mode 100644 index 00000000..94cdc4b5 --- /dev/null +++ b/Skins/stellerino/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e934f4c5fd1d50b16880f23c922043970997c52a9f2a6e5fdce6b5acf053a2e +size 736 diff --git a/Skins/stellerino/followpoint-2.png b/Skins/stellerino/followpoint-2.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/followpoint-20.png b/Skins/stellerino/followpoint-20.png new file mode 100644 index 00000000..af387cc3 --- /dev/null +++ b/Skins/stellerino/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6026227ee7e264b960034e5b039c7db541fe6c614e25bb182d643c0671066b +size 668 diff --git a/Skins/stellerino/followpoint-21.png b/Skins/stellerino/followpoint-21.png new file mode 100644 index 00000000..d13d4748 --- /dev/null +++ b/Skins/stellerino/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387bba5374acc19caab6aca66f5c44990085f6d75ba6263630abf81ccf44c127 +size 589 diff --git a/Skins/stellerino/followpoint-22.png b/Skins/stellerino/followpoint-22.png new file mode 100644 index 00000000..58869a63 --- /dev/null +++ b/Skins/stellerino/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa83d96d4f300d5bd505fed5fc94cadbd2c6cc9f040a08712795df3afeae969 +size 444 diff --git a/Skins/stellerino/followpoint-23.png b/Skins/stellerino/followpoint-23.png new file mode 100644 index 00000000..cc9e4891 --- /dev/null +++ b/Skins/stellerino/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39c82d89262ba951f0c449498220e17bac6521148db1397544ee55293e9d6c6 +size 98 diff --git a/Skins/stellerino/followpoint-3.png b/Skins/stellerino/followpoint-3.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/followpoint-4.png b/Skins/stellerino/followpoint-4.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino/followpoint-5.png b/Skins/stellerino/followpoint-5.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino/followpoint-6.png b/Skins/stellerino/followpoint-6.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino/followpoint-7.png b/Skins/stellerino/followpoint-7.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino/followpoint-8.png b/Skins/stellerino/followpoint-8.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino/followpoint-9.png b/Skins/stellerino/followpoint-9.png new file mode 100644 index 00000000..e38eb787 --- /dev/null +++ b/Skins/stellerino/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4d846fe67256abca1c7df5fa0b437b51e225a9eef55decba21e0ca4013348f +size 361 diff --git a/Skins/stellerino/followpoint.png b/Skins/stellerino/followpoint.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/go.png b/Skins/stellerino/go.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit0-0.png b/Skins/stellerino/hit0-0.png new file mode 100644 index 00000000..e105dfc1 --- /dev/null +++ b/Skins/stellerino/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c901c282cd192b8112ebb6029fc93a11d75c3ea28ca3e8a339f788328848c9b +size 6189 diff --git a/Skins/stellerino/hit0-1.png b/Skins/stellerino/hit0-1.png new file mode 100644 index 00000000..e105dfc1 --- /dev/null +++ b/Skins/stellerino/hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c901c282cd192b8112ebb6029fc93a11d75c3ea28ca3e8a339f788328848c9b +size 6189 diff --git a/Skins/stellerino/hit0-2.png b/Skins/stellerino/hit0-2.png new file mode 100644 index 00000000..e105dfc1 --- /dev/null +++ b/Skins/stellerino/hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c901c282cd192b8112ebb6029fc93a11d75c3ea28ca3e8a339f788328848c9b +size 6189 diff --git a/Skins/stellerino/hit0-3.png b/Skins/stellerino/hit0-3.png new file mode 100644 index 00000000..e105dfc1 --- /dev/null +++ b/Skins/stellerino/hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c901c282cd192b8112ebb6029fc93a11d75c3ea28ca3e8a339f788328848c9b +size 6189 diff --git a/Skins/stellerino/hit0-4.png b/Skins/stellerino/hit0-4.png new file mode 100644 index 00000000..e105dfc1 --- /dev/null +++ b/Skins/stellerino/hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c901c282cd192b8112ebb6029fc93a11d75c3ea28ca3e8a339f788328848c9b +size 6189 diff --git a/Skins/stellerino/hit0-5.png b/Skins/stellerino/hit0-5.png new file mode 100644 index 00000000..e105dfc1 --- /dev/null +++ b/Skins/stellerino/hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c901c282cd192b8112ebb6029fc93a11d75c3ea28ca3e8a339f788328848c9b +size 6189 diff --git a/Skins/stellerino/hit0-6.png b/Skins/stellerino/hit0-6.png new file mode 100644 index 00000000..e105dfc1 --- /dev/null +++ b/Skins/stellerino/hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c901c282cd192b8112ebb6029fc93a11d75c3ea28ca3e8a339f788328848c9b +size 6189 diff --git a/Skins/stellerino/hit0-7.png b/Skins/stellerino/hit0-7.png new file mode 100644 index 00000000..e105dfc1 --- /dev/null +++ b/Skins/stellerino/hit0-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c901c282cd192b8112ebb6029fc93a11d75c3ea28ca3e8a339f788328848c9b +size 6189 diff --git a/Skins/stellerino/hit0-8.png b/Skins/stellerino/hit0-8.png new file mode 100644 index 00000000..e105dfc1 --- /dev/null +++ b/Skins/stellerino/hit0-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c901c282cd192b8112ebb6029fc93a11d75c3ea28ca3e8a339f788328848c9b +size 6189 diff --git a/Skins/stellerino/hit0-9.png b/Skins/stellerino/hit0-9.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit0-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit0.png b/Skins/stellerino/hit0.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit100-0.png b/Skins/stellerino/hit100-0.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100-1.png b/Skins/stellerino/hit100-1.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100-2.png b/Skins/stellerino/hit100-2.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100-3.png b/Skins/stellerino/hit100-3.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100-4.png b/Skins/stellerino/hit100-4.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100-5.png b/Skins/stellerino/hit100-5.png new file mode 100644 index 00000000..59895e97 --- /dev/null +++ b/Skins/stellerino/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbd3e9cd23673339c10e30edfcaf2774f59d0b126fe41595b3111c3a644a6ce +size 1676 diff --git a/Skins/stellerino/hit100-6.png b/Skins/stellerino/hit100-6.png new file mode 100644 index 00000000..707b4e7a --- /dev/null +++ b/Skins/stellerino/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56eba3e2dada7b9cfdae14d3563f0b9c83600ddeecc9147ed18c58fcf77ce7a2 +size 1482 diff --git a/Skins/stellerino/hit100-7.png b/Skins/stellerino/hit100-7.png new file mode 100644 index 00000000..79de2f76 --- /dev/null +++ b/Skins/stellerino/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154493ea8d8dc452f858cc1b28c8d298f77abaf6bd20d0dfa9bad7bbc32890b1 +size 1250 diff --git a/Skins/stellerino/hit100-8.png b/Skins/stellerino/hit100-8.png new file mode 100644 index 00000000..3c0cd284 --- /dev/null +++ b/Skins/stellerino/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c32e620f16e6d164629f49ce897b3f0149d77b10940d3b062b867c211db6b2d +size 956 diff --git a/Skins/stellerino/hit100-9.png b/Skins/stellerino/hit100-9.png new file mode 100644 index 00000000..96337383 --- /dev/null +++ b/Skins/stellerino/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62eca310f81486b1bbdd7791b82d6a14850505c0eb282fed527665aed3a13229 +size 110 diff --git a/Skins/stellerino/hit100.png b/Skins/stellerino/hit100.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit100k-0.png b/Skins/stellerino/hit100k-0.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100k-1.png b/Skins/stellerino/hit100k-1.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100k-2.png b/Skins/stellerino/hit100k-2.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100k-3.png b/Skins/stellerino/hit100k-3.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100k-4.png b/Skins/stellerino/hit100k-4.png new file mode 100644 index 00000000..8fdc691f --- /dev/null +++ b/Skins/stellerino/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f917c9c6f0c2094ac3a513e828d83ea37c901b8b3ad3417f1c8443fd4e56d3a +size 1676 diff --git a/Skins/stellerino/hit100k-5.png b/Skins/stellerino/hit100k-5.png new file mode 100644 index 00000000..59895e97 --- /dev/null +++ b/Skins/stellerino/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbd3e9cd23673339c10e30edfcaf2774f59d0b126fe41595b3111c3a644a6ce +size 1676 diff --git a/Skins/stellerino/hit100k-6.png b/Skins/stellerino/hit100k-6.png new file mode 100644 index 00000000..707b4e7a --- /dev/null +++ b/Skins/stellerino/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56eba3e2dada7b9cfdae14d3563f0b9c83600ddeecc9147ed18c58fcf77ce7a2 +size 1482 diff --git a/Skins/stellerino/hit100k-7.png b/Skins/stellerino/hit100k-7.png new file mode 100644 index 00000000..79de2f76 --- /dev/null +++ b/Skins/stellerino/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154493ea8d8dc452f858cc1b28c8d298f77abaf6bd20d0dfa9bad7bbc32890b1 +size 1250 diff --git a/Skins/stellerino/hit100k-8.png b/Skins/stellerino/hit100k-8.png new file mode 100644 index 00000000..3c0cd284 --- /dev/null +++ b/Skins/stellerino/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c32e620f16e6d164629f49ce897b3f0149d77b10940d3b062b867c211db6b2d +size 956 diff --git a/Skins/stellerino/hit100k-9.png b/Skins/stellerino/hit100k-9.png new file mode 100644 index 00000000..96337383 --- /dev/null +++ b/Skins/stellerino/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62eca310f81486b1bbdd7791b82d6a14850505c0eb282fed527665aed3a13229 +size 110 diff --git a/Skins/stellerino/hit100k.png b/Skins/stellerino/hit100k.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300-0.png b/Skins/stellerino/hit300-0.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300-1.png b/Skins/stellerino/hit300-1.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300-3.png b/Skins/stellerino/hit300-3.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300.png b/Skins/stellerino/hit300.png new file mode 100644 index 00000000..7a77f90e --- /dev/null +++ b/Skins/stellerino/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aaa90c856ff823d613b9ecd656c2b714ff225ee18067dcb676243c42ca1877f +size 4899 diff --git a/Skins/stellerino/hit300@2x.png b/Skins/stellerino/hit300@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300g-0.png b/Skins/stellerino/hit300g-0.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300g-1.png b/Skins/stellerino/hit300g-1.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300g-3.png b/Skins/stellerino/hit300g-3.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300g-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300g.png b/Skins/stellerino/hit300g.png new file mode 100644 index 00000000..7a77f90e --- /dev/null +++ b/Skins/stellerino/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aaa90c856ff823d613b9ecd656c2b714ff225ee18067dcb676243c42ca1877f +size 4899 diff --git a/Skins/stellerino/hit300g@2x.png b/Skins/stellerino/hit300g@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300k-0.png b/Skins/stellerino/hit300k-0.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300k-1.png b/Skins/stellerino/hit300k-1.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300k-3.png b/Skins/stellerino/hit300k-3.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit300k.png b/Skins/stellerino/hit300k.png new file mode 100644 index 00000000..7a77f90e --- /dev/null +++ b/Skins/stellerino/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aaa90c856ff823d613b9ecd656c2b714ff225ee18067dcb676243c42ca1877f +size 4899 diff --git a/Skins/stellerino/hit300k@2x.png b/Skins/stellerino/hit300k@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit300k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hit50-0.png b/Skins/stellerino/hit50-0.png new file mode 100644 index 00000000..9e156f0e --- /dev/null +++ b/Skins/stellerino/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02268a55d8ce6d3f8f5a659dfb98bbb8d1f84c8564bbb13deac9442cb33d73e +size 1594 diff --git a/Skins/stellerino/hit50-1.png b/Skins/stellerino/hit50-1.png new file mode 100644 index 00000000..9e156f0e --- /dev/null +++ b/Skins/stellerino/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02268a55d8ce6d3f8f5a659dfb98bbb8d1f84c8564bbb13deac9442cb33d73e +size 1594 diff --git a/Skins/stellerino/hit50-2.png b/Skins/stellerino/hit50-2.png new file mode 100644 index 00000000..9e156f0e --- /dev/null +++ b/Skins/stellerino/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02268a55d8ce6d3f8f5a659dfb98bbb8d1f84c8564bbb13deac9442cb33d73e +size 1594 diff --git a/Skins/stellerino/hit50-3.png b/Skins/stellerino/hit50-3.png new file mode 100644 index 00000000..9e156f0e --- /dev/null +++ b/Skins/stellerino/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02268a55d8ce6d3f8f5a659dfb98bbb8d1f84c8564bbb13deac9442cb33d73e +size 1594 diff --git a/Skins/stellerino/hit50-4.png b/Skins/stellerino/hit50-4.png new file mode 100644 index 00000000..9e156f0e --- /dev/null +++ b/Skins/stellerino/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02268a55d8ce6d3f8f5a659dfb98bbb8d1f84c8564bbb13deac9442cb33d73e +size 1594 diff --git a/Skins/stellerino/hit50-5.png b/Skins/stellerino/hit50-5.png new file mode 100644 index 00000000..eed0dc9a --- /dev/null +++ b/Skins/stellerino/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a20538620023f5c1abdb3dee473c8ebe89fb27e2ae1d5f4f1ee4add4b88fa1b +size 1582 diff --git a/Skins/stellerino/hit50-6.png b/Skins/stellerino/hit50-6.png new file mode 100644 index 00000000..da32850c --- /dev/null +++ b/Skins/stellerino/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a4cde4f41cd65589926eef19a58b8494432bd814a0ab85f4070841dc3fba5a +size 1416 diff --git a/Skins/stellerino/hit50-7.png b/Skins/stellerino/hit50-7.png new file mode 100644 index 00000000..bea9391e --- /dev/null +++ b/Skins/stellerino/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7270ea5dabeda085158beb9c7873cfff0c05c4f05c80e25d6df24f5362d52a92 +size 1205 diff --git a/Skins/stellerino/hit50-8.png b/Skins/stellerino/hit50-8.png new file mode 100644 index 00000000..12e8d782 --- /dev/null +++ b/Skins/stellerino/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cad9ac88d98d81b6938db4ff331f27ee699427ad2f8fa876d39601cbaf48fe0 +size 909 diff --git a/Skins/stellerino/hit50-9.png b/Skins/stellerino/hit50-9.png new file mode 100644 index 00000000..96337383 --- /dev/null +++ b/Skins/stellerino/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62eca310f81486b1bbdd7791b82d6a14850505c0eb282fed527665aed3a13229 +size 110 diff --git a/Skins/stellerino/hit50.png b/Skins/stellerino/hit50.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/hitcircle.png b/Skins/stellerino/hitcircle.png new file mode 100644 index 00000000..51681248 --- /dev/null +++ b/Skins/stellerino/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19fa85d27440b7e1bfe1056707e54e6514976aa1f57847f8c799c4ae11155d35 +size 2770 diff --git a/Skins/stellerino/hitcircleoverlay.png b/Skins/stellerino/hitcircleoverlay.png new file mode 100644 index 00000000..adcae602 --- /dev/null +++ b/Skins/stellerino/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e878240f692f105fd5894f377bb0cc3127235b765d8c8a51e6cba201e3096ce +size 2113 diff --git a/Skins/stellerino/hitcircleoverlay@2x.png b/Skins/stellerino/hitcircleoverlay@2x.png new file mode 100644 index 00000000..e927b0a1 --- /dev/null +++ b/Skins/stellerino/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393d4e8c950b6794a4d47ba0b6f032822ac1fb6b5adec2dc6dd6c3f331d10930 +size 9281 diff --git a/Skins/stellerino/hitcircleoverlay@2xaa.png b/Skins/stellerino/hitcircleoverlay@2xaa.png new file mode 100644 index 00000000..e927b0a1 --- /dev/null +++ b/Skins/stellerino/hitcircleoverlay@2xaa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393d4e8c950b6794a4d47ba0b6f032822ac1fb6b5adec2dc6dd6c3f331d10930 +size 9281 diff --git a/Skins/stellerino/inputoverlay-background.png b/Skins/stellerino/inputoverlay-background.png new file mode 100644 index 00000000..6d1a45ba --- /dev/null +++ b/Skins/stellerino/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300a14071fabb31c1345d0852d1c7c1b85f52821358183e365c64c905eb651a2 +size 1943 diff --git a/Skins/stellerino/inputoverlay-key.png b/Skins/stellerino/inputoverlay-key.png new file mode 100644 index 00000000..35c07d12 --- /dev/null +++ b/Skins/stellerino/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f9387975dd973e0112d6c0b92e1709a39192d149cd9cc7463a8f2cbc49da7d +size 146 diff --git a/Skins/stellerino/inputoverlay-key@2x.png b/Skins/stellerino/inputoverlay-key@2x.png new file mode 100644 index 00000000..d3d99643 --- /dev/null +++ b/Skins/stellerino/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48853e01edb17a4eeb1a3c2a009aa8935465f77f5ecc87463bb6b3f50709e4a +size 201 diff --git a/Skins/stellerino/menu-back.png b/Skins/stellerino/menu-back.png new file mode 100644 index 00000000..789d87d4 --- /dev/null +++ b/Skins/stellerino/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e81100f26a037617533fcadf4e41cd298712a4aacd620a2a0ecdfdf7524980 +size 113 diff --git a/Skins/stellerino/menu-background.jpg b/Skins/stellerino/menu-background.jpg new file mode 100644 index 00000000..e599a6dc --- /dev/null +++ b/Skins/stellerino/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b08d0dd03574254801513676060872d524f431536c5ef2005e1e4c6e91bc99 +size 296038 diff --git a/Skins/stellerino/menu-button-background.png b/Skins/stellerino/menu-button-background.png new file mode 100644 index 00000000..f35de60f --- /dev/null +++ b/Skins/stellerino/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03da62a58b5541822a8cc7a63e08c6a17ad596d1a2a214dabf404260a2a2d9bc +size 13892 diff --git a/Skins/stellerino/menu-snow.png b/Skins/stellerino/menu-snow.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/mode-osu-small.png b/Skins/stellerino/mode-osu-small.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/mode-osu-small@2x.png b/Skins/stellerino/mode-osu-small@2x.png new file mode 100644 index 00000000..afcab4d5 --- /dev/null +++ b/Skins/stellerino/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24deb6fa7a3ade007e617f2e83f045d920dcfdb674a97bc18b17f4602c90b4a +size 51613 diff --git a/Skins/stellerino/mode-taiko-med.png b/Skins/stellerino/mode-taiko-med.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/stellerino/mode-taiko-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/stellerino/mode-taiko-small.png b/Skins/stellerino/mode-taiko-small.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/mode-taiko-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/mode-taiko.png b/Skins/stellerino/mode-taiko.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/stellerino/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/stellerino/nightcore-clap.mp3 b/Skins/stellerino/nightcore-clap.mp3 new file mode 100644 index 00000000..5f497ead --- /dev/null +++ b/Skins/stellerino/nightcore-clap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743371d816c42bec9c520bd2bf6386cad03a26934f069a1eb940880bb191301f +size 564 diff --git a/Skins/stellerino/nightcore-finish.mp3 b/Skins/stellerino/nightcore-finish.mp3 new file mode 100644 index 00000000..5f497ead --- /dev/null +++ b/Skins/stellerino/nightcore-finish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743371d816c42bec9c520bd2bf6386cad03a26934f069a1eb940880bb191301f +size 564 diff --git a/Skins/stellerino/nightcore-hat.mp3 b/Skins/stellerino/nightcore-hat.mp3 new file mode 100644 index 00000000..5f497ead --- /dev/null +++ b/Skins/stellerino/nightcore-hat.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743371d816c42bec9c520bd2bf6386cad03a26934f069a1eb940880bb191301f +size 564 diff --git a/Skins/stellerino/nightcore-kick.mp3 b/Skins/stellerino/nightcore-kick.mp3 new file mode 100644 index 00000000..5f497ead --- /dev/null +++ b/Skins/stellerino/nightcore-kick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743371d816c42bec9c520bd2bf6386cad03a26934f069a1eb940880bb191301f +size 564 diff --git a/Skins/stellerino/normal-hitfinish.mp3 b/Skins/stellerino/normal-hitfinish.mp3 new file mode 100644 index 00000000..0d6a3d24 --- /dev/null +++ b/Skins/stellerino/normal-hitfinish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95395d167fbbc8efcf019ab2c6e1df7afe07296ddee3887fcb1592841fca1f1e +size 4323 diff --git a/Skins/stellerino/normal-hitnormal.mp3 b/Skins/stellerino/normal-hitnormal.mp3 new file mode 100644 index 00000000..c72e5b9a --- /dev/null +++ b/Skins/stellerino/normal-hitnormal.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df34351f163491466302b19159bb7665f9eca9cc3bd8d2be75dc5ef01a0b93d8 +size 4583 diff --git a/Skins/stellerino/normal-hitwhistle.mp3 b/Skins/stellerino/normal-hitwhistle.mp3 new file mode 100644 index 00000000..6bf2b6ce --- /dev/null +++ b/Skins/stellerino/normal-hitwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa9c8282ba7ffcc8bd5ba79b764755d9b8d8a1740a4b5c7ec968160b1f4f99c +size 2828 diff --git a/Skins/stellerino/normal-slidertick.mp3 b/Skins/stellerino/normal-slidertick.mp3 new file mode 100644 index 00000000..1c873839 --- /dev/null +++ b/Skins/stellerino/normal-slidertick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce83fc96cd09300385f3b8926568b3a01a79edbda21f0f770da30b63c928285 +size 3878 diff --git a/Skins/stellerino/pause-back@2x.png b/Skins/stellerino/pause-back@2x.png new file mode 100644 index 00000000..0c6e1e3b --- /dev/null +++ b/Skins/stellerino/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbdb6257dae36dd637434c7f05e94608b5eca0188cd4922889fee023a323bf17 +size 6467 diff --git a/Skins/stellerino/pause-continue@2x.png b/Skins/stellerino/pause-continue@2x.png new file mode 100644 index 00000000..6db80ff7 --- /dev/null +++ b/Skins/stellerino/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab08a240ddd47dd471e7bf89f7510e73caf8498a7fa7f1359683f16d29079da +size 10340 diff --git a/Skins/stellerino/pause-replay.png b/Skins/stellerino/pause-replay.png new file mode 100644 index 00000000..d853dd11 --- /dev/null +++ b/Skins/stellerino/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ad6808586ad1d2cf7cf01ce53238f73bc1d2634ddb81fe440b429bd8f8cde3 +size 11804 diff --git a/Skins/stellerino/pause-retry@2x.png b/Skins/stellerino/pause-retry@2x.png new file mode 100644 index 00000000..c9850606 --- /dev/null +++ b/Skins/stellerino/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dd485daebb2fde40a162a6799f828f0dd8753e9bfd20ee63c5faff6fd842566 +size 7008 diff --git a/Skins/stellerino/play-skip.png b/Skins/stellerino/play-skip.png new file mode 100644 index 00000000..219a6127 --- /dev/null +++ b/Skins/stellerino/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:569d5cffc02d0aff54f03d99e9bfb3f8acb4884c2f071979a7f7b27799ea5272 +size 10429 diff --git a/Skins/stellerino/play-unranked.png b/Skins/stellerino/play-unranked.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/play-warningarrow.png b/Skins/stellerino/play-warningarrow.png new file mode 100644 index 00000000..df4f7cf0 --- /dev/null +++ b/Skins/stellerino/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94f9bd533855d97da46773ad9b91cfddbec896514cdd4df27c2cd16fda115f5 +size 648 diff --git a/Skins/stellerino/ranking-A-small.png b/Skins/stellerino/ranking-A-small.png new file mode 100644 index 00000000..a005b24a --- /dev/null +++ b/Skins/stellerino/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcae39324135f81f5695a90a72146c4a5201bca793903838e514450e1d18741 +size 1645 diff --git a/Skins/stellerino/ranking-A.png b/Skins/stellerino/ranking-A.png new file mode 100644 index 00000000..83e70043 --- /dev/null +++ b/Skins/stellerino/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de0d108a8370a2d949f7e0b8c1851c7178e5f36aaee1009064ab74e04aab8b8 +size 1108 diff --git a/Skins/stellerino/ranking-B-small.png b/Skins/stellerino/ranking-B-small.png new file mode 100644 index 00000000..b00b645b --- /dev/null +++ b/Skins/stellerino/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb088227a5e686219a5c4a03da8d5d8b73bb047bb080ab47c584e0a28160148 +size 1673 diff --git a/Skins/stellerino/ranking-C-small.png b/Skins/stellerino/ranking-C-small.png new file mode 100644 index 00000000..613f849c --- /dev/null +++ b/Skins/stellerino/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473cdc9b1175ce4817d4ee5105073f2e9361fa0ced9bb4852e5e4baddb250776 +size 1809 diff --git a/Skins/stellerino/ranking-D-small.png b/Skins/stellerino/ranking-D-small.png new file mode 100644 index 00000000..88eda505 --- /dev/null +++ b/Skins/stellerino/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d302aab3e65849dff022d507ee32db6c11a4277a7ba31cd446ef97075ac13c3e +size 1781 diff --git a/Skins/stellerino/ranking-S-small.png b/Skins/stellerino/ranking-S-small.png new file mode 100644 index 00000000..16dd8d03 --- /dev/null +++ b/Skins/stellerino/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff7d348183899fb02dd1395e4eaa0d44e1799a38e95073c9935773f1ea6d32a4 +size 1816 diff --git a/Skins/stellerino/ranking-SH-small.png b/Skins/stellerino/ranking-SH-small.png new file mode 100644 index 00000000..69b9e9b4 --- /dev/null +++ b/Skins/stellerino/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2debc0f40b0efdbe50631439d61d5bb9f3d1ca74bbe36e9def56efc24d918dd2 +size 1735 diff --git a/Skins/stellerino/ranking-SH.PNG b/Skins/stellerino/ranking-SH.PNG new file mode 100644 index 00000000..04593acb --- /dev/null +++ b/Skins/stellerino/ranking-SH.PNG @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e145c88c81556f7d5ff3ad5a363265d8699a8dfc1482524c32516aa3f9dde60a +size 3401 diff --git a/Skins/stellerino/ranking-X-small.png b/Skins/stellerino/ranking-X-small.png new file mode 100644 index 00000000..c1bb2970 --- /dev/null +++ b/Skins/stellerino/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7472c345a898f9e569456ee1cc4b8dcfc1c7869586b5f2acea9fbea993d5fc68 +size 1987 diff --git a/Skins/stellerino/ranking-XH-small.png b/Skins/stellerino/ranking-XH-small.png new file mode 100644 index 00000000..d5ef1ea9 --- /dev/null +++ b/Skins/stellerino/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aff44ba5f4ff1cd5735bc11ff92ce844deeaa0002ff4ec04a9909511c75cf8e +size 1933 diff --git a/Skins/stellerino/ranking-accuracy.png b/Skins/stellerino/ranking-accuracy.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/ranking-b.png b/Skins/stellerino/ranking-b.png new file mode 100644 index 00000000..2e741fbe --- /dev/null +++ b/Skins/stellerino/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8936e90f0b30beaa2fbb5ab961d0d6f91b6e76f867bf97d32a287546025aa5 +size 940 diff --git a/Skins/stellerino/ranking-c.png b/Skins/stellerino/ranking-c.png new file mode 100644 index 00000000..ddca672c --- /dev/null +++ b/Skins/stellerino/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcdeb33d787c4f6ec07812692e4b6fe333bd9d5e1177dfc46fbb9b72fb9bb7f8 +size 1216 diff --git a/Skins/stellerino/ranking-d.png b/Skins/stellerino/ranking-d.png new file mode 100644 index 00000000..28494664 --- /dev/null +++ b/Skins/stellerino/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6999fc8923b7c8dfb5f2d98be2dda561f507e69414c46449f54a827303a57fb +size 819 diff --git a/Skins/stellerino/ranking-graph.png b/Skins/stellerino/ranking-graph.png new file mode 100644 index 00000000..9b3e8f6e --- /dev/null +++ b/Skins/stellerino/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae059a26e499a357ee99658c75d30a830261ab8c8f4f91b3599b10d918dae90f +size 113 diff --git a/Skins/stellerino/ranking-maxcombo.png b/Skins/stellerino/ranking-maxcombo.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/ranking-panel@2x.png b/Skins/stellerino/ranking-panel@2x.png new file mode 100644 index 00000000..dae7f16d --- /dev/null +++ b/Skins/stellerino/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f973eb5e00717b1af49855913a23bc56cf363ad0b87a360168b41ba9aab45e +size 578021 diff --git a/Skins/stellerino/ranking-perfect.png b/Skins/stellerino/ranking-perfect.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/ranking-s.png b/Skins/stellerino/ranking-s.png new file mode 100644 index 00000000..50616892 --- /dev/null +++ b/Skins/stellerino/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ae0eef261c9e450e228488402b0e34707171034b36cbe3c16e7175836bcc00 +size 1323 diff --git a/Skins/stellerino/ranking-winner.png b/Skins/stellerino/ranking-winner.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/ranking-x.png b/Skins/stellerino/ranking-x.png new file mode 100644 index 00000000..9c6cc815 --- /dev/null +++ b/Skins/stellerino/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d168ff923a25fa98886917b58270b50fa28254d10884e1c2d651a8378d55b2cc +size 1104 diff --git a/Skins/stellerino/ranking-xh.png b/Skins/stellerino/ranking-xh.png new file mode 100644 index 00000000..9c6cc815 --- /dev/null +++ b/Skins/stellerino/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d168ff923a25fa98886917b58270b50fa28254d10884e1c2d651a8378d55b2cc +size 1104 diff --git a/Skins/stellerino/ready.png b/Skins/stellerino/ready.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/reversearrow@2x.png b/Skins/stellerino/reversearrow@2x.png new file mode 100644 index 00000000..341654f7 --- /dev/null +++ b/Skins/stellerino/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a70cde42e617c493aa91cf9237d97dbf3a77d1780fa7de740ec54d838078119 +size 18157 diff --git a/Skins/stellerino/score-0@2x.png b/Skins/stellerino/score-0@2x.png new file mode 100644 index 00000000..35be59d5 --- /dev/null +++ b/Skins/stellerino/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70251d56f8ab95fac0832bd2a83faf3470591f316a8d7ca995fd97eeafda5e2 +size 2631 diff --git a/Skins/stellerino/score-1@2x.png b/Skins/stellerino/score-1@2x.png new file mode 100644 index 00000000..11cb1723 --- /dev/null +++ b/Skins/stellerino/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec7a0e91f414743ac026cc262d9f6b3f5bef7e78e0c9dec1aaea5f997f46fcc +size 1993 diff --git a/Skins/stellerino/score-2@2x.png b/Skins/stellerino/score-2@2x.png new file mode 100644 index 00000000..c1f2bb63 --- /dev/null +++ b/Skins/stellerino/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9100d42e0ae2af9b57ad5071b7c38573419028568afddee7f8940e3c3362aa +size 2404 diff --git a/Skins/stellerino/score-3@2x.png b/Skins/stellerino/score-3@2x.png new file mode 100644 index 00000000..0af0ea5a --- /dev/null +++ b/Skins/stellerino/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c696fa6fe60798fd5f958c722d72c35c4461f4241ba7cf5f669b75d74044baae +size 2356 diff --git a/Skins/stellerino/score-4@2x.png b/Skins/stellerino/score-4@2x.png new file mode 100644 index 00000000..25184dc7 --- /dev/null +++ b/Skins/stellerino/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ec88b59e4c820126816b491c33df6a6821cd1ff95a5172d341454c7b535f73 +size 2323 diff --git a/Skins/stellerino/score-5@2x.png b/Skins/stellerino/score-5@2x.png new file mode 100644 index 00000000..1e1c75e1 --- /dev/null +++ b/Skins/stellerino/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334b49368a37bf886ff1b3cf1bf115c44996a11a0f977986047d6f4c0041eacb +size 2331 diff --git a/Skins/stellerino/score-6@2x.png b/Skins/stellerino/score-6@2x.png new file mode 100644 index 00000000..4727a526 --- /dev/null +++ b/Skins/stellerino/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e06c2eae9e8099a5728185ec2e8935a5553cb8a5d715a2da6df4f508f9c378d +size 2499 diff --git a/Skins/stellerino/score-7@2x.png b/Skins/stellerino/score-7@2x.png new file mode 100644 index 00000000..fb06b670 --- /dev/null +++ b/Skins/stellerino/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e257bdcb27e5301cd57bafe61832dcb71495d5b6f20b7419e5d506ef1e082e +size 1969 diff --git a/Skins/stellerino/score-8@2x.png b/Skins/stellerino/score-8@2x.png new file mode 100644 index 00000000..ce3a6242 --- /dev/null +++ b/Skins/stellerino/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379ff61da1468cff2feb184c616a4ab7541c0965a8e5f453162b96e6f67f3fe7 +size 2598 diff --git a/Skins/stellerino/score-9@2x.png b/Skins/stellerino/score-9@2x.png new file mode 100644 index 00000000..bcd51245 --- /dev/null +++ b/Skins/stellerino/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd20bfb2e12d8875477a8cb2a99c8842852280680ddb60d0d8b3b1231b789d8e +size 2506 diff --git a/Skins/stellerino/score-comma@2x.png b/Skins/stellerino/score-comma@2x.png new file mode 100644 index 00000000..56336099 --- /dev/null +++ b/Skins/stellerino/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e5d209f43186fea4467d8649b270f658e155f2f0710052e0c88dda2e221ab8 +size 623 diff --git a/Skins/stellerino/score-dot@2x.png b/Skins/stellerino/score-dot@2x.png new file mode 100644 index 00000000..d2ac189b --- /dev/null +++ b/Skins/stellerino/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd263a5880c070ab50d4b31ba3e83d7b1e0cf481b51887d41fa6bbe8ed69763a +size 570 diff --git a/Skins/stellerino/score-percent.png b/Skins/stellerino/score-percent.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/score-percent@2xx.png b/Skins/stellerino/score-percent@2xx.png new file mode 100644 index 00000000..b979620e --- /dev/null +++ b/Skins/stellerino/score-percent@2xx.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08a877e31514855a698bd0ace2a1d2e0dc19aaf65bdd0ab78d20d02030a30ed +size 2502 diff --git a/Skins/stellerino/score-x.png b/Skins/stellerino/score-x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/score-x@2xx.png b/Skins/stellerino/score-x@2xx.png new file mode 100644 index 00000000..7653356d --- /dev/null +++ b/Skins/stellerino/score-x@2xx.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82e0e834b103c60e9a4a6441d8e155955a55d31ff1234b13a3dfa14c66b5fdd0 +size 2005 diff --git a/Skins/stellerino/scorebar-bg .png b/Skins/stellerino/scorebar-bg .png new file mode 100644 index 00000000..678fb0a1 --- /dev/null +++ b/Skins/stellerino/scorebar-bg .png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff313708c1ae1ca392bf995e7f89d489636f6e2c106db3bb80bfd51904077a9 +size 148 diff --git a/Skins/stellerino/scorebar-bg@2x.png b/Skins/stellerino/scorebar-bg@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/scorebar-bg@2xjkhjk.png b/Skins/stellerino/scorebar-bg@2xjkhjk.png new file mode 100644 index 00000000..f44323ae --- /dev/null +++ b/Skins/stellerino/scorebar-bg@2xjkhjk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7cbdb2e13725501073a15dbe83799f1c20a3ca8520e1626c5069bd526e6f0b +size 388326 diff --git a/Skins/stellerino/scorebar-bgjkhjk.png b/Skins/stellerino/scorebar-bgjkhjk.png new file mode 100644 index 00000000..97b15073 --- /dev/null +++ b/Skins/stellerino/scorebar-bgjkhjk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54a601db11d72d7866c8711c20a2a96397bdac60c33c44d877abb042a701251 +size 168901 diff --git a/Skins/stellerino/scorebar-cologr-0.png b/Skins/stellerino/scorebar-cologr-0.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/scorebar-cologr-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/scorebar-colour@2x.png b/Skins/stellerino/scorebar-colour@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/selection-mod-autoplay.png b/Skins/stellerino/selection-mod-autoplay.png new file mode 100644 index 00000000..86bb9e50 --- /dev/null +++ b/Skins/stellerino/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b900e6201538c11f1394c9462f5c7b53e14e721b09c9ffec0be778673f4b28f1 +size 2518 diff --git a/Skins/stellerino/selection-mod-cinema.png b/Skins/stellerino/selection-mod-cinema.png new file mode 100644 index 00000000..aed5adec --- /dev/null +++ b/Skins/stellerino/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa47dc66ac55686411888d33576b2a9aa71f05158587221d926d8a76a862b5a +size 3798 diff --git a/Skins/stellerino/selection-mod-doubletime.png b/Skins/stellerino/selection-mod-doubletime.png new file mode 100644 index 00000000..74d22086 --- /dev/null +++ b/Skins/stellerino/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9c8c00ceab5d5d0e31802d82784fea46e7665d91aecf309b6d931263e4922c +size 3331 diff --git a/Skins/stellerino/selection-mod-easy.png b/Skins/stellerino/selection-mod-easy.png new file mode 100644 index 00000000..661166a2 --- /dev/null +++ b/Skins/stellerino/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3ad4e3cca92db7e47d998d859fee01bd4de953aa2787d3e8dc8345a074ccd5 +size 2440 diff --git a/Skins/stellerino/selection-mod-flashlight.png b/Skins/stellerino/selection-mod-flashlight.png new file mode 100644 index 00000000..42438c1f --- /dev/null +++ b/Skins/stellerino/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4df2cb26274819951d0f5da34214f5209e705396fbf4b59700e71d4294ce17 +size 3098 diff --git a/Skins/stellerino/selection-mod-halftime.png b/Skins/stellerino/selection-mod-halftime.png new file mode 100644 index 00000000..13827f72 --- /dev/null +++ b/Skins/stellerino/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef5c58909a52532fcb0ac34fa976fcb1a56d09c1a6b6f9794963baebf683214 +size 2591 diff --git a/Skins/stellerino/selection-mod-hardrock.png b/Skins/stellerino/selection-mod-hardrock.png new file mode 100644 index 00000000..cef3bf29 --- /dev/null +++ b/Skins/stellerino/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa57e1d89c10fc66fb542e035e95043001c3e658b86bff2ebe69a84576d1197f +size 3220 diff --git a/Skins/stellerino/selection-mod-hidden.png b/Skins/stellerino/selection-mod-hidden.png new file mode 100644 index 00000000..fbc01f3e --- /dev/null +++ b/Skins/stellerino/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752d7a278f6b81ec2fc813d02788ea0be237d5b4b59ca241b132a372cd52faf3 +size 4016 diff --git a/Skins/stellerino/selection-mod-nightcore.png b/Skins/stellerino/selection-mod-nightcore.png new file mode 100644 index 00000000..c3984f14 --- /dev/null +++ b/Skins/stellerino/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c556102a532a53f73f82e64825ec02db63ffd919719356846f1f727e2dd6a7db +size 2773 diff --git a/Skins/stellerino/selection-mod-nofail.png b/Skins/stellerino/selection-mod-nofail.png new file mode 100644 index 00000000..bb76db5b --- /dev/null +++ b/Skins/stellerino/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e72699e9d48e5e3689f6622dfa55d94ac4e70773b03a332b849c5dde80b4803 +size 3730 diff --git a/Skins/stellerino/selection-mod-perfect.png b/Skins/stellerino/selection-mod-perfect.png new file mode 100644 index 00000000..95e17f27 --- /dev/null +++ b/Skins/stellerino/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1e768f1bf642479e9b670c577bed2838b5b2c592cb563be9f620f86d5bdf8e +size 2934 diff --git a/Skins/stellerino/selection-mod-relax.png b/Skins/stellerino/selection-mod-relax.png new file mode 100644 index 00000000..ff1e53d5 --- /dev/null +++ b/Skins/stellerino/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892cef8ac4f08cf090b301d14de124cb99811347e9bae7a0ef797ae2bdd69e57 +size 2397 diff --git a/Skins/stellerino/selection-mod-relax2.png b/Skins/stellerino/selection-mod-relax2.png new file mode 100644 index 00000000..94f44f84 --- /dev/null +++ b/Skins/stellerino/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fb7bdf64c4918640cedb67fe93669e1f8d01d0fd95383db439d8dce3172a6c +size 2791 diff --git a/Skins/stellerino/selection-mod-scorev2.png b/Skins/stellerino/selection-mod-scorev2.png new file mode 100644 index 00000000..5fb7d72e --- /dev/null +++ b/Skins/stellerino/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78da2652d31fa695333632fd2152c5d4199b7656d8ceed575c59e076bf4aec0 +size 1565 diff --git a/Skins/stellerino/selection-mod-spunout.png b/Skins/stellerino/selection-mod-spunout.png new file mode 100644 index 00000000..e9e448f3 --- /dev/null +++ b/Skins/stellerino/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53161f9b4433772e9800ee3637e74dc2d359e4264cdfadc25c1f9b02b5c6dad +size 3056 diff --git a/Skins/stellerino/selection-mod-suddendeath.png b/Skins/stellerino/selection-mod-suddendeath.png new file mode 100644 index 00000000..a8565384 --- /dev/null +++ b/Skins/stellerino/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8509e3e45e81ccaed5caaed52a7a38906403899940e8aed7097a17277bc62301 +size 3391 diff --git a/Skins/stellerino/selection-mod-target.png b/Skins/stellerino/selection-mod-target.png new file mode 100644 index 00000000..699a6eb3 --- /dev/null +++ b/Skins/stellerino/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46994709cb41c22b7b2d7deeea0e79395b6d211546a81e7c1d76f0e2b576eae +size 3977 diff --git a/Skins/stellerino/selection-mode-over.png b/Skins/stellerino/selection-mode-over.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/selection-mode.png b/Skins/stellerino/selection-mode.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/stellerino/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/stellerino/selection-mods-over.png b/Skins/stellerino/selection-mods-over.png new file mode 100644 index 00000000..86a23978 --- /dev/null +++ b/Skins/stellerino/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a48e9284425351164421779bbb644b98975b019ea8557b01607ad6d0f5e5900 +size 111 diff --git a/Skins/stellerino/selection-mods.png b/Skins/stellerino/selection-mods.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/selection-options-over.png b/Skins/stellerino/selection-options-over.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/selection-options.png b/Skins/stellerino/selection-options.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/selection-random-over.png b/Skins/stellerino/selection-random-over.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/selection-random.png b/Skins/stellerino/selection-random.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/selection-tab.png b/Skins/stellerino/selection-tab.png new file mode 100644 index 00000000..40b18722 --- /dev/null +++ b/Skins/stellerino/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1ad4fcf7de4a4d07c8a71c13b6a10da0af704273c3d8c57d2ad7d1d001c26f +size 102 diff --git a/Skins/stellerino/skin.ini b/Skins/stellerino/skin.ini new file mode 100644 index 00000000..78b81bfa --- /dev/null +++ b/Skins/stellerino/skin.ini @@ -0,0 +1,25 @@ +// skin.ini generated by osu! skin mixer v2.8.6 + +[General] +Name: stellerino +Author: stellasu +Version: 2.2 +HitCircleOverlayAboveNumber: 1 +SliderBallFlip: 0 +CursorCentre: 1 +CursorExpand: 1 +CursorRotate: 0 + +[Colours] +SliderBorder: 80,80,80 +SliderTrackOverride: 0,0,0 +InputOverlayText: 255,255,255 +Combo1: 169,254,246 +Combo2: 221,237,232 +Combo3: 144,206,225 + +[Fonts] +HitCirclePrefix: default +ScorePrefix: score +ScoreOverlap: 3 +HitCircleOverlap: 10 diff --git a/Skins/stellerino/sliderb@2x.png b/Skins/stellerino/sliderb@2x.png new file mode 100644 index 00000000..e821f49e --- /dev/null +++ b/Skins/stellerino/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40fd6d130b2d2c27859e06ab7be428c451253eb54c8ed7bd6a88522ee5784bd6 +size 3201 diff --git a/Skins/stellerino/sliderendcircle.png b/Skins/stellerino/sliderendcircle.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/stellerino/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/stellerino/sliderfollowcircle.png b/Skins/stellerino/sliderfollowcircle.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/sliderfollowcircle@2x.png b/Skins/stellerino/sliderfollowcircle@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/sliderpoint10.png b/Skins/stellerino/sliderpoint10.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/sliderpoint30.png b/Skins/stellerino/sliderpoint30.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/sliderscorepoint.png b/Skins/stellerino/sliderscorepoint.png new file mode 100644 index 00000000..7f137ffa --- /dev/null +++ b/Skins/stellerino/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bbc1d6de2c581c84274b5157b585abca51b23b8a11be66e49b7e09557a1914 +size 3547 diff --git a/Skins/stellerino/soft-hitclap.mp3 b/Skins/stellerino/soft-hitclap.mp3 new file mode 100644 index 00000000..43920c1c --- /dev/null +++ b/Skins/stellerino/soft-hitclap.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb2c93d169fda3649b498509ab15ac3a54a7d6c2c06672230413fc07b7fc6c0 +size 1448 diff --git a/Skins/stellerino/soft-hitfinish.mp3 b/Skins/stellerino/soft-hitfinish.mp3 new file mode 100644 index 00000000..708cc818 --- /dev/null +++ b/Skins/stellerino/soft-hitfinish.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9745187e9babf483bd2464a4634d70393c90a516399939b3ad5e8eb1ca543741 +size 3801 diff --git a/Skins/stellerino/soft-hitnormal.mp3 b/Skins/stellerino/soft-hitnormal.mp3 new file mode 100644 index 00000000..c72e5b9a --- /dev/null +++ b/Skins/stellerino/soft-hitnormal.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df34351f163491466302b19159bb7665f9eca9cc3bd8d2be75dc5ef01a0b93d8 +size 4583 diff --git a/Skins/stellerino/soft-hitwhistle.mp3 b/Skins/stellerino/soft-hitwhistle.mp3 new file mode 100644 index 00000000..6bf2b6ce --- /dev/null +++ b/Skins/stellerino/soft-hitwhistle.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa9c8282ba7ffcc8bd5ba79b764755d9b8d8a1740a4b5c7ec968160b1f4f99c +size 2828 diff --git a/Skins/stellerino/songselect-bottom@2x.png b/Skins/stellerino/songselect-bottom@2x.png new file mode 100644 index 00000000..2fc3fb97 --- /dev/null +++ b/Skins/stellerino/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788521cd185ed07c260d96d5edb85c0130182077b4e090e86e4ee6305156bb9f +size 4619 diff --git a/Skins/stellerino/songselect-top.png b/Skins/stellerino/songselect-top.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/songselect-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/songselect-top@2x.png b/Skins/stellerino/songselect-top@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/songselect-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-approachcircle.png b/Skins/stellerino/spinner-approachcircle.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-background.png b/Skins/stellerino/spinner-background.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-bottom.png b/Skins/stellerino/spinner-bottom.png new file mode 100644 index 00000000..089af424 --- /dev/null +++ b/Skins/stellerino/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c1ba046d6d8afeedec6985c8a3be678fb0aed18af508c0300bc7e9736344ae +size 708 diff --git a/Skins/stellerino/spinner-circle.png b/Skins/stellerino/spinner-circle.png new file mode 100644 index 00000000..4ae3c7ab --- /dev/null +++ b/Skins/stellerino/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c36ad7bb19cec7770628fbd582dadac0f6e6c77356ab8b4ac871b9d553fe93e +size 8816 diff --git a/Skins/stellerino/spinner-circle@2x.png b/Skins/stellerino/spinner-circle@2x.png new file mode 100644 index 00000000..bd164dbd --- /dev/null +++ b/Skins/stellerino/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7f914f881d78d2399a822b43c6dd7c75141537a2efbea8d4b3a58b3c456620 +size 19376 diff --git a/Skins/stellerino/spinner-clear.png b/Skins/stellerino/spinner-clear.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-glow.png b/Skins/stellerino/spinner-glow.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-metre.png b/Skins/stellerino/spinner-metre.png new file mode 100644 index 00000000..96d0e81f --- /dev/null +++ b/Skins/stellerino/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4afb97f486e3877276916d716dd40c628335df3f8171d36a64e6f5a46b4f384d +size 57511 diff --git a/Skins/stellerino/spinner-middle.png b/Skins/stellerino/spinner-middle.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-middle2.png b/Skins/stellerino/spinner-middle2.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-osu.png b/Skins/stellerino/spinner-osu.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-rpm.png b/Skins/stellerino/spinner-rpm.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-spin.png b/Skins/stellerino/spinner-spin.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/spinner-top.png b/Skins/stellerino/spinner-top.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/star.png b/Skins/stellerino/star.png new file mode 100644 index 00000000..56a7de50 --- /dev/null +++ b/Skins/stellerino/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdf73b58b843255ecb0013df70da0fd9b31061d9849811ccf57b165f9680352 +size 1047 diff --git a/Skins/stellerino/star2.png b/Skins/stellerino/star2.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/star2@2x.png b/Skins/stellerino/star2@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/stellerino/star2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/stellerino/whoosh.mp3 b/Skins/stellerino/whoosh.mp3 new file mode 100644 index 00000000..ee8cdf47 --- /dev/null +++ b/Skins/stellerino/whoosh.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b67f582b648dbb5eb7d5d8d2ab6ab7d67f3f962387609fcf112c15fa96382e +size 252 diff --git a/Skins/summer pockets (pink)/Ranking-title.png b/Skins/summer pockets (pink)/Ranking-title.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/Ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/SectionPass.ogg b/Skins/summer pockets (pink)/SectionPass.ogg new file mode 100644 index 00000000..52eb0367 --- /dev/null +++ b/Skins/summer pockets (pink)/SectionPass.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:268d4ac758d136465e7b0a765443d1583c3a7c52895b5500f759da588931f347 +size 12343 diff --git a/Skins/summer pockets (pink)/applause.mp3 b/Skins/summer pockets (pink)/applause.mp3 new file mode 100644 index 00000000..e4da82c8 --- /dev/null +++ b/Skins/summer pockets (pink)/applause.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da153291c30388e9e141b7e9518aecc450dc6810cb5216bbc87b29b40ce2b981 +size 4086090 diff --git a/Skins/summer pockets (pink)/approachcircle.png b/Skins/summer pockets (pink)/approachcircle.png new file mode 100644 index 00000000..8d7ca8db --- /dev/null +++ b/Skins/summer pockets (pink)/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d435ccbd1c44abab9d9b94ed850f80476d1bfc509b89031c8c94ae0edc4611c +size 14700 diff --git a/Skins/summer pockets (pink)/approachcircle@2x.png b/Skins/summer pockets (pink)/approachcircle@2x.png new file mode 100644 index 00000000..f6a0c7cf --- /dev/null +++ b/Skins/summer pockets (pink)/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95e11fbf44cc4752a2230856a7468f6668febb565924bf6aced0abd28222b78 +size 33289 diff --git a/Skins/summer pockets (pink)/button-left.png b/Skins/summer pockets (pink)/button-left.png new file mode 100644 index 00000000..f13ebca5 --- /dev/null +++ b/Skins/summer pockets (pink)/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1eacfc0e7aba372a544bc469aff762d8ed6e1a17c273e4ef504948c0e76e3c +size 84 diff --git a/Skins/summer pockets (pink)/button-middle.png b/Skins/summer pockets (pink)/button-middle.png new file mode 100644 index 00000000..6b9cdb44 --- /dev/null +++ b/Skins/summer pockets (pink)/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f18cf9a60d6531b7a13347059686b12b143b6024d1690a2406ca2e162e9a4b3 +size 91 diff --git a/Skins/summer pockets (pink)/button-right.png b/Skins/summer pockets (pink)/button-right.png new file mode 100644 index 00000000..f13ebca5 --- /dev/null +++ b/Skins/summer pockets (pink)/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1eacfc0e7aba372a544bc469aff762d8ed6e1a17c273e4ef504948c0e76e3c +size 84 diff --git a/Skins/summer pockets (pink)/check-off.ogg b/Skins/summer pockets (pink)/check-off.ogg new file mode 100644 index 00000000..2c575c58 --- /dev/null +++ b/Skins/summer pockets (pink)/check-off.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d3b4797ed9e4953a64b6dffea43b8758f1d5c32faa0d3ab43e2e9739e5e439 +size 15158 diff --git a/Skins/summer pockets (pink)/check-on.ogg b/Skins/summer pockets (pink)/check-on.ogg new file mode 100644 index 00000000..dd5fc17a --- /dev/null +++ b/Skins/summer pockets (pink)/check-on.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc3d2c4ff7334c1c665f947e02658cd1e97356c5072fc2173c8555061baf262 +size 7275 diff --git a/Skins/summer pockets (pink)/click-short-confirm.ogg b/Skins/summer pockets (pink)/click-short-confirm.ogg new file mode 100644 index 00000000..816e4dc1 --- /dev/null +++ b/Skins/summer pockets (pink)/click-short-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835c11147c8c1aac742807a07cdcc2754ca15770426ef3daa68513e710919619 +size 7362 diff --git a/Skins/summer pockets (pink)/click-short.ogg b/Skins/summer pockets (pink)/click-short.ogg new file mode 100644 index 00000000..79ed183a --- /dev/null +++ b/Skins/summer pockets (pink)/click-short.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd57b43a27aec9aaf259b478d3ea7899a59fbdabcde69798fc38e015be1fc74 +size 5389 diff --git a/Skins/summer pockets (pink)/count1.png b/Skins/summer pockets (pink)/count1.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/count1s.ogg b/Skins/summer pockets (pink)/count1s.ogg new file mode 100644 index 00000000..0e189ee7 --- /dev/null +++ b/Skins/summer pockets (pink)/count1s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6650bf2a6b465ca8ca38a971be1cc96dec6e62a66645457392670abdc25ff7 +size 4624 diff --git a/Skins/summer pockets (pink)/count2.png b/Skins/summer pockets (pink)/count2.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/count2s.ogg b/Skins/summer pockets (pink)/count2s.ogg new file mode 100644 index 00000000..5c801f6f --- /dev/null +++ b/Skins/summer pockets (pink)/count2s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f11530c9f8c969cd7f72d9bc3505a771696a399455697d9597d2271ced357a53 +size 4624 diff --git a/Skins/summer pockets (pink)/count3.png b/Skins/summer pockets (pink)/count3.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/count3s.ogg b/Skins/summer pockets (pink)/count3s.ogg new file mode 100644 index 00000000..a190226a --- /dev/null +++ b/Skins/summer pockets (pink)/count3s.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7975505298fdfe3e785f268ccfce95d6df4f9a78b8402406db0450f8920054b2 +size 4624 diff --git a/Skins/summer pockets (pink)/cursor@2x.png b/Skins/summer pockets (pink)/cursor@2x.png new file mode 100644 index 00000000..65ef35ee --- /dev/null +++ b/Skins/summer pockets (pink)/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3234f9d03cacdadfed9fbbc4b01923694887615ee545eefe49977dcd1a93bb18 +size 29630 diff --git a/Skins/summer pockets (pink)/cursortrail.png b/Skins/summer pockets (pink)/cursortrail.png new file mode 100644 index 00000000..2aa9756c --- /dev/null +++ b/Skins/summer pockets (pink)/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b49ad43bc70234d0ca5e58d93b729652a1deac8bc7a31abaf528b322236b626 +size 19154 diff --git a/Skins/summer pockets (pink)/default-0.png b/Skins/summer pockets (pink)/default-0.png new file mode 100644 index 00000000..245214f3 --- /dev/null +++ b/Skins/summer pockets (pink)/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429f471392205df180b13aad4cfa568f1fd053354cd69f554f5671aac643f40e +size 3542 diff --git a/Skins/summer pockets (pink)/default-0@2x.png b/Skins/summer pockets (pink)/default-0@2x.png new file mode 100644 index 00000000..fa1f72b2 --- /dev/null +++ b/Skins/summer pockets (pink)/default-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:443d35d487e9a6acc0e39f7c6aa864b340ad8a1ec55197e8221abe75307014ec +size 6374 diff --git a/Skins/summer pockets (pink)/default-1.png b/Skins/summer pockets (pink)/default-1.png new file mode 100644 index 00000000..8f0e1974 --- /dev/null +++ b/Skins/summer pockets (pink)/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa40d4ae223aff456c223810b833b5aeb103d91ed8e8581d8dbe6baf2a986f2 +size 1687 diff --git a/Skins/summer pockets (pink)/default-1@2x.png b/Skins/summer pockets (pink)/default-1@2x.png new file mode 100644 index 00000000..e54d590e --- /dev/null +++ b/Skins/summer pockets (pink)/default-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4bcfb91bfe29c5da932a0f274c9aed47545dd280214bb865660406176e8e356 +size 3289 diff --git a/Skins/summer pockets (pink)/default-2.png b/Skins/summer pockets (pink)/default-2.png new file mode 100644 index 00000000..33cdf3c8 --- /dev/null +++ b/Skins/summer pockets (pink)/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0353fab7e8926e8f9b19e997799c5520182283dae312a883c93bf8ae0cc9bedc +size 2714 diff --git a/Skins/summer pockets (pink)/default-2@2x.png b/Skins/summer pockets (pink)/default-2@2x.png new file mode 100644 index 00000000..af7f46ec --- /dev/null +++ b/Skins/summer pockets (pink)/default-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46fdb378b89d57ff09260c74530987a5302ece48e583a542590b4faf4e476c1 +size 5254 diff --git a/Skins/summer pockets (pink)/default-3.png b/Skins/summer pockets (pink)/default-3.png new file mode 100644 index 00000000..0b825f8a --- /dev/null +++ b/Skins/summer pockets (pink)/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4812813da160f12d0d324c904508f14c92def09144b4db3af2baeae3e4c033f7 +size 3048 diff --git a/Skins/summer pockets (pink)/default-3@2x.png b/Skins/summer pockets (pink)/default-3@2x.png new file mode 100644 index 00000000..e2c0fb86 --- /dev/null +++ b/Skins/summer pockets (pink)/default-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb1f775089e87fbd5e812bbe78502e2ea7761917184c9b0b7742c9fad6a803a +size 5522 diff --git a/Skins/summer pockets (pink)/default-4.png b/Skins/summer pockets (pink)/default-4.png new file mode 100644 index 00000000..8b74017f --- /dev/null +++ b/Skins/summer pockets (pink)/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd123c325716ee3630462b6b5ccdbaaf3a759839d78a9d2c87a24e888dff8935 +size 2271 diff --git a/Skins/summer pockets (pink)/default-4@2x.png b/Skins/summer pockets (pink)/default-4@2x.png new file mode 100644 index 00000000..51a6ccd9 --- /dev/null +++ b/Skins/summer pockets (pink)/default-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35cabd64a662bc94510670b58e8bca83e70b57030b3f9c68bcd59af68281c3f +size 4273 diff --git a/Skins/summer pockets (pink)/default-5.png b/Skins/summer pockets (pink)/default-5.png new file mode 100644 index 00000000..87051005 --- /dev/null +++ b/Skins/summer pockets (pink)/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad943ea2265fb299209df5ca32fdf83b462e0f9fb2f919c1dbfd1603345d244 +size 3081 diff --git a/Skins/summer pockets (pink)/default-5@2x.png b/Skins/summer pockets (pink)/default-5@2x.png new file mode 100644 index 00000000..401ae780 --- /dev/null +++ b/Skins/summer pockets (pink)/default-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90b3afefbe76dc5d877273744771fbecc58b8b83d4392d6c6e1b3515f70049d +size 5798 diff --git a/Skins/summer pockets (pink)/default-6.png b/Skins/summer pockets (pink)/default-6.png new file mode 100644 index 00000000..edd41423 --- /dev/null +++ b/Skins/summer pockets (pink)/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef286cb424065e2443de0d4e5c2eca652db2d93547dcad7068ef503a9fb4d5c +size 3103 diff --git a/Skins/summer pockets (pink)/default-6@2x.png b/Skins/summer pockets (pink)/default-6@2x.png new file mode 100644 index 00000000..82a50c93 --- /dev/null +++ b/Skins/summer pockets (pink)/default-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae8203f7c27823f5edbfcdced4314139d27e577a7c8af323b94c024872ff51e +size 5887 diff --git a/Skins/summer pockets (pink)/default-7.png b/Skins/summer pockets (pink)/default-7.png new file mode 100644 index 00000000..7df6c59d --- /dev/null +++ b/Skins/summer pockets (pink)/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9beddb27a99167844919347ccff6a1c2ff7e2a16268653bad2fe60dd441ce03f +size 2359 diff --git a/Skins/summer pockets (pink)/default-7@2x.png b/Skins/summer pockets (pink)/default-7@2x.png new file mode 100644 index 00000000..4be1ffde --- /dev/null +++ b/Skins/summer pockets (pink)/default-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a9d6473bd0a4c246b089c384c9c7286a68cf6a38f3c1ebcdbe5752a3fe6a6d +size 4529 diff --git a/Skins/summer pockets (pink)/default-8.png b/Skins/summer pockets (pink)/default-8.png new file mode 100644 index 00000000..16857a94 --- /dev/null +++ b/Skins/summer pockets (pink)/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc2f0938151fb769cc3b31fdb4c55f24b29421921e5baf15c80084d69c756db +size 3443 diff --git a/Skins/summer pockets (pink)/default-8@2x.png b/Skins/summer pockets (pink)/default-8@2x.png new file mode 100644 index 00000000..5b815066 --- /dev/null +++ b/Skins/summer pockets (pink)/default-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb6344c17d7d644d90fd047e182f7d4f308263d42a43a028d1d9d405d067b07 +size 6310 diff --git a/Skins/summer pockets (pink)/default-9.png b/Skins/summer pockets (pink)/default-9.png new file mode 100644 index 00000000..c628d35e --- /dev/null +++ b/Skins/summer pockets (pink)/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2183b5105729ecad55fe6df93b23a66eb4e7be69968873d6c647603723a9b81b +size 3136 diff --git a/Skins/summer pockets (pink)/default-9@2x.png b/Skins/summer pockets (pink)/default-9@2x.png new file mode 100644 index 00000000..759146ad --- /dev/null +++ b/Skins/summer pockets (pink)/default-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4550dd5056209d924cd6705fb0b5730aa622b8b4130652de35cb76a9baef3634 +size 5813 diff --git a/Skins/summer pockets (pink)/drum-hitclap.ogg b/Skins/summer pockets (pink)/drum-hitclap.ogg new file mode 100644 index 00000000..b0540174 --- /dev/null +++ b/Skins/summer pockets (pink)/drum-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0090d97ee26d03be66ab0965153fa3460d7c10d4787760f18e2f6a8b801f6c +size 4909 diff --git a/Skins/summer pockets (pink)/drum-hitclap.wav b/Skins/summer pockets (pink)/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/summer pockets (pink)/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/summer pockets (pink)/drum-hitfinish.ogg b/Skins/summer pockets (pink)/drum-hitfinish.ogg new file mode 100644 index 00000000..e708f36d --- /dev/null +++ b/Skins/summer pockets (pink)/drum-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd673a02d88be045ea44115c2b6f6769ec488b2d1937b7b1d14dad06ca48c262 +size 6846 diff --git a/Skins/summer pockets (pink)/drum-hitfinish.wav b/Skins/summer pockets (pink)/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/summer pockets (pink)/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/summer pockets (pink)/drum-hitnormal.ogg b/Skins/summer pockets (pink)/drum-hitnormal.ogg new file mode 100644 index 00000000..83778fda --- /dev/null +++ b/Skins/summer pockets (pink)/drum-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941c895c2b3d81cfe5c4b53c95457e1ce0684160602ee78fe9e0356aec557050 +size 7527 diff --git a/Skins/summer pockets (pink)/drum-hitnormal.wav b/Skins/summer pockets (pink)/drum-hitnormal.wav new file mode 100644 index 00000000..99c04672 --- /dev/null +++ b/Skins/summer pockets (pink)/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8486565ae510863dfe50f3b3935a4bcca9812be4ed9d77eee9e036f153e971ac +size 26084 diff --git a/Skins/summer pockets (pink)/drum-hitwhistle.ogg b/Skins/summer pockets (pink)/drum-hitwhistle.ogg new file mode 100644 index 00000000..0b853991 --- /dev/null +++ b/Skins/summer pockets (pink)/drum-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bae33fb90f5f4ebe449c02add71d2aba704d261b374aa0dc4823fb9cec6f87 +size 4426 diff --git a/Skins/summer pockets (pink)/drum-hitwhistle.wav b/Skins/summer pockets (pink)/drum-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/summer pockets (pink)/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/summer pockets (pink)/drum-sliderslide.ogg b/Skins/summer pockets (pink)/drum-sliderslide.ogg new file mode 100644 index 00000000..ca1afbde --- /dev/null +++ b/Skins/summer pockets (pink)/drum-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0e12d4a6358e8ba8f4ef6f8c15c095495bf177683e4d8afc6caa37ecfb55f6 +size 4426 diff --git a/Skins/summer pockets (pink)/drum-sliderslide.wav b/Skins/summer pockets (pink)/drum-sliderslide.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/summer pockets (pink)/drum-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/summer pockets (pink)/drum-slidertick.wav b/Skins/summer pockets (pink)/drum-slidertick.wav new file mode 100644 index 00000000..75b15832 --- /dev/null +++ b/Skins/summer pockets (pink)/drum-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca24651856ecbfcb63cafa9d1f5f17a410730ae09c64e19ea15aa9f910a2083 +size 48 diff --git a/Skins/summer pockets (pink)/drum-sliderwhistle.wav b/Skins/summer pockets (pink)/drum-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/summer pockets (pink)/drum-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/summer pockets (pink)/followpoint-0.png b/Skins/summer pockets (pink)/followpoint-0.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/summer pockets (pink)/followpoint-1.png b/Skins/summer pockets (pink)/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/summer pockets (pink)/followpoint-11.png b/Skins/summer pockets (pink)/followpoint-11.png new file mode 100644 index 00000000..ec985dee --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea75e968e9b4b683c21cb798dda06f17cbacfc7c555d56ddb50dc5beb6abd3 +size 180 diff --git a/Skins/summer pockets (pink)/followpoint-12.png b/Skins/summer pockets (pink)/followpoint-12.png new file mode 100644 index 00000000..cd5876d0 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3506ace15a07e6d8c9736bbf8dcdca469008e1f00629241f31e87f7433a5a8b8 +size 215 diff --git a/Skins/summer pockets (pink)/followpoint-13.png b/Skins/summer pockets (pink)/followpoint-13.png new file mode 100644 index 00000000..cfa646ea --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fdc81d6521ecfe527b3b1c5c76900929b0e25a8d1441e353f8b96f85490131 +size 216 diff --git a/Skins/summer pockets (pink)/followpoint-14.png b/Skins/summer pockets (pink)/followpoint-14.png new file mode 100644 index 00000000..4ce941b5 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a5227236e8805d05526f67a2cad69602d72abc352bfbc1a9010cb0513f6a0 +size 234 diff --git a/Skins/summer pockets (pink)/followpoint-15.png b/Skins/summer pockets (pink)/followpoint-15.png new file mode 100644 index 00000000..de11cd9e --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbb7ca722b2227cca868a82f3314781ee63edf47cb6c5222bc626ae660d2ad1 +size 213 diff --git a/Skins/summer pockets (pink)/followpoint-16.png b/Skins/summer pockets (pink)/followpoint-16.png new file mode 100644 index 00000000..4d46f51b --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e364e81f4b5a5a4a55b4c0e353f88ec24c7b57825d12e3c0769659db0ff1c +size 217 diff --git a/Skins/summer pockets (pink)/followpoint-17.png b/Skins/summer pockets (pink)/followpoint-17.png new file mode 100644 index 00000000..4e8f4df5 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a57ba62814c8edadd98af68e1f293224787a5f16fbdf77bb8a51365565f5e89 +size 198 diff --git a/Skins/summer pockets (pink)/followpoint-18.png b/Skins/summer pockets (pink)/followpoint-18.png new file mode 100644 index 00000000..dab1d6a2 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48125deeb33dd521ca403516f9a7dd9ed2e32aa76291a6ca06fc802bfd8222 +size 210 diff --git a/Skins/summer pockets (pink)/followpoint-19.png b/Skins/summer pockets (pink)/followpoint-19.png new file mode 100644 index 00000000..559b55f4 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0227a711bb304237e27c2cb01ea480ca432896c73a5afccf2f13116a7b4ae6fd +size 190 diff --git a/Skins/summer pockets (pink)/followpoint-2.png b/Skins/summer pockets (pink)/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/summer pockets (pink)/followpoint-20.png b/Skins/summer pockets (pink)/followpoint-20.png new file mode 100644 index 00000000..3e9eb721 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a697f38218491b05d7336d77029c305ba072f183bd243710cbac99861bf8967 +size 206 diff --git a/Skins/summer pockets (pink)/followpoint-21.png b/Skins/summer pockets (pink)/followpoint-21.png new file mode 100644 index 00000000..c70d5d63 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70754467c9105adfbb4446e0c44ca834d0cea4e4e5a7209442da2eaa2dc288b +size 193 diff --git a/Skins/summer pockets (pink)/followpoint-22.png b/Skins/summer pockets (pink)/followpoint-22.png new file mode 100644 index 00000000..135b16b8 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8044dd45221486780257c2e0965b266d9d989642e7285d466d5c5a53ff8f2c4f +size 191 diff --git a/Skins/summer pockets (pink)/followpoint-23.png b/Skins/summer pockets (pink)/followpoint-23.png new file mode 100644 index 00000000..7807fde8 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d1b8bbebac754e287d7c5e3aa58a64a51bf50514b3231c3c0f21ac2b12ffd +size 157 diff --git a/Skins/summer pockets (pink)/followpoint-3.png b/Skins/summer pockets (pink)/followpoint-3.png new file mode 100644 index 00000000..199ea8e3 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd90119d3def6c42da4da8db80672b7cd791ff63633bcfd9a476a092e6f67 +size 68 diff --git a/Skins/summer pockets (pink)/followpoint-4.png b/Skins/summer pockets (pink)/followpoint-4.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/summer pockets (pink)/followpoint-5.png b/Skins/summer pockets (pink)/followpoint-5.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/summer pockets (pink)/followpoint-6.png b/Skins/summer pockets (pink)/followpoint-6.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/summer pockets (pink)/followpoint-7.png b/Skins/summer pockets (pink)/followpoint-7.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/summer pockets (pink)/followpoint-8.png b/Skins/summer pockets (pink)/followpoint-8.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/summer pockets (pink)/followpoint-9.png b/Skins/summer pockets (pink)/followpoint-9.png new file mode 100644 index 00000000..9ae86450 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77014858ff864d2885449bf9bd2d6caa12601754f08ac6d5c593cf9389e39a9c +size 407 diff --git a/Skins/summer pockets (pink)/followpoint.png b/Skins/summer pockets (pink)/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/summer pockets (pink)/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/summer pockets (pink)/go.png b/Skins/summer pockets (pink)/go.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/gos.ogg b/Skins/summer pockets (pink)/gos.ogg new file mode 100644 index 00000000..1dfe2cd2 --- /dev/null +++ b/Skins/summer pockets (pink)/gos.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a6600fb9a9c1203646f257f65a82e1c0bec29bf701374bd8c9e44ebbaa8d8bd +size 4624 diff --git a/Skins/summer pockets (pink)/hit0-0.png b/Skins/summer pockets (pink)/hit0-0.png new file mode 100644 index 00000000..e9eba271 --- /dev/null +++ b/Skins/summer pockets (pink)/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:500a8b08dcced86d5f73e7c2b94c2df2a9c65dcd5c89598325ead17fd42729a2 +size 1014 diff --git a/Skins/summer pockets (pink)/hit0-0@2x.png b/Skins/summer pockets (pink)/hit0-0@2x.png new file mode 100644 index 00000000..65cab491 --- /dev/null +++ b/Skins/summer pockets (pink)/hit0-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:215ebafddd76997073e320148714cdc6d0b4d3faaa3634499e3e2ef60553951c +size 2523 diff --git a/Skins/summer pockets (pink)/hit0.png b/Skins/summer pockets (pink)/hit0.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/summer pockets (pink)/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/summer pockets (pink)/hit100.png b/Skins/summer pockets (pink)/hit100.png new file mode 100644 index 00000000..c8b9139e --- /dev/null +++ b/Skins/summer pockets (pink)/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f160d97b821e1f05beb4615a0f53b77a59feb85412abb046145f1c7666cb4503 +size 1976 diff --git a/Skins/summer pockets (pink)/hit100k-7.png b/Skins/summer pockets (pink)/hit100k-7.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/summer pockets (pink)/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/summer pockets (pink)/hit100k.png b/Skins/summer pockets (pink)/hit100k.png new file mode 100644 index 00000000..c8b9139e --- /dev/null +++ b/Skins/summer pockets (pink)/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f160d97b821e1f05beb4615a0f53b77a59feb85412abb046145f1c7666cb4503 +size 1976 diff --git a/Skins/summer pockets (pink)/hit300.png b/Skins/summer pockets (pink)/hit300.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/summer pockets (pink)/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/summer pockets (pink)/hit300g.png b/Skins/summer pockets (pink)/hit300g.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/summer pockets (pink)/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/summer pockets (pink)/hit300k.png b/Skins/summer pockets (pink)/hit300k.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/summer pockets (pink)/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/summer pockets (pink)/hit50.png b/Skins/summer pockets (pink)/hit50.png new file mode 100644 index 00000000..05aee506 --- /dev/null +++ b/Skins/summer pockets (pink)/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6702441082c0a60d5149e112fc662905b265b2552843ba2fc7071068f1060307 +size 1992 diff --git a/Skins/summer pockets (pink)/hitcircle.png b/Skins/summer pockets (pink)/hitcircle.png new file mode 100644 index 00000000..8d6d9877 --- /dev/null +++ b/Skins/summer pockets (pink)/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc62e3351b2da3459ddb3d64fef3e14215836b1e55cced9a65e6fc5f8b5146a +size 7716 diff --git a/Skins/summer pockets (pink)/hitcircleoverlay@2x.png b/Skins/summer pockets (pink)/hitcircleoverlay@2x.png new file mode 100644 index 00000000..c091ca92 --- /dev/null +++ b/Skins/summer pockets (pink)/hitcircleoverlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9389187c584e8ffe1cb3aaf27e85a7ef21f877fb13fb3f012f6037b2ec465e +size 12219 diff --git a/Skins/summer pockets (pink)/inputoverlay-background.png b/Skins/summer pockets (pink)/inputoverlay-background.png new file mode 100644 index 00000000..6d1a45ba --- /dev/null +++ b/Skins/summer pockets (pink)/inputoverlay-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300a14071fabb31c1345d0852d1c7c1b85f52821358183e365c64c905eb651a2 +size 1943 diff --git a/Skins/summer pockets (pink)/inputoverlay-key.png b/Skins/summer pockets (pink)/inputoverlay-key.png new file mode 100644 index 00000000..35c07d12 --- /dev/null +++ b/Skins/summer pockets (pink)/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f9387975dd973e0112d6c0b92e1709a39192d149cd9cc7463a8f2cbc49da7d +size 146 diff --git a/Skins/summer pockets (pink)/inputoverlay-key@2x.png b/Skins/summer pockets (pink)/inputoverlay-key@2x.png new file mode 100644 index 00000000..d3d99643 --- /dev/null +++ b/Skins/summer pockets (pink)/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48853e01edb17a4eeb1a3c2a009aa8935465f77f5ecc87463bb6b3f50709e4a +size 201 diff --git a/Skins/summer pockets (pink)/match-confirm.ogg b/Skins/summer pockets (pink)/match-confirm.ogg new file mode 100644 index 00000000..f5288e24 --- /dev/null +++ b/Skins/summer pockets (pink)/match-confirm.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d081eb06fb0b2afbb1e016de326e6c65b0346ff6e69cdd592918bead1345f529 +size 62097 diff --git a/Skins/summer pockets (pink)/match-join.ogg b/Skins/summer pockets (pink)/match-join.ogg new file mode 100644 index 00000000..a40eb5dd --- /dev/null +++ b/Skins/summer pockets (pink)/match-join.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c51d928b3e9926f18889c797cdbc15b2cf3c4cbe3f4604a8cf3aeb2a0db0bf +size 19146 diff --git a/Skins/summer pockets (pink)/match-leave.ogg b/Skins/summer pockets (pink)/match-leave.ogg new file mode 100644 index 00000000..061a0661 --- /dev/null +++ b/Skins/summer pockets (pink)/match-leave.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7dedd9641f0e14d8a9b2f82c1f9224711f8904c04a00ffc3cb1cc4f2ac0c14 +size 17868 diff --git a/Skins/summer pockets (pink)/match-notready.ogg b/Skins/summer pockets (pink)/match-notready.ogg new file mode 100644 index 00000000..3ce091c2 --- /dev/null +++ b/Skins/summer pockets (pink)/match-notready.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ffc86cd4133e2982290303944012bf9ef00548096924949011d9fac0f74ade2 +size 7248 diff --git a/Skins/summer pockets (pink)/match-ready.ogg b/Skins/summer pockets (pink)/match-ready.ogg new file mode 100644 index 00000000..8c2a0a1e --- /dev/null +++ b/Skins/summer pockets (pink)/match-ready.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2b6d13cca8e16a06c157b15df47f73713792c3f3e0dc3c531ca38ea7c6eafa +size 14126 diff --git a/Skins/summer pockets (pink)/match-start.ogg b/Skins/summer pockets (pink)/match-start.ogg new file mode 100644 index 00000000..9a38f4c5 --- /dev/null +++ b/Skins/summer pockets (pink)/match-start.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03727854e39230b91532c0327905edc4bdf22fed08d6052e6526dbdbec914c3 +size 12167 diff --git a/Skins/summer pockets (pink)/menu-back.png b/Skins/summer pockets (pink)/menu-back.png new file mode 100644 index 00000000..789d87d4 --- /dev/null +++ b/Skins/summer pockets (pink)/menu-back.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e81100f26a037617533fcadf4e41cd298712a4aacd620a2a0ecdfdf7524980 +size 113 diff --git a/Skins/summer pockets (pink)/menu-background.jpg b/Skins/summer pockets (pink)/menu-background.jpg new file mode 100644 index 00000000..e599a6dc --- /dev/null +++ b/Skins/summer pockets (pink)/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b08d0dd03574254801513676060872d524f431536c5ef2005e1e4c6e91bc99 +size 296038 diff --git a/Skins/summer pockets (pink)/menu-button-background.png b/Skins/summer pockets (pink)/menu-button-background.png new file mode 100644 index 00000000..f35de60f --- /dev/null +++ b/Skins/summer pockets (pink)/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03da62a58b5541822a8cc7a63e08c6a17ad596d1a2a214dabf404260a2a2d9bc +size 13892 diff --git a/Skins/summer pockets (pink)/menu-edit-click.ogg b/Skins/summer pockets (pink)/menu-edit-click.ogg new file mode 100644 index 00000000..ecc9af4e --- /dev/null +++ b/Skins/summer pockets (pink)/menu-edit-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5113651dbaa6c5e2cfe8fee9ec06a334613ca68699a9c82836231e1e904b7aeb +size 33754 diff --git a/Skins/summer pockets (pink)/menu-freeplay-click.ogg b/Skins/summer pockets (pink)/menu-freeplay-click.ogg new file mode 100644 index 00000000..3eabb40e --- /dev/null +++ b/Skins/summer pockets (pink)/menu-freeplay-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec456d72ea58621481237863ca3e9347c1a45f1c4f4f42fe60ae1b563d36ad3 +size 30132 diff --git a/Skins/summer pockets (pink)/menu-multiplayer-click.ogg b/Skins/summer pockets (pink)/menu-multiplayer-click.ogg new file mode 100644 index 00000000..cc09e1d3 --- /dev/null +++ b/Skins/summer pockets (pink)/menu-multiplayer-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a999e45e6b8bba915bbbf0d3064cd61a38848d96c59df5cbbbc802ef9934872 +size 56343 diff --git a/Skins/summer pockets (pink)/menu-options-click.ogg b/Skins/summer pockets (pink)/menu-options-click.ogg new file mode 100644 index 00000000..1ff630f1 --- /dev/null +++ b/Skins/summer pockets (pink)/menu-options-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce5d924ff0e2b71e81033c708ca8b8dcd43209ad98747c2574e07d35c76cb66 +size 6066 diff --git a/Skins/summer pockets (pink)/menu-snow.png b/Skins/summer pockets (pink)/menu-snow.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/menuback.ogg b/Skins/summer pockets (pink)/menuback.ogg new file mode 100644 index 00000000..4fcfb9cc --- /dev/null +++ b/Skins/summer pockets (pink)/menuback.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04906fe213be6562961574753b91a54849aa4c4e71dfb78ca0064640184b7d8c +size 8224 diff --git a/Skins/summer pockets (pink)/menuclick.ogg b/Skins/summer pockets (pink)/menuclick.ogg new file mode 100644 index 00000000..de9f4e75 --- /dev/null +++ b/Skins/summer pockets (pink)/menuclick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e467881edb5e5eaa64653395c802d8660afac756791879348b1df272bea805bb +size 5469 diff --git a/Skins/summer pockets (pink)/menuhit.ogg b/Skins/summer pockets (pink)/menuhit.ogg new file mode 100644 index 00000000..21d4747d --- /dev/null +++ b/Skins/summer pockets (pink)/menuhit.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f03212259b4421cf7d30d897db036fbfac2a321128a77c5220cfc10de3c97f7 +size 15712 diff --git a/Skins/summer pockets (pink)/mode-osu-small.png b/Skins/summer pockets (pink)/mode-osu-small.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/mode-osu-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/mode-osu-small@2x.png b/Skins/summer pockets (pink)/mode-osu-small@2x.png new file mode 100644 index 00000000..afcab4d5 --- /dev/null +++ b/Skins/summer pockets (pink)/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24deb6fa7a3ade007e617f2e83f045d920dcfdb674a97bc18b17f4602c90b4a +size 51613 diff --git a/Skins/summer pockets (pink)/mode-taiko-med.png b/Skins/summer pockets (pink)/mode-taiko-med.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/summer pockets (pink)/mode-taiko-med.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/summer pockets (pink)/mode-taiko-small.png b/Skins/summer pockets (pink)/mode-taiko-small.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/mode-taiko-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/mode-taiko.png b/Skins/summer pockets (pink)/mode-taiko.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/summer pockets (pink)/mode-taiko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/summer pockets (pink)/nightcore-clap.ogg b/Skins/summer pockets (pink)/nightcore-clap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/summer pockets (pink)/nightcore-clap.wav b/Skins/summer pockets (pink)/nightcore-clap.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/summer pockets (pink)/nightcore-finish.ogg b/Skins/summer pockets (pink)/nightcore-finish.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/summer pockets (pink)/nightcore-finish.wav b/Skins/summer pockets (pink)/nightcore-finish.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/summer pockets (pink)/nightcore-hat.ogg b/Skins/summer pockets (pink)/nightcore-hat.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/summer pockets (pink)/nightcore-hat.wav b/Skins/summer pockets (pink)/nightcore-hat.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/summer pockets (pink)/nightcore-kick.ogg b/Skins/summer pockets (pink)/nightcore-kick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/summer pockets (pink)/nightcore-kick.wav b/Skins/summer pockets (pink)/nightcore-kick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/summer pockets (pink)/normal-hitclap.ogg b/Skins/summer pockets (pink)/normal-hitclap.ogg new file mode 100644 index 00000000..ec0e3b04 --- /dev/null +++ b/Skins/summer pockets (pink)/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1049b6d14e749927b1507f3d12c1af3545f4b30a1313b385d1e72c4b8d98b204 +size 4426 diff --git a/Skins/summer pockets (pink)/normal-hitclap.wav b/Skins/summer pockets (pink)/normal-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/summer pockets (pink)/normal-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/summer pockets (pink)/normal-hitfinish.ogg b/Skins/summer pockets (pink)/normal-hitfinish.ogg new file mode 100644 index 00000000..8a3b29a6 --- /dev/null +++ b/Skins/summer pockets (pink)/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2779da6e866b9f7807f974fd02ed5a13f46f097be629284d079207378624f42f +size 7205 diff --git a/Skins/summer pockets (pink)/normal-hitfinish.wav b/Skins/summer pockets (pink)/normal-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/summer pockets (pink)/normal-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/summer pockets (pink)/normal-hitnormal.ogg b/Skins/summer pockets (pink)/normal-hitnormal.ogg new file mode 100644 index 00000000..caadf4b5 --- /dev/null +++ b/Skins/summer pockets (pink)/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736d1629d8fac0c4ba97bb0cb432a837c870f52bfb4f69d2fc99c09ce2bed246 +size 8106 diff --git a/Skins/summer pockets (pink)/normal-hitnormal.wav b/Skins/summer pockets (pink)/normal-hitnormal.wav new file mode 100644 index 00000000..b9a89269 --- /dev/null +++ b/Skins/summer pockets (pink)/normal-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f56e5ad20b2f123a8b467c58e8a649a7c4665c6ebf50aaa976619ebeacdc206 +size 26084 diff --git a/Skins/summer pockets (pink)/normal-hitwhistle.ogg b/Skins/summer pockets (pink)/normal-hitwhistle.ogg new file mode 100644 index 00000000..e57fa9c7 --- /dev/null +++ b/Skins/summer pockets (pink)/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656c4781427d993099d1cc092c2765cc61970cba3c1a4c8492d48d32bcf200fc +size 20498 diff --git a/Skins/summer pockets (pink)/normal-hitwhistle.wav b/Skins/summer pockets (pink)/normal-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/summer pockets (pink)/normal-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/summer pockets (pink)/normal-sliderslide.wav b/Skins/summer pockets (pink)/normal-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/summer pockets (pink)/normal-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/summer pockets (pink)/normal-slidertick.ogg b/Skins/summer pockets (pink)/normal-slidertick.ogg new file mode 100644 index 00000000..45fe02cc --- /dev/null +++ b/Skins/summer pockets (pink)/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9387191b2235dcfecfda8c8b0aecf648fda1cfe5a366eca69a43df141f4ee63 +size 6882 diff --git a/Skins/summer pockets (pink)/normal-slidertick.wav b/Skins/summer pockets (pink)/normal-slidertick.wav new file mode 100644 index 00000000..0b678f10 --- /dev/null +++ b/Skins/summer pockets (pink)/normal-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b9e60c1088b954dd6d6b657c682f7fabfabfe5bb47d8f5411eb9f0da2af45c +size 94284 diff --git a/Skins/summer pockets (pink)/normal-sliderwhistle.wav b/Skins/summer pockets (pink)/normal-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/summer pockets (pink)/normal-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/summer pockets (pink)/pause-back-click.ogg b/Skins/summer pockets (pink)/pause-back-click.ogg new file mode 100644 index 00000000..337e0b0f --- /dev/null +++ b/Skins/summer pockets (pink)/pause-back-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe3472dc7b0e12e6bfd06ff21f6127af7313254ddcaaee50394406700002755 +size 57458 diff --git a/Skins/summer pockets (pink)/pause-back@2x.png b/Skins/summer pockets (pink)/pause-back@2x.png new file mode 100644 index 00000000..0c6e1e3b --- /dev/null +++ b/Skins/summer pockets (pink)/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbdb6257dae36dd637434c7f05e94608b5eca0188cd4922889fee023a323bf17 +size 6467 diff --git a/Skins/summer pockets (pink)/pause-continue-click.ogg b/Skins/summer pockets (pink)/pause-continue-click.ogg new file mode 100644 index 00000000..0e932e39 --- /dev/null +++ b/Skins/summer pockets (pink)/pause-continue-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2829f317183ebba063b599a7a9d8fccf9f2fdd77bfa00908efcac0e6b7be2c1 +size 18710 diff --git a/Skins/summer pockets (pink)/pause-continue@2x.png b/Skins/summer pockets (pink)/pause-continue@2x.png new file mode 100644 index 00000000..6db80ff7 --- /dev/null +++ b/Skins/summer pockets (pink)/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab08a240ddd47dd471e7bf89f7510e73caf8498a7fa7f1359683f16d29079da +size 10340 diff --git a/Skins/summer pockets (pink)/pause-hover.ogg b/Skins/summer pockets (pink)/pause-hover.ogg new file mode 100644 index 00000000..0430d7c8 --- /dev/null +++ b/Skins/summer pockets (pink)/pause-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfd36e8a7aaf2d87204ddcda724db8e7fdf6215636e3af25a5ced6ceb1f4abe +size 8560 diff --git a/Skins/summer pockets (pink)/pause-loop.mp3 b/Skins/summer pockets (pink)/pause-loop.mp3 new file mode 100644 index 00000000..2de7ba60 --- /dev/null +++ b/Skins/summer pockets (pink)/pause-loop.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814bdc83cd600352afa8474672aa31238878491ee76b285518f8817e91a32ed5 +size 3023752 diff --git a/Skins/summer pockets (pink)/pause-replay.png b/Skins/summer pockets (pink)/pause-replay.png new file mode 100644 index 00000000..d853dd11 --- /dev/null +++ b/Skins/summer pockets (pink)/pause-replay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ad6808586ad1d2cf7cf01ce53238f73bc1d2634ddb81fe440b429bd8f8cde3 +size 11804 diff --git a/Skins/summer pockets (pink)/pause-retry-click.ogg b/Skins/summer pockets (pink)/pause-retry-click.ogg new file mode 100644 index 00000000..144a5110 --- /dev/null +++ b/Skins/summer pockets (pink)/pause-retry-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f919342c312427df75abf3d2b945201c5739671cb2af61d510a4a20a1f2db3c2 +size 57300 diff --git a/Skins/summer pockets (pink)/pause-retry@2x.png b/Skins/summer pockets (pink)/pause-retry@2x.png new file mode 100644 index 00000000..c9850606 --- /dev/null +++ b/Skins/summer pockets (pink)/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dd485daebb2fde40a162a6799f828f0dd8753e9bfd20ee63c5faff6fd842566 +size 7008 diff --git a/Skins/summer pockets (pink)/play-skip.png b/Skins/summer pockets (pink)/play-skip.png new file mode 100644 index 00000000..219a6127 --- /dev/null +++ b/Skins/summer pockets (pink)/play-skip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:569d5cffc02d0aff54f03d99e9bfb3f8acb4884c2f071979a7f7b27799ea5272 +size 10429 diff --git a/Skins/summer pockets (pink)/play-unranked.png b/Skins/summer pockets (pink)/play-unranked.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/play-warningarrow.png b/Skins/summer pockets (pink)/play-warningarrow.png new file mode 100644 index 00000000..df4f7cf0 --- /dev/null +++ b/Skins/summer pockets (pink)/play-warningarrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94f9bd533855d97da46773ad9b91cfddbec896514cdd4df27c2cd16fda115f5 +size 648 diff --git a/Skins/summer pockets (pink)/ranking-A-small.png b/Skins/summer pockets (pink)/ranking-A-small.png new file mode 100644 index 00000000..a005b24a --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-A-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcae39324135f81f5695a90a72146c4a5201bca793903838e514450e1d18741 +size 1645 diff --git a/Skins/summer pockets (pink)/ranking-A.png b/Skins/summer pockets (pink)/ranking-A.png new file mode 100644 index 00000000..83e70043 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de0d108a8370a2d949f7e0b8c1851c7178e5f36aaee1009064ab74e04aab8b8 +size 1108 diff --git a/Skins/summer pockets (pink)/ranking-B-small.png b/Skins/summer pockets (pink)/ranking-B-small.png new file mode 100644 index 00000000..b00b645b --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-B-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb088227a5e686219a5c4a03da8d5d8b73bb047bb080ab47c584e0a28160148 +size 1673 diff --git a/Skins/summer pockets (pink)/ranking-C-small.png b/Skins/summer pockets (pink)/ranking-C-small.png new file mode 100644 index 00000000..613f849c --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-C-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473cdc9b1175ce4817d4ee5105073f2e9361fa0ced9bb4852e5e4baddb250776 +size 1809 diff --git a/Skins/summer pockets (pink)/ranking-D-small.png b/Skins/summer pockets (pink)/ranking-D-small.png new file mode 100644 index 00000000..88eda505 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-D-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d302aab3e65849dff022d507ee32db6c11a4277a7ba31cd446ef97075ac13c3e +size 1781 diff --git a/Skins/summer pockets (pink)/ranking-S-small.png b/Skins/summer pockets (pink)/ranking-S-small.png new file mode 100644 index 00000000..16dd8d03 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-S-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff7d348183899fb02dd1395e4eaa0d44e1799a38e95073c9935773f1ea6d32a4 +size 1816 diff --git a/Skins/summer pockets (pink)/ranking-SH-small.png b/Skins/summer pockets (pink)/ranking-SH-small.png new file mode 100644 index 00000000..69b9e9b4 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-SH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2debc0f40b0efdbe50631439d61d5bb9f3d1ca74bbe36e9def56efc24d918dd2 +size 1735 diff --git a/Skins/summer pockets (pink)/ranking-X-small.png b/Skins/summer pockets (pink)/ranking-X-small.png new file mode 100644 index 00000000..c1bb2970 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-X-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7472c345a898f9e569456ee1cc4b8dcfc1c7869586b5f2acea9fbea993d5fc68 +size 1987 diff --git a/Skins/summer pockets (pink)/ranking-XH-small.png b/Skins/summer pockets (pink)/ranking-XH-small.png new file mode 100644 index 00000000..d5ef1ea9 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aff44ba5f4ff1cd5735bc11ff92ce844deeaa0002ff4ec04a9909511c75cf8e +size 1933 diff --git a/Skins/summer pockets (pink)/ranking-accuracy.png b/Skins/summer pockets (pink)/ranking-accuracy.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/ranking-b.png b/Skins/summer pockets (pink)/ranking-b.png new file mode 100644 index 00000000..2e741fbe --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8936e90f0b30beaa2fbb5ab961d0d6f91b6e76f867bf97d32a287546025aa5 +size 940 diff --git a/Skins/summer pockets (pink)/ranking-c.png b/Skins/summer pockets (pink)/ranking-c.png new file mode 100644 index 00000000..ddca672c --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcdeb33d787c4f6ec07812692e4b6fe333bd9d5e1177dfc46fbb9b72fb9bb7f8 +size 1216 diff --git a/Skins/summer pockets (pink)/ranking-d.png b/Skins/summer pockets (pink)/ranking-d.png new file mode 100644 index 00000000..28494664 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6999fc8923b7c8dfb5f2d98be2dda561f507e69414c46449f54a827303a57fb +size 819 diff --git a/Skins/summer pockets (pink)/ranking-graph.png b/Skins/summer pockets (pink)/ranking-graph.png new file mode 100644 index 00000000..9b3e8f6e --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae059a26e499a357ee99658c75d30a830261ab8c8f4f91b3599b10d918dae90f +size 113 diff --git a/Skins/summer pockets (pink)/ranking-maxcombo.png b/Skins/summer pockets (pink)/ranking-maxcombo.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/ranking-panel@2x.png b/Skins/summer pockets (pink)/ranking-panel@2x.png new file mode 100644 index 00000000..dae7f16d --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-panel@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f973eb5e00717b1af49855913a23bc56cf363ad0b87a360168b41ba9aab45e +size 578021 diff --git a/Skins/summer pockets (pink)/ranking-perfect.png b/Skins/summer pockets (pink)/ranking-perfect.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/ranking-s.png b/Skins/summer pockets (pink)/ranking-s.png new file mode 100644 index 00000000..50616892 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-s.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ae0eef261c9e450e228488402b0e34707171034b36cbe3c16e7175836bcc00 +size 1323 diff --git a/Skins/summer pockets (pink)/ranking-winner.png b/Skins/summer pockets (pink)/ranking-winner.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-winner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/ranking-x.png b/Skins/summer pockets (pink)/ranking-x.png new file mode 100644 index 00000000..9c6cc815 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d168ff923a25fa98886917b58270b50fa28254d10884e1c2d651a8378d55b2cc +size 1104 diff --git a/Skins/summer pockets (pink)/ranking-xh.png b/Skins/summer pockets (pink)/ranking-xh.png new file mode 100644 index 00000000..9c6cc815 --- /dev/null +++ b/Skins/summer pockets (pink)/ranking-xh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d168ff923a25fa98886917b58270b50fa28254d10884e1c2d651a8378d55b2cc +size 1104 diff --git a/Skins/summer pockets (pink)/ready.png b/Skins/summer pockets (pink)/ready.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/readys.ogg b/Skins/summer pockets (pink)/readys.ogg new file mode 100644 index 00000000..84342ec0 --- /dev/null +++ b/Skins/summer pockets (pink)/readys.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3fd443f3105122e5e2e6066b89bee2dda8086ef78f5d80d942cb41548c292e7 +size 6292 diff --git a/Skins/summer pockets (pink)/reversearrow@2x - Copy.png b/Skins/summer pockets (pink)/reversearrow@2x - Copy.png new file mode 100644 index 00000000..6b20f724 --- /dev/null +++ b/Skins/summer pockets (pink)/reversearrow@2x - Copy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:391add410bcf197d7cfb48bf4a40147d3cbe12c44870c0eadcf5b47c607198ad +size 36056 diff --git a/Skins/summer pockets (pink)/reversearrow@2x.png b/Skins/summer pockets (pink)/reversearrow@2x.png new file mode 100644 index 00000000..6b20f724 --- /dev/null +++ b/Skins/summer pockets (pink)/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:391add410bcf197d7cfb48bf4a40147d3cbe12c44870c0eadcf5b47c607198ad +size 36056 diff --git a/Skins/summer pockets (pink)/score-0@2x.png b/Skins/summer pockets (pink)/score-0@2x.png new file mode 100644 index 00000000..35be59d5 --- /dev/null +++ b/Skins/summer pockets (pink)/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70251d56f8ab95fac0832bd2a83faf3470591f316a8d7ca995fd97eeafda5e2 +size 2631 diff --git a/Skins/summer pockets (pink)/score-1@2x.png b/Skins/summer pockets (pink)/score-1@2x.png new file mode 100644 index 00000000..11cb1723 --- /dev/null +++ b/Skins/summer pockets (pink)/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec7a0e91f414743ac026cc262d9f6b3f5bef7e78e0c9dec1aaea5f997f46fcc +size 1993 diff --git a/Skins/summer pockets (pink)/score-2@2x.png b/Skins/summer pockets (pink)/score-2@2x.png new file mode 100644 index 00000000..c1f2bb63 --- /dev/null +++ b/Skins/summer pockets (pink)/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9100d42e0ae2af9b57ad5071b7c38573419028568afddee7f8940e3c3362aa +size 2404 diff --git a/Skins/summer pockets (pink)/score-3@2x.png b/Skins/summer pockets (pink)/score-3@2x.png new file mode 100644 index 00000000..0af0ea5a --- /dev/null +++ b/Skins/summer pockets (pink)/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c696fa6fe60798fd5f958c722d72c35c4461f4241ba7cf5f669b75d74044baae +size 2356 diff --git a/Skins/summer pockets (pink)/score-4@2x.png b/Skins/summer pockets (pink)/score-4@2x.png new file mode 100644 index 00000000..25184dc7 --- /dev/null +++ b/Skins/summer pockets (pink)/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ec88b59e4c820126816b491c33df6a6821cd1ff95a5172d341454c7b535f73 +size 2323 diff --git a/Skins/summer pockets (pink)/score-5@2x.png b/Skins/summer pockets (pink)/score-5@2x.png new file mode 100644 index 00000000..1e1c75e1 --- /dev/null +++ b/Skins/summer pockets (pink)/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334b49368a37bf886ff1b3cf1bf115c44996a11a0f977986047d6f4c0041eacb +size 2331 diff --git a/Skins/summer pockets (pink)/score-6@2x.png b/Skins/summer pockets (pink)/score-6@2x.png new file mode 100644 index 00000000..4727a526 --- /dev/null +++ b/Skins/summer pockets (pink)/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e06c2eae9e8099a5728185ec2e8935a5553cb8a5d715a2da6df4f508f9c378d +size 2499 diff --git a/Skins/summer pockets (pink)/score-7@2x.png b/Skins/summer pockets (pink)/score-7@2x.png new file mode 100644 index 00000000..fb06b670 --- /dev/null +++ b/Skins/summer pockets (pink)/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e257bdcb27e5301cd57bafe61832dcb71495d5b6f20b7419e5d506ef1e082e +size 1969 diff --git a/Skins/summer pockets (pink)/score-8@2x.png b/Skins/summer pockets (pink)/score-8@2x.png new file mode 100644 index 00000000..ce3a6242 --- /dev/null +++ b/Skins/summer pockets (pink)/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379ff61da1468cff2feb184c616a4ab7541c0965a8e5f453162b96e6f67f3fe7 +size 2598 diff --git a/Skins/summer pockets (pink)/score-9@2x.png b/Skins/summer pockets (pink)/score-9@2x.png new file mode 100644 index 00000000..bcd51245 --- /dev/null +++ b/Skins/summer pockets (pink)/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd20bfb2e12d8875477a8cb2a99c8842852280680ddb60d0d8b3b1231b789d8e +size 2506 diff --git a/Skins/summer pockets (pink)/score-comma@2x.png b/Skins/summer pockets (pink)/score-comma@2x.png new file mode 100644 index 00000000..56336099 --- /dev/null +++ b/Skins/summer pockets (pink)/score-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e5d209f43186fea4467d8649b270f658e155f2f0710052e0c88dda2e221ab8 +size 623 diff --git a/Skins/summer pockets (pink)/score-dot@2x.png b/Skins/summer pockets (pink)/score-dot@2x.png new file mode 100644 index 00000000..d2ac189b --- /dev/null +++ b/Skins/summer pockets (pink)/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd263a5880c070ab50d4b31ba3e83d7b1e0cf481b51887d41fa6bbe8ed69763a +size 570 diff --git a/Skins/summer pockets (pink)/score-percent.png b/Skins/summer pockets (pink)/score-percent.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/score-percent@2xx.png b/Skins/summer pockets (pink)/score-percent@2xx.png new file mode 100644 index 00000000..b979620e --- /dev/null +++ b/Skins/summer pockets (pink)/score-percent@2xx.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08a877e31514855a698bd0ace2a1d2e0dc19aaf65bdd0ab78d20d02030a30ed +size 2502 diff --git a/Skins/summer pockets (pink)/score-x.png b/Skins/summer pockets (pink)/score-x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/score-x@2xx.png b/Skins/summer pockets (pink)/score-x@2xx.png new file mode 100644 index 00000000..7653356d --- /dev/null +++ b/Skins/summer pockets (pink)/score-x@2xx.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82e0e834b103c60e9a4a6441d8e155955a55d31ff1234b13a3dfa14c66b5fdd0 +size 2005 diff --git a/Skins/summer pockets (pink)/scorebar-bg .png b/Skins/summer pockets (pink)/scorebar-bg .png new file mode 100644 index 00000000..678fb0a1 --- /dev/null +++ b/Skins/summer pockets (pink)/scorebar-bg .png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff313708c1ae1ca392bf995e7f89d489636f6e2c106db3bb80bfd51904077a9 +size 148 diff --git a/Skins/summer pockets (pink)/scorebar-bg@2x.png b/Skins/summer pockets (pink)/scorebar-bg@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/scorebar-bg@2xjkhjk.png b/Skins/summer pockets (pink)/scorebar-bg@2xjkhjk.png new file mode 100644 index 00000000..f44323ae --- /dev/null +++ b/Skins/summer pockets (pink)/scorebar-bg@2xjkhjk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7cbdb2e13725501073a15dbe83799f1c20a3ca8520e1626c5069bd526e6f0b +size 388326 diff --git a/Skins/summer pockets (pink)/scorebar-bgg.png b/Skins/summer pockets (pink)/scorebar-bgg.png new file mode 100644 index 00000000..cec86825 --- /dev/null +++ b/Skins/summer pockets (pink)/scorebar-bgg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61cb9b6219fa51d8b81513d733d32d57993eb98e4ef1cbd252c03644cfcdc54 +size 51096 diff --git a/Skins/summer pockets (pink)/scorebar-bgjkhjk.png b/Skins/summer pockets (pink)/scorebar-bgjkhjk.png new file mode 100644 index 00000000..97b15073 --- /dev/null +++ b/Skins/summer pockets (pink)/scorebar-bgjkhjk.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54a601db11d72d7866c8711c20a2a96397bdac60c33c44d877abb042a701251 +size 168901 diff --git a/Skins/summer pockets (pink)/scorebar-cologr-0.png b/Skins/summer pockets (pink)/scorebar-cologr-0.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/scorebar-cologr-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/scorebar-color.png b/Skins/summer pockets (pink)/scorebar-color.png new file mode 100644 index 00000000..2b67bc2e --- /dev/null +++ b/Skins/summer pockets (pink)/scorebar-color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ef318d96b5d0d0ceba6e04a4e622b1158335cdc67c49e27839132c6f655058 +size 68 diff --git a/Skins/summer pockets (pink)/scorebar-colour@2x.png b/Skins/summer pockets (pink)/scorebar-colour@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/sectionfail.ogg b/Skins/summer pockets (pink)/sectionfail.ogg new file mode 100644 index 00000000..37e5c507 --- /dev/null +++ b/Skins/summer pockets (pink)/sectionfail.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6049dcae32a9869cab4081597f94702bc69040d1f7f8066657a2d1093bf938ea +size 23192 diff --git a/Skins/summer pockets (pink)/seeya.ogg b/Skins/summer pockets (pink)/seeya.ogg new file mode 100644 index 00000000..f05638cf --- /dev/null +++ b/Skins/summer pockets (pink)/seeya.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6561bfdfc4aaec17ab4ec444b73a8ff8f8906f5e75e83d2e1e68b91efd9253bb +size 33920 diff --git a/Skins/summer pockets (pink)/select-difficulty.ogg b/Skins/summer pockets (pink)/select-difficulty.ogg new file mode 100644 index 00000000..94d371b1 --- /dev/null +++ b/Skins/summer pockets (pink)/select-difficulty.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5eb7fec367127b28590b16c3c16744f51c284bc2fc6b9d73c24fa74b02e6b6 +size 9449 diff --git a/Skins/summer pockets (pink)/select-expand.ogg b/Skins/summer pockets (pink)/select-expand.ogg new file mode 100644 index 00000000..256b2c48 --- /dev/null +++ b/Skins/summer pockets (pink)/select-expand.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6678ef743737e0dbdd5463f7d534e4aec68b46ce484d01024171a46aa2693488 +size 7072 diff --git a/Skins/summer pockets (pink)/selection-mod-autoplay.png b/Skins/summer pockets (pink)/selection-mod-autoplay.png new file mode 100644 index 00000000..86bb9e50 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b900e6201538c11f1394c9462f5c7b53e14e721b09c9ffec0be778673f4b28f1 +size 2518 diff --git a/Skins/summer pockets (pink)/selection-mod-cinema.png b/Skins/summer pockets (pink)/selection-mod-cinema.png new file mode 100644 index 00000000..aed5adec --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-cinema.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa47dc66ac55686411888d33576b2a9aa71f05158587221d926d8a76a862b5a +size 3798 diff --git a/Skins/summer pockets (pink)/selection-mod-doubletime.png b/Skins/summer pockets (pink)/selection-mod-doubletime.png new file mode 100644 index 00000000..74d22086 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9c8c00ceab5d5d0e31802d82784fea46e7665d91aecf309b6d931263e4922c +size 3331 diff --git a/Skins/summer pockets (pink)/selection-mod-easy.png b/Skins/summer pockets (pink)/selection-mod-easy.png new file mode 100644 index 00000000..661166a2 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3ad4e3cca92db7e47d998d859fee01bd4de953aa2787d3e8dc8345a074ccd5 +size 2440 diff --git a/Skins/summer pockets (pink)/selection-mod-flashlight.png b/Skins/summer pockets (pink)/selection-mod-flashlight.png new file mode 100644 index 00000000..42438c1f --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4df2cb26274819951d0f5da34214f5209e705396fbf4b59700e71d4294ce17 +size 3098 diff --git a/Skins/summer pockets (pink)/selection-mod-halftime.png b/Skins/summer pockets (pink)/selection-mod-halftime.png new file mode 100644 index 00000000..13827f72 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef5c58909a52532fcb0ac34fa976fcb1a56d09c1a6b6f9794963baebf683214 +size 2591 diff --git a/Skins/summer pockets (pink)/selection-mod-hardrock.png b/Skins/summer pockets (pink)/selection-mod-hardrock.png new file mode 100644 index 00000000..cef3bf29 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa57e1d89c10fc66fb542e035e95043001c3e658b86bff2ebe69a84576d1197f +size 3220 diff --git a/Skins/summer pockets (pink)/selection-mod-hidden.png b/Skins/summer pockets (pink)/selection-mod-hidden.png new file mode 100644 index 00000000..fbc01f3e --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752d7a278f6b81ec2fc813d02788ea0be237d5b4b59ca241b132a372cd52faf3 +size 4016 diff --git a/Skins/summer pockets (pink)/selection-mod-nightcore.png b/Skins/summer pockets (pink)/selection-mod-nightcore.png new file mode 100644 index 00000000..c3984f14 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c556102a532a53f73f82e64825ec02db63ffd919719356846f1f727e2dd6a7db +size 2773 diff --git a/Skins/summer pockets (pink)/selection-mod-nofail.png b/Skins/summer pockets (pink)/selection-mod-nofail.png new file mode 100644 index 00000000..bb76db5b --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e72699e9d48e5e3689f6622dfa55d94ac4e70773b03a332b849c5dde80b4803 +size 3730 diff --git a/Skins/summer pockets (pink)/selection-mod-perfect.png b/Skins/summer pockets (pink)/selection-mod-perfect.png new file mode 100644 index 00000000..95e17f27 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1e768f1bf642479e9b670c577bed2838b5b2c592cb563be9f620f86d5bdf8e +size 2934 diff --git a/Skins/summer pockets (pink)/selection-mod-relax.png b/Skins/summer pockets (pink)/selection-mod-relax.png new file mode 100644 index 00000000..ff1e53d5 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892cef8ac4f08cf090b301d14de124cb99811347e9bae7a0ef797ae2bdd69e57 +size 2397 diff --git a/Skins/summer pockets (pink)/selection-mod-relax2.png b/Skins/summer pockets (pink)/selection-mod-relax2.png new file mode 100644 index 00000000..94f44f84 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fb7bdf64c4918640cedb67fe93669e1f8d01d0fd95383db439d8dce3172a6c +size 2791 diff --git a/Skins/summer pockets (pink)/selection-mod-scorev2.png b/Skins/summer pockets (pink)/selection-mod-scorev2.png new file mode 100644 index 00000000..5fb7d72e --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78da2652d31fa695333632fd2152c5d4199b7656d8ceed575c59e076bf4aec0 +size 1565 diff --git a/Skins/summer pockets (pink)/selection-mod-spunout.png b/Skins/summer pockets (pink)/selection-mod-spunout.png new file mode 100644 index 00000000..e9e448f3 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53161f9b4433772e9800ee3637e74dc2d359e4264cdfadc25c1f9b02b5c6dad +size 3056 diff --git a/Skins/summer pockets (pink)/selection-mod-suddendeath.png b/Skins/summer pockets (pink)/selection-mod-suddendeath.png new file mode 100644 index 00000000..a8565384 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8509e3e45e81ccaed5caaed52a7a38906403899940e8aed7097a17277bc62301 +size 3391 diff --git a/Skins/summer pockets (pink)/selection-mod-target.png b/Skins/summer pockets (pink)/selection-mod-target.png new file mode 100644 index 00000000..699a6eb3 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46994709cb41c22b7b2d7deeea0e79395b6d211546a81e7c1d76f0e2b576eae +size 3977 diff --git a/Skins/summer pockets (pink)/selection-mode-over.png b/Skins/summer pockets (pink)/selection-mode-over.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/selection-mode.png b/Skins/summer pockets (pink)/selection-mode.png new file mode 100644 index 00000000..6d9aa1a4 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mode.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63abf3b54ebe6b3b44a7b0f62c190392093d25b890c88be7f71bb12a287f6a7a +size 124 diff --git a/Skins/summer pockets (pink)/selection-mods-over.png b/Skins/summer pockets (pink)/selection-mods-over.png new file mode 100644 index 00000000..86a23978 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a48e9284425351164421779bbb644b98975b019ea8557b01607ad6d0f5e5900 +size 111 diff --git a/Skins/summer pockets (pink)/selection-mods.png b/Skins/summer pockets (pink)/selection-mods.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/selection-options-over.png b/Skins/summer pockets (pink)/selection-options-over.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/selection-options.png b/Skins/summer pockets (pink)/selection-options.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/selection-random-over.png b/Skins/summer pockets (pink)/selection-random-over.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/selection-random.png b/Skins/summer pockets (pink)/selection-random.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/selection-tab.png b/Skins/summer pockets (pink)/selection-tab.png new file mode 100644 index 00000000..40b18722 --- /dev/null +++ b/Skins/summer pockets (pink)/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1ad4fcf7de4a4d07c8a71c13b6a10da0af704273c3d8c57d2ad7d1d001c26f +size 102 diff --git a/Skins/summer pockets (pink)/skin.ini b/Skins/summer pockets (pink)/skin.ini new file mode 100644 index 00000000..2afc454e --- /dev/null +++ b/Skins/summer pockets (pink)/skin.ini @@ -0,0 +1,20 @@ +// skin.ini generated by osu! skin mixer v2.9.0 + +[General] +Name: summer pockets (pink) +Author: xek +Version: latest +CursorExpand: 1 +CursorRotate: 0 + +[Colours] +InputOverlayText: 255,255,255 +SliderBorder: 60,60,60 +SliderTrackOverride: 0,0,0 +Combo1: 232, 232, 232 +Combo2: 243, 201, 255 + +[Fonts] +ScorePrefix: score +ScoreOverlap: 3 +HitCircleOverlap: 41 diff --git a/Skins/summer pockets (pink)/sliderb@2x.png b/Skins/summer pockets (pink)/sliderb@2x.png new file mode 100644 index 00000000..7d23c734 --- /dev/null +++ b/Skins/summer pockets (pink)/sliderb@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d628b7a451a184ceea89e7c8854e410d3f84daad6e71ef3436c1c9cb494adf4d +size 4743 diff --git a/Skins/summer pockets (pink)/sliderbar.ogg b/Skins/summer pockets (pink)/sliderbar.ogg new file mode 100644 index 00000000..e777a2be --- /dev/null +++ b/Skins/summer pockets (pink)/sliderbar.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bc24fe9289ee716334f3ef8692d04125e38d740bcac5badd0564ab2a2bd29f +size 6562 diff --git a/Skins/summer pockets (pink)/sliderendcircle.png b/Skins/summer pockets (pink)/sliderendcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/summer pockets (pink)/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/summer pockets (pink)/sliderfollowcircle.png b/Skins/summer pockets (pink)/sliderfollowcircle.png new file mode 100644 index 00000000..5e3255c8 --- /dev/null +++ b/Skins/summer pockets (pink)/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa29083c56748ea944ea8b0cf516fed9a14bbd4929e81700d6ec24799b8fdef8 +size 39465 diff --git a/Skins/summer pockets (pink)/sliderfollowcircle@2x.png b/Skins/summer pockets (pink)/sliderfollowcircle@2x.png new file mode 100644 index 00000000..116736eb --- /dev/null +++ b/Skins/summer pockets (pink)/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747684382acc9b0aee2bfbaa3951beeefce27f1005908024c541a6c07952d64a +size 111486 diff --git a/Skins/summer pockets (pink)/sliderscorepoint.png b/Skins/summer pockets (pink)/sliderscorepoint.png new file mode 100644 index 00000000..c39cb2e1 --- /dev/null +++ b/Skins/summer pockets (pink)/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72f25f445940b166868007fd83eba1117812b907b5c58bcd8cc9014715c6afc +size 5091 diff --git a/Skins/summer pockets (pink)/soft-hitclap.ogg b/Skins/summer pockets (pink)/soft-hitclap.ogg new file mode 100644 index 00000000..d6d2b5bf --- /dev/null +++ b/Skins/summer pockets (pink)/soft-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa0a2f09a1ad9aec04bc6708ea34d3297e9bf76e15769bdca939f0de077032b +size 5349 diff --git a/Skins/summer pockets (pink)/soft-hitclap.wav b/Skins/summer pockets (pink)/soft-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/summer pockets (pink)/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/summer pockets (pink)/soft-hitfinish.ogg b/Skins/summer pockets (pink)/soft-hitfinish.ogg new file mode 100644 index 00000000..514b7ea0 --- /dev/null +++ b/Skins/summer pockets (pink)/soft-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469ffc3dcc6a5016f4ce54dd9d79e9c4cc2782ff12164f6e0fc263a959a70257 +size 15904 diff --git a/Skins/summer pockets (pink)/soft-hitfinish.wav b/Skins/summer pockets (pink)/soft-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/summer pockets (pink)/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/summer pockets (pink)/soft-hitnormal.ogg b/Skins/summer pockets (pink)/soft-hitnormal.ogg new file mode 100644 index 00000000..8e96baff --- /dev/null +++ b/Skins/summer pockets (pink)/soft-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf91ddb05ee476fdd62eb99b71aa099fd41ca5613f56092cb738a4bfd5166677 +size 8106 diff --git a/Skins/summer pockets (pink)/soft-hitnormal.wav b/Skins/summer pockets (pink)/soft-hitnormal.wav new file mode 100644 index 00000000..2ba4a772 --- /dev/null +++ b/Skins/summer pockets (pink)/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a412d776db0c5e33c15d89e9550d32072262aabf303a5f79f3fd639a972a779 +size 26084 diff --git a/Skins/summer pockets (pink)/soft-hitwhistle.ogg b/Skins/summer pockets (pink)/soft-hitwhistle.ogg new file mode 100644 index 00000000..7adaed3d --- /dev/null +++ b/Skins/summer pockets (pink)/soft-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10135c5ce2ff2eb41717fd021cca7dd76279f6d590e6d535a50678c05368eb51 +size 20498 diff --git a/Skins/summer pockets (pink)/soft-hitwhistle.wav b/Skins/summer pockets (pink)/soft-hitwhistle.wav new file mode 100644 index 00000000..14da5538 --- /dev/null +++ b/Skins/summer pockets (pink)/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d4b60d34d615199b41c7927a9205fb33c2ae8591a1b21e92736a09de652dc9 +size 14460 diff --git a/Skins/summer pockets (pink)/soft-sliderslide.ogg b/Skins/summer pockets (pink)/soft-sliderslide.ogg new file mode 100644 index 00000000..abd24459 --- /dev/null +++ b/Skins/summer pockets (pink)/soft-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cdaffd66fc1211cc3fd5ddd4e4a01f8b2ee749c4a894637f6670383d475987 +size 4426 diff --git a/Skins/summer pockets (pink)/soft-sliderslide.wav b/Skins/summer pockets (pink)/soft-sliderslide.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/summer pockets (pink)/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/summer pockets (pink)/soft-slidertick.ogg b/Skins/summer pockets (pink)/soft-slidertick.ogg new file mode 100644 index 00000000..539b7e3c --- /dev/null +++ b/Skins/summer pockets (pink)/soft-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58d616735967fc9276eb71bccb78d66465fcf6f9742c58a1be480719f7fa514 +size 14125 diff --git a/Skins/summer pockets (pink)/soft-slidertick.wav b/Skins/summer pockets (pink)/soft-slidertick.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/summer pockets (pink)/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/summer pockets (pink)/soft-sliderwhistle.ogg b/Skins/summer pockets (pink)/soft-sliderwhistle.ogg new file mode 100644 index 00000000..7fb5b8a2 --- /dev/null +++ b/Skins/summer pockets (pink)/soft-sliderwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290def7f8b6938c8ef603d6abe7d835ea7cf0cc22a1f10c6bb03213f521b4dc2 +size 9647 diff --git a/Skins/summer pockets (pink)/soft-sliderwhistle.wav b/Skins/summer pockets (pink)/soft-sliderwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/summer pockets (pink)/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/summer pockets (pink)/songselect-bottom@2x.png b/Skins/summer pockets (pink)/songselect-bottom@2x.png new file mode 100644 index 00000000..2fc3fb97 --- /dev/null +++ b/Skins/summer pockets (pink)/songselect-bottom@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788521cd185ed07c260d96d5edb85c0130182077b4e090e86e4ee6305156bb9f +size 4619 diff --git a/Skins/summer pockets (pink)/songselect-top.png b/Skins/summer pockets (pink)/songselect-top.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/songselect-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/songselect-top@2x.png b/Skins/summer pockets (pink)/songselect-top@2x.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/songselect-top@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/spinner-approachcircle.png b/Skins/summer pockets (pink)/spinner-approachcircle.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/summer pockets (pink)/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/summer pockets (pink)/spinner-background.png b/Skins/summer pockets (pink)/spinner-background.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/summer pockets (pink)/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/summer pockets (pink)/spinner-circle@2x.png b/Skins/summer pockets (pink)/spinner-circle@2x.png new file mode 100644 index 00000000..55738fff --- /dev/null +++ b/Skins/summer pockets (pink)/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca22a09f2120c88a9cc5fa46bf8c9dab3c9c1058243e069cdae8f9518c7cdc4d +size 43543 diff --git a/Skins/summer pockets (pink)/spinner-clear.png b/Skins/summer pockets (pink)/spinner-clear.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/summer pockets (pink)/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/summer pockets (pink)/spinner-rpm.png b/Skins/summer pockets (pink)/spinner-rpm.png new file mode 100644 index 00000000..0a89e891 --- /dev/null +++ b/Skins/summer pockets (pink)/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743b80176c7a9b725d2e472694b728ae510bbdae78ee5d33d58278221f552d9 +size 95 diff --git a/Skins/summer pockets (pink)/spinner-spin.png b/Skins/summer pockets (pink)/spinner-spin.png new file mode 100644 index 00000000..20b8b568 --- /dev/null +++ b/Skins/summer pockets (pink)/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc92b7704c3e3baaefd2ce87ce17e2ea266a1bb4244f032da25931e9c6fb92 +size 68 diff --git a/Skins/summer pockets (pink)/spinnerbonus.ogg b/Skins/summer pockets (pink)/spinnerbonus.ogg new file mode 100644 index 00000000..a4d98537 --- /dev/null +++ b/Skins/summer pockets (pink)/spinnerbonus.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126fd1e1a9d458d234d043d8fa9d853c9f98c2008a78d579e2a4c6973138c1b1 +size 22527 diff --git a/Skins/summer pockets (pink)/spinnerbonus.wav b/Skins/summer pockets (pink)/spinnerbonus.wav new file mode 100644 index 00000000..b2358efd --- /dev/null +++ b/Skins/summer pockets (pink)/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f946b259aa2996f975343653b7b5efd8c2942a4983af8814b1c1e5a1e753682 +size 151102 diff --git a/Skins/summer pockets (pink)/spinnerspin.ogg b/Skins/summer pockets (pink)/spinnerspin.ogg new file mode 100644 index 00000000..c67e2d8b --- /dev/null +++ b/Skins/summer pockets (pink)/spinnerspin.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0672286c726bf25bee248c8c909a2874d502bd109a830c4c672088dffa1b946 +size 7084 diff --git a/Skins/summer pockets (pink)/spinnerspin.wav b/Skins/summer pockets (pink)/spinnerspin.wav new file mode 100644 index 00000000..8e3c0d9a --- /dev/null +++ b/Skins/summer pockets (pink)/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca06ced00a460d2bea791c5e0ef611d49aafb4ebb2790a8cb893080c4fb72826 +size 66080 diff --git a/Skins/summer pockets (pink)/star.png b/Skins/summer pockets (pink)/star.png new file mode 100644 index 00000000..56a7de50 --- /dev/null +++ b/Skins/summer pockets (pink)/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdf73b58b843255ecb0013df70da0fd9b31061d9849811ccf57b165f9680352 +size 1047 diff --git a/Skins/summer pockets (pink)/star2.png b/Skins/summer pockets (pink)/star2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/summer pockets (pink)/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/summer pockets (pink)/welcome.ogg b/Skins/summer pockets (pink)/welcome.ogg new file mode 100644 index 00000000..a6120e48 --- /dev/null +++ b/Skins/summer pockets (pink)/welcome.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ce165c7242fcaef718a731842dcce8313ff45ed665a762c17fda49c325e02b +size 40627 diff --git a/Skins/心kokoro dt/4K.ini b/Skins/心kokoro dt/4K.ini new file mode 100644 index 00000000..7e996620 --- /dev/null +++ b/Skins/心kokoro dt/4K.ini @@ -0,0 +1,18 @@ +//Mania skin config +ColumnLineWidth: 0.7 +ColumnStart: 136 +BarlineWidth: 1.2 +HitPosition: 402 +SpecialStyle: 0 +SpecialPositionLeft: 1 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +FontCombo: score +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +ColumnLine: 1,1,1,1,1 +//Colours +//images +//Keys diff --git a/Skins/心kokoro dt/Cursors/404 cursor/cursor-smoke.png b/Skins/心kokoro dt/Cursors/404 cursor/cursor-smoke.png new file mode 100644 index 00000000..40db0c71 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/404 cursor/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74071b1017e4eafdaa3ae1359d00e6a4b5da164d258ac0845c5a6182bc57c5b5 +size 1430 diff --git a/Skins/心kokoro dt/Cursors/404 cursor/cursor-smoke@2x.png b/Skins/心kokoro dt/Cursors/404 cursor/cursor-smoke@2x.png new file mode 100644 index 00000000..bc58cbf3 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/404 cursor/cursor-smoke@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7015983e65fa0ced7080a727b6c2278a9ff70272ca0719fbe184ca78505ed1ea +size 18745 diff --git a/Skins/心kokoro dt/Cursors/404 cursor/cursor.png b/Skins/心kokoro dt/Cursors/404 cursor/cursor.png new file mode 100644 index 00000000..84b8302c --- /dev/null +++ b/Skins/心kokoro dt/Cursors/404 cursor/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08af52299b1a6bde35ba15447c382042fce6994761240ab6005fc1370ba90f0d +size 5824 diff --git a/Skins/心kokoro dt/Cursors/404 cursor/cursortrail.png b/Skins/心kokoro dt/Cursors/404 cursor/cursortrail.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/404 cursor/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/心kokoro dt/Cursors/Rampax cursor/cursor.png b/Skins/心kokoro dt/Cursors/Rampax cursor/cursor.png new file mode 100644 index 00000000..2367a980 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Rampax cursor/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d57aaaa20914a25968842dcde9f6e9b06a31eff647afabc8d19df0d8d0c4c75 +size 19502 diff --git a/Skins/心kokoro dt/Cursors/Rampax cursor/cursortrail.png b/Skins/心kokoro dt/Cursors/Rampax cursor/cursortrail.png new file mode 100644 index 00000000..f7f2d6cb --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Rampax cursor/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1bb37d53b85de8b0abd9bdfcc91952b484973a73be140f1b5ddb8d94a3bd19 +size 4218 diff --git a/Skins/心kokoro dt/Cursors/Runa/cursor-smoke.png b/Skins/心kokoro dt/Cursors/Runa/cursor-smoke.png new file mode 100644 index 00000000..04ff1699 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Runa/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a366afad35b7bfe554c842d00c4a458b412cfaddc10442d1e25e573a40f489b6 +size 561 diff --git a/Skins/心kokoro dt/Cursors/Runa/cursor-smoke@2x.png b/Skins/心kokoro dt/Cursors/Runa/cursor-smoke@2x.png new file mode 100644 index 00000000..7ef1f2ea --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Runa/cursor-smoke@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9e46b84580b79a5434d6ef7b6a3a86cfcf5428eeaf0b0ab2ef06dc119a24ce +size 1187 diff --git a/Skins/心kokoro dt/Cursors/Runa/cursor.png b/Skins/心kokoro dt/Cursors/Runa/cursor.png new file mode 100644 index 00000000..0f04a3c5 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Runa/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b1f06ea477a503ea394689575f94afd7812f494fbc7bf99b611ba1c6ffccbf +size 3080 diff --git a/Skins/心kokoro dt/Cursors/Runa/cursor@2x.png b/Skins/心kokoro dt/Cursors/Runa/cursor@2x.png new file mode 100644 index 00000000..5d0645ea --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Runa/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ae15339a77a749d09709020a4505a15321eb3c352cad1a32113c2105298237 +size 5043 diff --git a/Skins/心kokoro dt/Cursors/Runa/cursortrail.png b/Skins/心kokoro dt/Cursors/Runa/cursortrail.png new file mode 100644 index 00000000..666f31b3 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Runa/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e380a7a37f76fceb7534ca83bf41a804595909b48d0c72575fd91602804dcac7 +size 2349 diff --git a/Skins/心kokoro dt/Cursors/Runa/cursortrail@2x.png b/Skins/心kokoro dt/Cursors/Runa/cursortrail@2x.png new file mode 100644 index 00000000..c15622df --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Runa/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0556765514d4b0a752e9ab9d0ad5fe646727d4e34c4e5c6a171b7285de78335e +size 2544 diff --git a/Skins/心kokoro dt/Cursors/Sonic/Sonic's cursor.zip b/Skins/心kokoro dt/Cursors/Sonic/Sonic's cursor.zip new file mode 100644 index 00000000..1c0792ae Binary files /dev/null and b/Skins/心kokoro dt/Cursors/Sonic/Sonic's cursor.zip differ diff --git a/Skins/心kokoro dt/Cursors/Sonic/Sonic's cursor/cursor.png b/Skins/心kokoro dt/Cursors/Sonic/Sonic's cursor/cursor.png new file mode 100644 index 00000000..c978da3d --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Sonic/Sonic's cursor/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2b0a63c1f48d26b88d0533072c24460c324640fd27a238fc407586040a3788 +size 18091 diff --git a/Skins/心kokoro dt/Cursors/Sonic/Sonic's cursor/cursortrail.png b/Skins/心kokoro dt/Cursors/Sonic/Sonic's cursor/cursortrail.png new file mode 100644 index 00000000..105254fa --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Sonic/Sonic's cursor/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ea915bda71b1f98329efde94bad11c8a1f138ea5c114b940bfa593daa065bb +size 19553 diff --git a/Skins/心kokoro dt/Cursors/Sonic/cursor.png b/Skins/心kokoro dt/Cursors/Sonic/cursor.png new file mode 100644 index 00000000..c978da3d --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Sonic/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2b0a63c1f48d26b88d0533072c24460c324640fd27a238fc407586040a3788 +size 18091 diff --git a/Skins/心kokoro dt/Cursors/Sonic/cursortrail.png b/Skins/心kokoro dt/Cursors/Sonic/cursortrail.png new file mode 100644 index 00000000..105254fa --- /dev/null +++ b/Skins/心kokoro dt/Cursors/Sonic/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ea915bda71b1f98329efde94bad11c8a1f138ea5c114b940bfa593daa065bb +size 19553 diff --git a/Skins/心kokoro dt/Cursors/badeu/cursor-smoke.png b/Skins/心kokoro dt/Cursors/badeu/cursor-smoke.png new file mode 100644 index 00000000..e0b9435f --- /dev/null +++ b/Skins/心kokoro dt/Cursors/badeu/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53827396da600c5725621fc96b0270d9eee169fba2b0044db8feed7ea257851a +size 4163 diff --git a/Skins/心kokoro dt/Cursors/badeu/cursor.png b/Skins/心kokoro dt/Cursors/badeu/cursor.png new file mode 100644 index 00000000..e01aa2f5 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/badeu/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50eae0675052b5ee91735d282626df0bf526ee99e322453a995c5b8866e3011 +size 22772 diff --git a/Skins/心kokoro dt/Cursors/badeu/cursortrail.png b/Skins/心kokoro dt/Cursors/badeu/cursortrail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/badeu/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/Cursors/blue/cursor-smoke.png b/Skins/心kokoro dt/Cursors/blue/cursor-smoke.png new file mode 100644 index 00000000..a207e6dc --- /dev/null +++ b/Skins/心kokoro dt/Cursors/blue/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ac34cbc51a4dd2a22a616941e610f963771e72f58f1c6c7e8c002011e2f0de +size 17815 diff --git a/Skins/心kokoro dt/Cursors/blue/cursor.png b/Skins/心kokoro dt/Cursors/blue/cursor.png new file mode 100644 index 00000000..67093ba0 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/blue/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef759ef45c0c9e01a227f2473b4688c95b66cab5b40376be4011faa42b389ca9 +size 3628 diff --git a/Skins/心kokoro dt/Cursors/blue/cursortail.png b/Skins/心kokoro dt/Cursors/blue/cursortail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/blue/cursortail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/Cursors/blue/cursortrail.png b/Skins/心kokoro dt/Cursors/blue/cursortrail.png new file mode 100644 index 00000000..8c1273fd --- /dev/null +++ b/Skins/心kokoro dt/Cursors/blue/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4999ed70d3818fbdbc9d088907c4402db5784d3437b972e06637dd3539cf9cc0 +size 4248 diff --git a/Skins/心kokoro dt/Cursors/yellow no trawil/cursor-smoke.png b/Skins/心kokoro dt/Cursors/yellow no trawil/cursor-smoke.png new file mode 100644 index 00000000..a207e6dc --- /dev/null +++ b/Skins/心kokoro dt/Cursors/yellow no trawil/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ac34cbc51a4dd2a22a616941e610f963771e72f58f1c6c7e8c002011e2f0de +size 17815 diff --git a/Skins/心kokoro dt/Cursors/yellow no trawil/cursor.png b/Skins/心kokoro dt/Cursors/yellow no trawil/cursor.png new file mode 100644 index 00000000..d846e8cd --- /dev/null +++ b/Skins/心kokoro dt/Cursors/yellow no trawil/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2de11ba325a35d07d01edfe4a91118747c4855417081b50f0a2e5acb43cee6b +size 4337 diff --git a/Skins/心kokoro dt/Cursors/yellow no trawil/cursortail.png b/Skins/心kokoro dt/Cursors/yellow no trawil/cursortail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/yellow no trawil/cursortail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/Cursors/yellow no trawil/cursortrail.png b/Skins/心kokoro dt/Cursors/yellow no trawil/cursortrail.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/yellow no trawil/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/心kokoro dt/Cursors/yellow/cursor.png b/Skins/心kokoro dt/Cursors/yellow/cursor.png new file mode 100644 index 00000000..d846e8cd --- /dev/null +++ b/Skins/心kokoro dt/Cursors/yellow/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2de11ba325a35d07d01edfe4a91118747c4855417081b50f0a2e5acb43cee6b +size 4337 diff --git a/Skins/心kokoro dt/Cursors/yellow/cursor@2x.png b/Skins/心kokoro dt/Cursors/yellow/cursor@2x.png new file mode 100644 index 00000000..c354bc1a --- /dev/null +++ b/Skins/心kokoro dt/Cursors/yellow/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41100f9ab3c151435e1eb42161eecff4831b6264aabc9e54b85a6a484d5e05a7 +size 24812 diff --git a/Skins/心kokoro dt/Cursors/yellow/cursortail.png b/Skins/心kokoro dt/Cursors/yellow/cursortail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/Cursors/yellow/cursortail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/Cursors/yellow/cursortrail.png b/Skins/心kokoro dt/Cursors/yellow/cursortrail.png new file mode 100644 index 00000000..e5f3e23f --- /dev/null +++ b/Skins/心kokoro dt/Cursors/yellow/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf92aeb64af70d57efd1eb0c32a624aa47fce8a3290f122eb851e1b6d9e38ec +size 4386 diff --git a/Skins/心kokoro dt/applause.sfk b/Skins/心kokoro dt/applause.sfk new file mode 100644 index 00000000..ef1da230 Binary files /dev/null and b/Skins/心kokoro dt/applause.sfk differ diff --git a/Skins/心kokoro dt/applause.wav b/Skins/心kokoro dt/applause.wav new file mode 100644 index 00000000..ba0a7fc6 --- /dev/null +++ b/Skins/心kokoro dt/applause.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9613ed86b347eea4a43449d0d32425178dc9dcd18ccb8f533597e6beb842c181 +size 4017424 diff --git a/Skins/心kokoro dt/approachcircle.png b/Skins/心kokoro dt/approachcircle.png new file mode 100644 index 00000000..87853fe8 --- /dev/null +++ b/Skins/心kokoro dt/approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41af65b09fde7b415551aaf33947000665d97b7d70a38ff8a186d01e37b28bec +size 4540 diff --git a/Skins/心kokoro dt/approachcircle@2x.png b/Skins/心kokoro dt/approachcircle@2x.png new file mode 100644 index 00000000..049c3859 --- /dev/null +++ b/Skins/心kokoro dt/approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5aa0281536067ab0453dbadbab1069a744f1950d23ffc095d15fc520ec9f49 +size 20379 diff --git a/Skins/心kokoro dt/arrow-warning.png b/Skins/心kokoro dt/arrow-warning.png new file mode 100644 index 00000000..e467f93d --- /dev/null +++ b/Skins/心kokoro dt/arrow-warning.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f1ed1c0ae5862e68c180885d99d9dc978caa6e7d3ef40e3a9a1dbe7a56287f +size 3142 diff --git a/Skins/心kokoro dt/arrow-warning@2x.png b/Skins/心kokoro dt/arrow-warning@2x.png new file mode 100644 index 00000000..5d6d378b --- /dev/null +++ b/Skins/心kokoro dt/arrow-warning@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bea750358261a8b63fcd61895af6acb01b4c84636ad4c8e4b75965f29cb3dc9 +size 12257 diff --git a/Skins/心kokoro dt/back-button-click.wav b/Skins/心kokoro dt/back-button-click.wav new file mode 100644 index 00000000..19755ca9 --- /dev/null +++ b/Skins/心kokoro dt/back-button-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0f43bbf69409585810cae31d4bb8cc14cc24d9d761e5495887a7aa80bec977 +size 435210 diff --git a/Skins/心kokoro dt/back-button-hover.wav b/Skins/心kokoro dt/back-button-hover.wav new file mode 100644 index 00000000..c9016724 --- /dev/null +++ b/Skins/心kokoro dt/back-button-hover.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:749e2f291901341db8d13cf45ac96315475d5182decc050d1186a1b219dfaaaf +size 18552 diff --git a/Skins/心kokoro dt/button-left.png b/Skins/心kokoro dt/button-left.png new file mode 100644 index 00000000..4a385317 --- /dev/null +++ b/Skins/心kokoro dt/button-left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15bb8424c3f04c3687f2d09df2785e3634b9849c319017f8a717042973dbf8eb +size 531 diff --git a/Skins/心kokoro dt/button-left@2x.png b/Skins/心kokoro dt/button-left@2x.png new file mode 100644 index 00000000..4354370a --- /dev/null +++ b/Skins/心kokoro dt/button-left@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff69673bb7f259387cb17f11ba0042268b0854856a2ede0018cee05e1a44c686 +size 1077 diff --git a/Skins/心kokoro dt/button-middle.png b/Skins/心kokoro dt/button-middle.png new file mode 100644 index 00000000..22ba00e2 --- /dev/null +++ b/Skins/心kokoro dt/button-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73272cd6ba3819b86c68a5e894a7faf5d9bfd5d94e85decb632395a96b289acf +size 360 diff --git a/Skins/心kokoro dt/button-middle@2x.png b/Skins/心kokoro dt/button-middle@2x.png new file mode 100644 index 00000000..1e981976 --- /dev/null +++ b/Skins/心kokoro dt/button-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea4fbf1ca3cf7a2b39df1a7d514f0e777fea52f276a7cb4b86e4206e5717bbb3 +size 806 diff --git a/Skins/心kokoro dt/button-right.png b/Skins/心kokoro dt/button-right.png new file mode 100644 index 00000000..4d5ce0bf --- /dev/null +++ b/Skins/心kokoro dt/button-right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:125a90df9cdce9ab1c849771ec3ca728a78f0ce5522e5de662b886c5b92c11c7 +size 513 diff --git a/Skins/心kokoro dt/button-right@2x.png b/Skins/心kokoro dt/button-right@2x.png new file mode 100644 index 00000000..20f03894 --- /dev/null +++ b/Skins/心kokoro dt/button-right@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c94f586482294fa3ac6f845644ff9fea840610c54681c9fe4406b62c96a84af +size 1061 diff --git a/Skins/心kokoro dt/check-off.wav b/Skins/心kokoro dt/check-off.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/check-off.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/check-on.wav b/Skins/心kokoro dt/check-on.wav new file mode 100644 index 00000000..0d03013a --- /dev/null +++ b/Skins/心kokoro dt/check-on.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb005aaba45a50e470de3e159a2c58887b1cb34b6587f3941e5198b940e4840 +size 36520 diff --git a/Skins/心kokoro dt/click-close.wav b/Skins/心kokoro dt/click-close.wav new file mode 100644 index 00000000..3f7dad2e --- /dev/null +++ b/Skins/心kokoro dt/click-close.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b41095b2d1af288acb1d1e5d153cce5e5a552e256c50cf663f18ab69e202469 +size 18476 diff --git a/Skins/心kokoro dt/click-short-confirm.wav b/Skins/心kokoro dt/click-short-confirm.wav new file mode 100644 index 00000000..10e078c7 --- /dev/null +++ b/Skins/心kokoro dt/click-short-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f27da4d0365c9eae5e6662a75ab8ae1c8357aeb2e3022edee4bc3b5d600717c4 +size 32556 diff --git a/Skins/心kokoro dt/click-short.wav b/Skins/心kokoro dt/click-short.wav new file mode 100644 index 00000000..2faa63cb --- /dev/null +++ b/Skins/心kokoro dt/click-short.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a297cefe5a46e45fafc31359f59439990f6d393adcc8a595ddd5586cd5b877b7 +size 47096 diff --git a/Skins/心kokoro dt/coin.png b/Skins/心kokoro dt/coin.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/coin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/coins-bg.png b/Skins/心kokoro dt/coins-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/coins-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/coins-buy.png b/Skins/心kokoro dt/coins-buy.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/coins-buy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/coins-earn.wav b/Skins/心kokoro dt/coins-earn.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/coins-earn.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/coins-recharge.wav b/Skins/心kokoro dt/coins-recharge.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/coins-recharge.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/coins-use.wav b/Skins/心kokoro dt/coins-use.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/coins-use.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/coins.png b/Skins/心kokoro dt/coins.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/coins.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/combo-0@2x.png b/Skins/心kokoro dt/combo-0@2x.png new file mode 100644 index 00000000..b3acba45 --- /dev/null +++ b/Skins/心kokoro dt/combo-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36dd657c4b1fc37a8a91bdea1f6ce22a331de6f670d4ba6640dfa2cc9de2f6fd +size 2517 diff --git a/Skins/心kokoro dt/combo-1@2x.png b/Skins/心kokoro dt/combo-1@2x.png new file mode 100644 index 00000000..86a401bd --- /dev/null +++ b/Skins/心kokoro dt/combo-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d4ecb0ece9ade9698287de6d35172e3a93cf5a75a54a9e89880d031ccacb93 +size 999 diff --git a/Skins/心kokoro dt/combo-2@2x.png b/Skins/心kokoro dt/combo-2@2x.png new file mode 100644 index 00000000..a1da4f52 --- /dev/null +++ b/Skins/心kokoro dt/combo-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976eefd7e312773eaa09d5847a9a85982c105d31803302900f343191242e009b +size 2100 diff --git a/Skins/心kokoro dt/combo-3@2x.png b/Skins/心kokoro dt/combo-3@2x.png new file mode 100644 index 00000000..cad6cb02 --- /dev/null +++ b/Skins/心kokoro dt/combo-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a9d834c0de779385995b4d7ccc7f75fdace5d03f95720ffddca02c9678cb654 +size 2113 diff --git a/Skins/心kokoro dt/combo-4@2x.png b/Skins/心kokoro dt/combo-4@2x.png new file mode 100644 index 00000000..b758029d --- /dev/null +++ b/Skins/心kokoro dt/combo-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7103249f026aa110d6c978c28b38da8b25d2b873df9c3a9cfd4cb88c900cdf +size 1445 diff --git a/Skins/心kokoro dt/combo-5@2x.png b/Skins/心kokoro dt/combo-5@2x.png new file mode 100644 index 00000000..c84433a6 --- /dev/null +++ b/Skins/心kokoro dt/combo-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a099c77a70cda4d87bb6dec5c2b14c806427b5a3d5bd124eb68aa2d82366b7b3 +size 2128 diff --git a/Skins/心kokoro dt/combo-6@2x.png b/Skins/心kokoro dt/combo-6@2x.png new file mode 100644 index 00000000..e56bd4d8 --- /dev/null +++ b/Skins/心kokoro dt/combo-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75605a94c63f91ab7d57257d0f374cc8eced6a4da25930729f86be8f6ac7cee +size 2719 diff --git a/Skins/心kokoro dt/combo-7@2x.png b/Skins/心kokoro dt/combo-7@2x.png new file mode 100644 index 00000000..9c590306 --- /dev/null +++ b/Skins/心kokoro dt/combo-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612f634fcd3d8083ec4c6c7d4e260fcc470fee0ec4a3775784b46e3282fb6fe1 +size 1506 diff --git a/Skins/心kokoro dt/combo-8@2x.png b/Skins/心kokoro dt/combo-8@2x.png new file mode 100644 index 00000000..73af00ee --- /dev/null +++ b/Skins/心kokoro dt/combo-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70500c1cb139890638f22502ea48e48afbfae5a600f08a6fd444e04b7a8ad23 +size 2838 diff --git a/Skins/心kokoro dt/combo-9@2x.png b/Skins/心kokoro dt/combo-9@2x.png new file mode 100644 index 00000000..7c1ce867 --- /dev/null +++ b/Skins/心kokoro dt/combo-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6dd561aaa219eab4a6baffa9327241a82bae781f1f3eb417fc0a60f7807d892 +size 2662 diff --git a/Skins/心kokoro dt/combo-x@2x.png b/Skins/心kokoro dt/combo-x@2x.png new file mode 100644 index 00000000..b4b05697 --- /dev/null +++ b/Skins/心kokoro dt/combo-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037474cfe0342668136c90ed3a26a3a1fa690f954759083c3cbdc23843a837cf +size 1666 diff --git a/Skins/心kokoro dt/comboburst.png b/Skins/心kokoro dt/comboburst.png new file mode 100644 index 00000000..1d6647d7 --- /dev/null +++ b/Skins/心kokoro dt/comboburst.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520941a066c0fcbf6c9241f47d2bb61d728be9a2398d5b16143106e0fb2cf80 +size 17232 diff --git a/Skins/心kokoro dt/count.wav b/Skins/心kokoro dt/count.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/心kokoro dt/count.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/心kokoro dt/count1.png b/Skins/心kokoro dt/count1.png new file mode 100644 index 00000000..c26ec9e8 --- /dev/null +++ b/Skins/心kokoro dt/count1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d00000e327042e5a22f066d622acb87a6900f1a83e58aecd2c66f8a8e4c10ea +size 17232 diff --git a/Skins/心kokoro dt/count1s.wav b/Skins/心kokoro dt/count1s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/心kokoro dt/count1s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/心kokoro dt/count2.png b/Skins/心kokoro dt/count2.png new file mode 100644 index 00000000..6409b082 --- /dev/null +++ b/Skins/心kokoro dt/count2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593cd74803be2c97fe9f5eac38fc70fe397b3df4a99206f0f85c70d071e151ee +size 17232 diff --git a/Skins/心kokoro dt/count2s.wav b/Skins/心kokoro dt/count2s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/心kokoro dt/count2s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/心kokoro dt/count3.png b/Skins/心kokoro dt/count3.png new file mode 100644 index 00000000..7bd2b02b --- /dev/null +++ b/Skins/心kokoro dt/count3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf7ada11b48390117bc6f16c043e9939051dedcd7485f99d3a30f12582f2998 +size 17232 diff --git a/Skins/心kokoro dt/count3s.wav b/Skins/心kokoro dt/count3s.wav new file mode 100644 index 00000000..d7fae5e7 --- /dev/null +++ b/Skins/心kokoro dt/count3s.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf2dccc094e727d293a55d90176a5d7ae00f42385e99c5e5fefa7279061a05 +size 2660 diff --git a/Skins/心kokoro dt/cursor-smoke.png b/Skins/心kokoro dt/cursor-smoke.png new file mode 100644 index 00000000..bc673ee9 --- /dev/null +++ b/Skins/心kokoro dt/cursor-smoke.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9795ddbb7885601918f6647740745ae001fcd8aaf20769e9c87dfb7ee7c93cbb +size 574 diff --git a/Skins/心kokoro dt/cursor-smoke@2x.png b/Skins/心kokoro dt/cursor-smoke@2x.png new file mode 100644 index 00000000..00028183 --- /dev/null +++ b/Skins/心kokoro dt/cursor-smoke@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb5142b4f6e5af17644e9c81ed47a92a546b905cc9652ba5f36c153e3f10b45 +size 951 diff --git a/Skins/心kokoro dt/cursor.png b/Skins/心kokoro dt/cursor.png new file mode 100644 index 00000000..2b111bd4 --- /dev/null +++ b/Skins/心kokoro dt/cursor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5181742db57a94f030364d56554084e8ae3b9d27e3c25ed762017391ecc46747 +size 3438 diff --git a/Skins/心kokoro dt/cursor@2x.png b/Skins/心kokoro dt/cursor@2x.png new file mode 100644 index 00000000..0c59ac51 --- /dev/null +++ b/Skins/心kokoro dt/cursor@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672f1b9f4bb922b353bd3cf53a4c520411c23a56c403b1cef5b53c8e2cacd9df +size 10093 diff --git a/Skins/心kokoro dt/cursortail.png b/Skins/心kokoro dt/cursortail.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/cursortail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/cursortrail.png b/Skins/心kokoro dt/cursortrail.png new file mode 100644 index 00000000..9630a667 --- /dev/null +++ b/Skins/心kokoro dt/cursortrail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c236da3a4b2782f434b925a841a33f6c18d8f5196a41b35ce718d4bc12a084d +size 1467 diff --git a/Skins/心kokoro dt/cursortrail@2x.png b/Skins/心kokoro dt/cursortrail@2x.png new file mode 100644 index 00000000..6a772e77 --- /dev/null +++ b/Skins/心kokoro dt/cursortrail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ae04d2265692a3490eb7d87990d1dea5d607555b852259578d809aed74b5c8 +size 5210 diff --git a/Skins/心kokoro dt/default-0.png b/Skins/心kokoro dt/default-0.png new file mode 100644 index 00000000..aa28ab0b --- /dev/null +++ b/Skins/心kokoro dt/default-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2a1371655d38d5d6556324587ce7e641331cc0a939c5592080cadbeeba35cc +size 2296 diff --git a/Skins/心kokoro dt/default-1.png b/Skins/心kokoro dt/default-1.png new file mode 100644 index 00000000..8bd9bc87 --- /dev/null +++ b/Skins/心kokoro dt/default-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e85e780e626d21ed6a67a83e9487d4aa457b8eadfd2850cbaea9690ade08a1 +size 870 diff --git a/Skins/心kokoro dt/default-2.png b/Skins/心kokoro dt/default-2.png new file mode 100644 index 00000000..83ebddf5 --- /dev/null +++ b/Skins/心kokoro dt/default-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa1ba658fdb9450043a0fdfb4959bb49791141a9970c8339f88770e25e94bbd +size 2259 diff --git a/Skins/心kokoro dt/default-3.png b/Skins/心kokoro dt/default-3.png new file mode 100644 index 00000000..87091954 --- /dev/null +++ b/Skins/心kokoro dt/default-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806637db7e584d0ca13abccc95b89ac40b66629945a4f0c12e32dfb0ae14bd2b +size 2600 diff --git a/Skins/心kokoro dt/default-4.png b/Skins/心kokoro dt/default-4.png new file mode 100644 index 00000000..3525ebfe --- /dev/null +++ b/Skins/心kokoro dt/default-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ae038137fb0e0dd7c9ce6f2eedebf5f54b03eb20128a1ae75d2a16961baf3f +size 1668 diff --git a/Skins/心kokoro dt/default-5.png b/Skins/心kokoro dt/default-5.png new file mode 100644 index 00000000..8069fa50 --- /dev/null +++ b/Skins/心kokoro dt/default-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581eec904b3bf33091b17f4f23fc68b5652484fb9194020b3bfc658a14d0ab6e +size 2172 diff --git a/Skins/心kokoro dt/default-6.png b/Skins/心kokoro dt/default-6.png new file mode 100644 index 00000000..1e4bb9ac --- /dev/null +++ b/Skins/心kokoro dt/default-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a88aecdde29c07e847c5a20647f4dde0e9a5c404c7435794d2f4be97d915b7 +size 2152 diff --git a/Skins/心kokoro dt/default-7.png b/Skins/心kokoro dt/default-7.png new file mode 100644 index 00000000..9ba04da9 --- /dev/null +++ b/Skins/心kokoro dt/default-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2eba1ceeebe31921d47d272490fc24659dc7d4ce4941d39dfe571643e3a64ba +size 1711 diff --git a/Skins/心kokoro dt/default-8.png b/Skins/心kokoro dt/default-8.png new file mode 100644 index 00000000..c092861b --- /dev/null +++ b/Skins/心kokoro dt/default-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dc6d5187cedd1701bf84c11871ac885951c2712edf3ce0876d6498f2770d7a +size 2555 diff --git a/Skins/心kokoro dt/default-9.png b/Skins/心kokoro dt/default-9.png new file mode 100644 index 00000000..ad0038a9 --- /dev/null +++ b/Skins/心kokoro dt/default-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445243872032ef35afd20b507e5e4ae3d3412a1dfd0d6cce96d8a68b3f004939 +size 2271 diff --git a/Skins/心kokoro dt/drum--hitwhistle.wav b/Skins/心kokoro dt/drum--hitwhistle.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/drum--hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/drum-hitclap.wav b/Skins/心kokoro dt/drum-hitclap.wav new file mode 100644 index 00000000..64448b41 --- /dev/null +++ b/Skins/心kokoro dt/drum-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8219f0f890f7fb9f99966776d32376f72baf1772b236892670f123dd4ba90898 +size 3442 diff --git a/Skins/心kokoro dt/drum-hitclap2.wav b/Skins/心kokoro dt/drum-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/心kokoro dt/drum-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/心kokoro dt/drum-hitfinish.wav b/Skins/心kokoro dt/drum-hitfinish.wav new file mode 100644 index 00000000..0cb8f3eb --- /dev/null +++ b/Skins/心kokoro dt/drum-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22ad3d2af2f493890ad6a399764697614354222f1054d349694bd3dd416a227 +size 18808 diff --git a/Skins/心kokoro dt/drum-hitnormal.wav b/Skins/心kokoro dt/drum-hitnormal.wav new file mode 100644 index 00000000..78623d91 --- /dev/null +++ b/Skins/心kokoro dt/drum-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02d4e3ec94922f331e1c4da10efb3c9de2b13ae278d203e73b40178d9b8df2 +size 23516 diff --git a/Skins/心kokoro dt/drum-hitnormalh.wav b/Skins/心kokoro dt/drum-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/心kokoro dt/drum-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/心kokoro dt/drum-hitwhistle.wav b/Skins/心kokoro dt/drum-hitwhistle.wav new file mode 100644 index 00000000..9afea026 --- /dev/null +++ b/Skins/心kokoro dt/drum-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1beaeb5455a57857b821e77da2e582084e87c65b1a56ef89be398ce8ce9a9c68 +size 145548 diff --git a/Skins/心kokoro dt/drum-sliderslide.wav b/Skins/心kokoro dt/drum-sliderslide.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/心kokoro dt/drum-slidertick.wav b/Skins/心kokoro dt/drum-slidertick.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/心kokoro dt/drum-sliderwhistle.wav b/Skins/心kokoro dt/drum-sliderwhistle.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/心kokoro dt/fail-background.png b/Skins/心kokoro dt/fail-background.png new file mode 100644 index 00000000..36617265 --- /dev/null +++ b/Skins/心kokoro dt/fail-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bfae19340ff9da97be4f401b0b2704013f20821cfdd4c06ad9054e7747537f8 +size 421203 diff --git a/Skins/心kokoro dt/fail-background@2x.png b/Skins/心kokoro dt/fail-background@2x.png new file mode 100644 index 00000000..9b0ee1d7 --- /dev/null +++ b/Skins/心kokoro dt/fail-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48abd9c9a45a796692f7591acc674a98fd7cf1217115e89f2b4d2c7bdf1fafa2 +size 1249652 diff --git a/Skins/心kokoro dt/failsound.wav b/Skins/心kokoro dt/failsound.wav new file mode 100644 index 00000000..e69de29b diff --git a/Skins/心kokoro dt/followpoint-0.png b/Skins/心kokoro dt/followpoint-0.png new file mode 100644 index 00000000..1eb56397 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21b4f7d6b57ce14a0655bfda5ece7d4a03e3250bf0bd5a57f530b5923684e3b +size 2799 diff --git a/Skins/心kokoro dt/followpoint-1.png b/Skins/心kokoro dt/followpoint-1.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/followpoint-2.png b/Skins/心kokoro dt/followpoint-2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/followpoint-3.png b/Skins/心kokoro dt/followpoint-3.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/心kokoro dt/followpoint-4.png b/Skins/心kokoro dt/followpoint-4.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/心kokoro dt/followpoint-5.png b/Skins/心kokoro dt/followpoint-5.png new file mode 100644 index 00000000..3aec6469 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fff0bb01069dadf5ade7f58cbde8480b04954663206c34bb156975694a549 +size 767 diff --git a/Skins/心kokoro dt/followpoint-6.png b/Skins/心kokoro dt/followpoint-6.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/followpoint-7.png b/Skins/心kokoro dt/followpoint-7.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/followpoint-8.png b/Skins/心kokoro dt/followpoint-8.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/followpoint-9.png b/Skins/心kokoro dt/followpoint-9.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/followpoint-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/followpoint.png b/Skins/心kokoro dt/followpoint.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/心kokoro dt/followpoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/心kokoro dt/go.png b/Skins/心kokoro dt/go.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/心kokoro dt/go.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/心kokoro dt/gos.wav b/Skins/心kokoro dt/gos.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/gos.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/hit0-0.png b/Skins/心kokoro dt/hit0-0.png new file mode 100644 index 00000000..45ebeb9c --- /dev/null +++ b/Skins/心kokoro dt/hit0-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4168db95959d755e6d12676a63de49edb0d04b0d5c057a9f1e5cc5504369630d +size 2310 diff --git a/Skins/心kokoro dt/hit0-0@2x.png b/Skins/心kokoro dt/hit0-0@2x.png new file mode 100644 index 00000000..b5d110ff --- /dev/null +++ b/Skins/心kokoro dt/hit0-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6769702bcaa25019a0cbbc1c32194ca7ed4e2cc91640c7d5bd0aec3f1c76e244 +size 4323 diff --git a/Skins/心kokoro dt/hit0-1.png b/Skins/心kokoro dt/hit0-1.png new file mode 100644 index 00000000..32c092d9 --- /dev/null +++ b/Skins/心kokoro dt/hit0-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4501b958acc263fe8c3e3c2c233c096695f3a384dfcc5be398e05986c9d45a +size 2310 diff --git a/Skins/心kokoro dt/hit0-10.png b/Skins/心kokoro dt/hit0-10.png new file mode 100644 index 00000000..5894e6f2 --- /dev/null +++ b/Skins/心kokoro dt/hit0-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d54b6aa82bec6a0725f920dfaa6c36b7c551e3dd5389284aeb169214b1a244 +size 2334 diff --git a/Skins/心kokoro dt/hit0-10@2x.png b/Skins/心kokoro dt/hit0-10@2x.png new file mode 100644 index 00000000..e1d56701 --- /dev/null +++ b/Skins/心kokoro dt/hit0-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0991b1020c2b4fb4566be8111c9d3ed730c718832846583e9d5ab4f70affcc12 +size 5408 diff --git a/Skins/心kokoro dt/hit0-11.png b/Skins/心kokoro dt/hit0-11.png new file mode 100644 index 00000000..9847491e --- /dev/null +++ b/Skins/心kokoro dt/hit0-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad5ee74f3604324c12bc77fde6522858485e2ea3de52621a0440eda787152b24 +size 2356 diff --git a/Skins/心kokoro dt/hit0-11@2x.png b/Skins/心kokoro dt/hit0-11@2x.png new file mode 100644 index 00000000..c3709675 --- /dev/null +++ b/Skins/心kokoro dt/hit0-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eacd17b4a5a4668e124cb8b31b491f829565397199030cb93a76f5b80a638044 +size 5440 diff --git a/Skins/心kokoro dt/hit0-12.png b/Skins/心kokoro dt/hit0-12.png new file mode 100644 index 00000000..5d3da184 --- /dev/null +++ b/Skins/心kokoro dt/hit0-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b276523873c0185f2fb13de6d00525316ca354021a651a33828aeabcc77d9395 +size 2374 diff --git a/Skins/心kokoro dt/hit0-12@2x.png b/Skins/心kokoro dt/hit0-12@2x.png new file mode 100644 index 00000000..124337b0 --- /dev/null +++ b/Skins/心kokoro dt/hit0-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb88a3c62f1a1bf363dd60bb3497a1282ad9c281d670db07d17039fc6ff2d99 +size 5486 diff --git a/Skins/心kokoro dt/hit0-13.png b/Skins/心kokoro dt/hit0-13.png new file mode 100644 index 00000000..c154ce10 --- /dev/null +++ b/Skins/心kokoro dt/hit0-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da0f4bd6b06ba9c1529e17ec54769d71c3f215e41a41ccf23b7bafd2a9c6d307 +size 2397 diff --git a/Skins/心kokoro dt/hit0-13@2x.png b/Skins/心kokoro dt/hit0-13@2x.png new file mode 100644 index 00000000..729e8d72 --- /dev/null +++ b/Skins/心kokoro dt/hit0-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a043a819f884a820dbb1507a6dadd636ed3de48d5314e4cf30c4aef781fe67 +size 5655 diff --git a/Skins/心kokoro dt/hit0-14.png b/Skins/心kokoro dt/hit0-14.png new file mode 100644 index 00000000..45756418 --- /dev/null +++ b/Skins/心kokoro dt/hit0-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f9b9a1df696b5b1012d58b25145dcf337aae8339c72c7528556729bd7b947e +size 2455 diff --git a/Skins/心kokoro dt/hit0-14@2x.png b/Skins/心kokoro dt/hit0-14@2x.png new file mode 100644 index 00000000..d3de5734 --- /dev/null +++ b/Skins/心kokoro dt/hit0-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f0aad9ff6ba77a6fe8ca4d9a44c358f454b58a0bb3675519d02acda692fe5a5 +size 5744 diff --git a/Skins/心kokoro dt/hit0-15.png b/Skins/心kokoro dt/hit0-15.png new file mode 100644 index 00000000..f529cd32 --- /dev/null +++ b/Skins/心kokoro dt/hit0-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ac5231b2a067b5d2076aacdc9f2f70c5b7dec267b03b681d04fc9eec920324 +size 2510 diff --git a/Skins/心kokoro dt/hit0-15@2x.png b/Skins/心kokoro dt/hit0-15@2x.png new file mode 100644 index 00000000..261b4c1f --- /dev/null +++ b/Skins/心kokoro dt/hit0-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d93f1e4c362c1ff24788050c99608917b8ec878815970a275e6de9f0f559114f +size 5892 diff --git a/Skins/心kokoro dt/hit0-16.png b/Skins/心kokoro dt/hit0-16.png new file mode 100644 index 00000000..7adb2b51 --- /dev/null +++ b/Skins/心kokoro dt/hit0-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:785d4e4f69185e94d48970abc62cbcf5be0812b002b5530e12097adf3979b0d8 +size 2551 diff --git a/Skins/心kokoro dt/hit0-16@2x.png b/Skins/心kokoro dt/hit0-16@2x.png new file mode 100644 index 00000000..c1500a17 --- /dev/null +++ b/Skins/心kokoro dt/hit0-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b49a5ac103f16d6eb56257f63d2c59a28f207f291be7f6f94aeb635a143f6a +size 5968 diff --git a/Skins/心kokoro dt/hit0-17.png b/Skins/心kokoro dt/hit0-17.png new file mode 100644 index 00000000..ec387204 --- /dev/null +++ b/Skins/心kokoro dt/hit0-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1975d821df7d474c9f96c2b6a80d4e6a5be2cc29f32761913ee8c1f0b1deb3f6 +size 2653 diff --git a/Skins/心kokoro dt/hit0-17@2x.png b/Skins/心kokoro dt/hit0-17@2x.png new file mode 100644 index 00000000..38b5196f --- /dev/null +++ b/Skins/心kokoro dt/hit0-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67de96638b8425978a855b2423b9d6a8580fbb0e4b89f3e82fb38cccb920d2f6 +size 6053 diff --git a/Skins/心kokoro dt/hit0-18.png b/Skins/心kokoro dt/hit0-18.png new file mode 100644 index 00000000..355b0a7f --- /dev/null +++ b/Skins/心kokoro dt/hit0-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05769c3115ff31412b34343308686ab2fb358a5b861f9ccbd9f7ac46d23d1738 +size 2686 diff --git a/Skins/心kokoro dt/hit0-18@2x.png b/Skins/心kokoro dt/hit0-18@2x.png new file mode 100644 index 00000000..3da96c1e --- /dev/null +++ b/Skins/心kokoro dt/hit0-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b825c4102978d6d58522e095aa64e1fce31c485a69d129365b439c3e9cd9b9 +size 6178 diff --git a/Skins/心kokoro dt/hit0-19.png b/Skins/心kokoro dt/hit0-19.png new file mode 100644 index 00000000..a12bc6ce --- /dev/null +++ b/Skins/心kokoro dt/hit0-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a3a0953b48eff500e3235414496720255925ec99bb94f9407773e9d7e2d4ca +size 2707 diff --git a/Skins/心kokoro dt/hit0-19@2x.png b/Skins/心kokoro dt/hit0-19@2x.png new file mode 100644 index 00000000..b5a88cdb --- /dev/null +++ b/Skins/心kokoro dt/hit0-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4d6c9b1ad73bb13eef39d62c68430cb494e817e1d82c955cf7e73321b47187 +size 6192 diff --git a/Skins/心kokoro dt/hit0-1@2x.png b/Skins/心kokoro dt/hit0-1@2x.png new file mode 100644 index 00000000..8ae36737 --- /dev/null +++ b/Skins/心kokoro dt/hit0-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c955480325e70d24fa5984d974f23a590540fde1c3c3413c529e6e728bea4af +size 4323 diff --git a/Skins/心kokoro dt/hit0-2.png b/Skins/心kokoro dt/hit0-2.png new file mode 100644 index 00000000..11685cc9 --- /dev/null +++ b/Skins/心kokoro dt/hit0-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49217e5c4268bad550cfc63476256716e54ad98f4748742f941a7d81f3e762c +size 2278 diff --git a/Skins/心kokoro dt/hit0-20.png b/Skins/心kokoro dt/hit0-20.png new file mode 100644 index 00000000..8ab2d3fa --- /dev/null +++ b/Skins/心kokoro dt/hit0-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:453c5419c652152291a925156dec399ea8c32eff108feb80330e45d31d0eb06d +size 2817 diff --git a/Skins/心kokoro dt/hit0-20@2x.png b/Skins/心kokoro dt/hit0-20@2x.png new file mode 100644 index 00000000..944074c2 --- /dev/null +++ b/Skins/心kokoro dt/hit0-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e6b2cf5be714d4782cdc94d4017116909d16f573bed4c070c78ef21502f249 +size 6198 diff --git a/Skins/心kokoro dt/hit0-21.png b/Skins/心kokoro dt/hit0-21.png new file mode 100644 index 00000000..72763768 --- /dev/null +++ b/Skins/心kokoro dt/hit0-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d1cbaf1ff4162bf01355cb4ea7015880aa5e595ea4ff160e58dee48689efbad +size 2817 diff --git a/Skins/心kokoro dt/hit0-21@2x.png b/Skins/心kokoro dt/hit0-21@2x.png new file mode 100644 index 00000000..a573f936 --- /dev/null +++ b/Skins/心kokoro dt/hit0-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03c9ecd0b9e8b6bb8a7a9b64ad74e41c109b8e3b468c553f97321676f6f2278e +size 6198 diff --git a/Skins/心kokoro dt/hit0-22.png b/Skins/心kokoro dt/hit0-22.png new file mode 100644 index 00000000..26559cb7 --- /dev/null +++ b/Skins/心kokoro dt/hit0-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57e565e55bfe2d30bf394c06199b2ed48a40ff9d8a3a40f6c3c29b03ed94ca6 +size 2817 diff --git a/Skins/心kokoro dt/hit0-22@2x.png b/Skins/心kokoro dt/hit0-22@2x.png new file mode 100644 index 00000000..95a3a6a7 --- /dev/null +++ b/Skins/心kokoro dt/hit0-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c20a02f0c32b0ba101ad38b2af17f2ea43391ec3916d48de45c6b77b412cc0c +size 6198 diff --git a/Skins/心kokoro dt/hit0-23.png b/Skins/心kokoro dt/hit0-23.png new file mode 100644 index 00000000..c1a620d9 --- /dev/null +++ b/Skins/心kokoro dt/hit0-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab930beadb90793a570c7a8d6f9bfe42d028a9d1774f46d8237d526531060ad +size 2817 diff --git a/Skins/心kokoro dt/hit0-23@2x.png b/Skins/心kokoro dt/hit0-23@2x.png new file mode 100644 index 00000000..5a8c6e6a --- /dev/null +++ b/Skins/心kokoro dt/hit0-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2432a638a870482c4163d9a962a99700b984805d13265ffd8b2f5f2bb5ebe646 +size 6198 diff --git a/Skins/心kokoro dt/hit0-24.png b/Skins/心kokoro dt/hit0-24.png new file mode 100644 index 00000000..dfd25412 --- /dev/null +++ b/Skins/心kokoro dt/hit0-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cae2c5519a9d328b992498284e5672b3496ce160ef4e1150d9f58f41950706f +size 2817 diff --git a/Skins/心kokoro dt/hit0-24@2x.png b/Skins/心kokoro dt/hit0-24@2x.png new file mode 100644 index 00000000..05d20b81 --- /dev/null +++ b/Skins/心kokoro dt/hit0-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:824b0b523ddfc18d2069408d114292973d689f846ac1ab64141efa1eb24bc32a +size 6198 diff --git a/Skins/心kokoro dt/hit0-25.png b/Skins/心kokoro dt/hit0-25.png new file mode 100644 index 00000000..947b839b --- /dev/null +++ b/Skins/心kokoro dt/hit0-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f730ae5d8fe2abc80086235c772202400a7cbbee5d468ca01f66c50e3e3a51ad +size 2817 diff --git a/Skins/心kokoro dt/hit0-25@2x.png b/Skins/心kokoro dt/hit0-25@2x.png new file mode 100644 index 00000000..b10a54ea --- /dev/null +++ b/Skins/心kokoro dt/hit0-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab8ddab7d03ec35ecdcce44a705cfede5ba0f3f1817a2e6cc5df8224f08765b +size 6119 diff --git a/Skins/心kokoro dt/hit0-26.png b/Skins/心kokoro dt/hit0-26.png new file mode 100644 index 00000000..2c6d6fc0 --- /dev/null +++ b/Skins/心kokoro dt/hit0-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb0cfe30d6d22ae9e2db8b716141932a32d106b3f028216a717388068f10459 +size 2817 diff --git a/Skins/心kokoro dt/hit0-26@2x.png b/Skins/心kokoro dt/hit0-26@2x.png new file mode 100644 index 00000000..7e7e940b --- /dev/null +++ b/Skins/心kokoro dt/hit0-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b20c44e80599048cb82ab23a859b13cfaf536e3bcb8fd2c1eb8c411c5ce160d +size 6119 diff --git a/Skins/心kokoro dt/hit0-27.png b/Skins/心kokoro dt/hit0-27.png new file mode 100644 index 00000000..c25d8331 --- /dev/null +++ b/Skins/心kokoro dt/hit0-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a7563cf08eb99d697bd5f306150aeba58302bc3b4092c1ca67ee672ad47970 +size 2817 diff --git a/Skins/心kokoro dt/hit0-27@2x.png b/Skins/心kokoro dt/hit0-27@2x.png new file mode 100644 index 00000000..3b260b00 --- /dev/null +++ b/Skins/心kokoro dt/hit0-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ec428f227271ea16841d19bea34f0d22902f1ec1e00e7c211741c92af07ffc8 +size 6198 diff --git a/Skins/心kokoro dt/hit0-28.png b/Skins/心kokoro dt/hit0-28.png new file mode 100644 index 00000000..decfeaec --- /dev/null +++ b/Skins/心kokoro dt/hit0-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6186ef95cfbcd559068899c78feef4a1ce839494fe5d67960b141c841d8143 +size 2817 diff --git a/Skins/心kokoro dt/hit0-28@2x.png b/Skins/心kokoro dt/hit0-28@2x.png new file mode 100644 index 00000000..6ddfd9e5 --- /dev/null +++ b/Skins/心kokoro dt/hit0-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1aeea6a54f9ee7df0e22e354bac7049a816848726cdcc3028d21f2df50b82e8 +size 6119 diff --git a/Skins/心kokoro dt/hit0-29.png b/Skins/心kokoro dt/hit0-29.png new file mode 100644 index 00000000..37245baa --- /dev/null +++ b/Skins/心kokoro dt/hit0-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45fee399171ab6e8ee35a73703500f62067f1daf4eee710507513f566610d6e +size 2817 diff --git a/Skins/心kokoro dt/hit0-29@2x.png b/Skins/心kokoro dt/hit0-29@2x.png new file mode 100644 index 00000000..7dcbb8fe --- /dev/null +++ b/Skins/心kokoro dt/hit0-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33345cae7d36f32bf384170d35b1be77fe47b2330c9db059594c8f8bac8141a5 +size 6198 diff --git a/Skins/心kokoro dt/hit0-2@2x.png b/Skins/心kokoro dt/hit0-2@2x.png new file mode 100644 index 00000000..24138d3e --- /dev/null +++ b/Skins/心kokoro dt/hit0-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736fc7ec68102a7f8c5aec5bcaf4dba77179942f50ed7fd867b68937eef9021b +size 4548 diff --git a/Skins/心kokoro dt/hit0-3.png b/Skins/心kokoro dt/hit0-3.png new file mode 100644 index 00000000..f310ac26 --- /dev/null +++ b/Skins/心kokoro dt/hit0-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf633751664a1f9842003c08f858d6e8608e386b06d94c6c3c2a71bf09b997c +size 2267 diff --git a/Skins/心kokoro dt/hit0-30.png b/Skins/心kokoro dt/hit0-30.png new file mode 100644 index 00000000..6ebd75ee --- /dev/null +++ b/Skins/心kokoro dt/hit0-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ff04c77c58daf6afc96f4548c3522d0d7941d0f1820089478353f9fdb134b7 +size 2817 diff --git a/Skins/心kokoro dt/hit0-30@2x.png b/Skins/心kokoro dt/hit0-30@2x.png new file mode 100644 index 00000000..12385972 --- /dev/null +++ b/Skins/心kokoro dt/hit0-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5258cf5261afb49ae192db7ac95bbda152dfb03a76635f30bf3849e896b99def +size 6198 diff --git a/Skins/心kokoro dt/hit0-31.png b/Skins/心kokoro dt/hit0-31.png new file mode 100644 index 00000000..dffc6c70 --- /dev/null +++ b/Skins/心kokoro dt/hit0-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76387ed7b0626dec03638df49bb077f66644cca49335585181148a82424826a +size 2788 diff --git a/Skins/心kokoro dt/hit0-31@2x.png b/Skins/心kokoro dt/hit0-31@2x.png new file mode 100644 index 00000000..cf379928 --- /dev/null +++ b/Skins/心kokoro dt/hit0-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc08a577377973b9438e8becd01d303ae2c2c11aaa2de39aea5d8cd8d5b4989 +size 6362 diff --git a/Skins/心kokoro dt/hit0-32.png b/Skins/心kokoro dt/hit0-32.png new file mode 100644 index 00000000..4ceec0f2 --- /dev/null +++ b/Skins/心kokoro dt/hit0-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8609405cdcf4eeaae2f5f7b117a1192bba35afc356bb8142c8c9623fc4624c3d +size 2728 diff --git a/Skins/心kokoro dt/hit0-32@2x.png b/Skins/心kokoro dt/hit0-32@2x.png new file mode 100644 index 00000000..b8e94cd2 --- /dev/null +++ b/Skins/心kokoro dt/hit0-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dcde3f1e43f357ddebf6032bead9526cc754402d3bb28b563de28a588fff943 +size 6252 diff --git a/Skins/心kokoro dt/hit0-33.png b/Skins/心kokoro dt/hit0-33.png new file mode 100644 index 00000000..0e565abb --- /dev/null +++ b/Skins/心kokoro dt/hit0-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d04b2f040adda011516a8163993637ded2755efa41f1e4a98f406dc503aad1 +size 2703 diff --git a/Skins/心kokoro dt/hit0-33@2x.png b/Skins/心kokoro dt/hit0-33@2x.png new file mode 100644 index 00000000..a057f78a --- /dev/null +++ b/Skins/心kokoro dt/hit0-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d846dcce89948bcd6e771f1ad187b34b4ec1a89af08347bb46a2de2e95413a +size 6097 diff --git a/Skins/心kokoro dt/hit0-34.png b/Skins/心kokoro dt/hit0-34.png new file mode 100644 index 00000000..1fa77db7 --- /dev/null +++ b/Skins/心kokoro dt/hit0-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bb5bd51f8bcf942520eef00d6b37652d56b3782f577b7adea127046b872cad +size 2634 diff --git a/Skins/心kokoro dt/hit0-34@2x.png b/Skins/心kokoro dt/hit0-34@2x.png new file mode 100644 index 00000000..b1a7c80c --- /dev/null +++ b/Skins/心kokoro dt/hit0-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd281d8fade00de40ab4f1202c6cb6b3d87a2660cb2a8807ba3a688e4acb4ddd +size 5834 diff --git a/Skins/心kokoro dt/hit0-35.png b/Skins/心kokoro dt/hit0-35.png new file mode 100644 index 00000000..262c65c2 --- /dev/null +++ b/Skins/心kokoro dt/hit0-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f93f8c9e6d8e71c3a41976686819dbdb20255dd2ee13428461dd6036e78c85 +size 2553 diff --git a/Skins/心kokoro dt/hit0-35@2x.png b/Skins/心kokoro dt/hit0-35@2x.png new file mode 100644 index 00000000..7f11e93f --- /dev/null +++ b/Skins/心kokoro dt/hit0-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b18be5183323d814b1fd1b6d4c64576e88db6fd0c8272da6249e4adae568d9 +size 5385 diff --git a/Skins/心kokoro dt/hit0-36.png b/Skins/心kokoro dt/hit0-36.png new file mode 100644 index 00000000..a16fb21c --- /dev/null +++ b/Skins/心kokoro dt/hit0-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba46c964387e2da0a374781dc120b4eb18778ac7487bc0269c20abbfd62614cf +size 2475 diff --git a/Skins/心kokoro dt/hit0-36@2x.png b/Skins/心kokoro dt/hit0-36@2x.png new file mode 100644 index 00000000..94a1573f --- /dev/null +++ b/Skins/心kokoro dt/hit0-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beff24f9057e19b780ecc63fcdbd4d67142e75d09e505a41e218d4277aadc918 +size 5285 diff --git a/Skins/心kokoro dt/hit0-37.png b/Skins/心kokoro dt/hit0-37.png new file mode 100644 index 00000000..6e5c4bc0 --- /dev/null +++ b/Skins/心kokoro dt/hit0-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1ee738bb79235c55a07aa3af28c7e79f1505bcc56c0e8f696b0db197a16de0 +size 2384 diff --git a/Skins/心kokoro dt/hit0-37@2x.png b/Skins/心kokoro dt/hit0-37@2x.png new file mode 100644 index 00000000..95159f4b --- /dev/null +++ b/Skins/心kokoro dt/hit0-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eced49f654164b192c4f9c46f698e02c715a6cdf7ffde7494c5615e580410432 +size 4987 diff --git a/Skins/心kokoro dt/hit0-38.png b/Skins/心kokoro dt/hit0-38.png new file mode 100644 index 00000000..ee3e70e3 --- /dev/null +++ b/Skins/心kokoro dt/hit0-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c525acd80d6f36a2c4e48ee68d132d300132ff04d3dc34fcac7aa6e743b1036c +size 2195 diff --git a/Skins/心kokoro dt/hit0-38@2x.png b/Skins/心kokoro dt/hit0-38@2x.png new file mode 100644 index 00000000..d3cedd60 --- /dev/null +++ b/Skins/心kokoro dt/hit0-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982795df0aa2723635c50825c96452fac066d81a55a6abd4af0dd5c7c721e79c +size 4642 diff --git a/Skins/心kokoro dt/hit0-39.png b/Skins/心kokoro dt/hit0-39.png new file mode 100644 index 00000000..3cf89fb3 --- /dev/null +++ b/Skins/心kokoro dt/hit0-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336d3f2b5342c88c9adbac1de40838d4b92dd624568b539b27768b7fb3c4e0e2 +size 1981 diff --git a/Skins/心kokoro dt/hit0-39@2x.png b/Skins/心kokoro dt/hit0-39@2x.png new file mode 100644 index 00000000..91bfe0e0 --- /dev/null +++ b/Skins/心kokoro dt/hit0-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7e1f772ee9ab35b4f453c6777f726d350d0c0b983cd4376af3ffb62fdce805 +size 4169 diff --git a/Skins/心kokoro dt/hit0-3@2x.png b/Skins/心kokoro dt/hit0-3@2x.png new file mode 100644 index 00000000..6ebe4673 --- /dev/null +++ b/Skins/心kokoro dt/hit0-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369a5b6ce36ff9f80ba3f7d836b977f027264f66cdc48e7f7bc1b860fe0c6abf +size 4780 diff --git a/Skins/心kokoro dt/hit0-4.png b/Skins/心kokoro dt/hit0-4.png new file mode 100644 index 00000000..aad36684 --- /dev/null +++ b/Skins/心kokoro dt/hit0-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed347bf0992e2eebb76f2fcadaa1ff20b2d5e8b28c395176d4ea65ae1efbfe4 +size 2311 diff --git a/Skins/心kokoro dt/hit0-40.png b/Skins/心kokoro dt/hit0-40.png new file mode 100644 index 00000000..765a7c88 --- /dev/null +++ b/Skins/心kokoro dt/hit0-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5929f451be6c2d78e2641d7402b05293f9c3fe96e04c511c80cfedb25d4919fb +size 303 diff --git a/Skins/心kokoro dt/hit0-40@2x.png b/Skins/心kokoro dt/hit0-40@2x.png new file mode 100644 index 00000000..6b037b11 --- /dev/null +++ b/Skins/心kokoro dt/hit0-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffdb3349721c658d57af475f854f3600bc7d019796849abe829e3ae83fb1f8e +size 15279 diff --git a/Skins/心kokoro dt/hit0-41.png b/Skins/心kokoro dt/hit0-41.png new file mode 100644 index 00000000..765a7c88 --- /dev/null +++ b/Skins/心kokoro dt/hit0-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5929f451be6c2d78e2641d7402b05293f9c3fe96e04c511c80cfedb25d4919fb +size 303 diff --git a/Skins/心kokoro dt/hit0-41@2x.png b/Skins/心kokoro dt/hit0-41@2x.png new file mode 100644 index 00000000..b8e196c3 --- /dev/null +++ b/Skins/心kokoro dt/hit0-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26adb25a85667981e9ae2ac348e35abe436577d94645beb3eec0e026deae198 +size 15279 diff --git a/Skins/心kokoro dt/hit0-42.png b/Skins/心kokoro dt/hit0-42.png new file mode 100644 index 00000000..765a7c88 --- /dev/null +++ b/Skins/心kokoro dt/hit0-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5929f451be6c2d78e2641d7402b05293f9c3fe96e04c511c80cfedb25d4919fb +size 303 diff --git a/Skins/心kokoro dt/hit0-42@2x.png b/Skins/心kokoro dt/hit0-42@2x.png new file mode 100644 index 00000000..d3948e3e --- /dev/null +++ b/Skins/心kokoro dt/hit0-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4e53c8a39706a8fd0db3d26179c3620850d7c718431ff8ace196ddc72315abb +size 15279 diff --git a/Skins/心kokoro dt/hit0-43.png b/Skins/心kokoro dt/hit0-43.png new file mode 100644 index 00000000..3164670b --- /dev/null +++ b/Skins/心kokoro dt/hit0-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85de8b9ef83288d5ad622180b59ac6c465131f083bfb46d824ba3a847882de4d +size 303 diff --git a/Skins/心kokoro dt/hit0-43@2x.png b/Skins/心kokoro dt/hit0-43@2x.png new file mode 100644 index 00000000..193d0f4d --- /dev/null +++ b/Skins/心kokoro dt/hit0-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f81a0488867e35361f3c69d061cae12d32ddaed0106b9b403ff0d83c81c08c99 +size 15279 diff --git a/Skins/心kokoro dt/hit0-44.png b/Skins/心kokoro dt/hit0-44.png new file mode 100644 index 00000000..3164670b --- /dev/null +++ b/Skins/心kokoro dt/hit0-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85de8b9ef83288d5ad622180b59ac6c465131f083bfb46d824ba3a847882de4d +size 303 diff --git a/Skins/心kokoro dt/hit0-44@2x.png b/Skins/心kokoro dt/hit0-44@2x.png new file mode 100644 index 00000000..b8c3ad50 --- /dev/null +++ b/Skins/心kokoro dt/hit0-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d8cd33798bc7a703e20e684771cf6970f2152eb8602b12b1b6b6372218d8b29 +size 15279 diff --git a/Skins/心kokoro dt/hit0-45.png b/Skins/心kokoro dt/hit0-45.png new file mode 100644 index 00000000..3164670b --- /dev/null +++ b/Skins/心kokoro dt/hit0-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85de8b9ef83288d5ad622180b59ac6c465131f083bfb46d824ba3a847882de4d +size 303 diff --git a/Skins/心kokoro dt/hit0-45@2x.png b/Skins/心kokoro dt/hit0-45@2x.png new file mode 100644 index 00000000..c15f3c9d --- /dev/null +++ b/Skins/心kokoro dt/hit0-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e60033bab32f7fa251a1274436b3cf04818f1262584612e9b8226ecd93a2415d +size 15279 diff --git a/Skins/心kokoro dt/hit0-46.png b/Skins/心kokoro dt/hit0-46.png new file mode 100644 index 00000000..3164670b --- /dev/null +++ b/Skins/心kokoro dt/hit0-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85de8b9ef83288d5ad622180b59ac6c465131f083bfb46d824ba3a847882de4d +size 303 diff --git a/Skins/心kokoro dt/hit0-46@2x.png b/Skins/心kokoro dt/hit0-46@2x.png new file mode 100644 index 00000000..f0a73968 --- /dev/null +++ b/Skins/心kokoro dt/hit0-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e81e30afc1fa600ad934ac9ddd0fa3ee8a3fdc185ff1fb085192eeda141714 +size 15279 diff --git a/Skins/心kokoro dt/hit0-47.png b/Skins/心kokoro dt/hit0-47.png new file mode 100644 index 00000000..367373f8 --- /dev/null +++ b/Skins/心kokoro dt/hit0-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fa7db909d4b48726120edbcd5ba779e75c2309b19509577c3491598e8be8c95 +size 303 diff --git a/Skins/心kokoro dt/hit0-47@2x.png b/Skins/心kokoro dt/hit0-47@2x.png new file mode 100644 index 00000000..0637e2a8 --- /dev/null +++ b/Skins/心kokoro dt/hit0-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:443e240527974b9e0333432f162b546d95f308a39bdd4a941618977565a12c76 +size 15279 diff --git a/Skins/心kokoro dt/hit0-48.png b/Skins/心kokoro dt/hit0-48.png new file mode 100644 index 00000000..367373f8 --- /dev/null +++ b/Skins/心kokoro dt/hit0-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fa7db909d4b48726120edbcd5ba779e75c2309b19509577c3491598e8be8c95 +size 303 diff --git a/Skins/心kokoro dt/hit0-48@2x.png b/Skins/心kokoro dt/hit0-48@2x.png new file mode 100644 index 00000000..f41ab7ff --- /dev/null +++ b/Skins/心kokoro dt/hit0-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1673c8af64717b0d41ebcc5e088e20abcca9f123dc94e320608936f09cd870a0 +size 15279 diff --git a/Skins/心kokoro dt/hit0-49.png b/Skins/心kokoro dt/hit0-49.png new file mode 100644 index 00000000..367373f8 --- /dev/null +++ b/Skins/心kokoro dt/hit0-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fa7db909d4b48726120edbcd5ba779e75c2309b19509577c3491598e8be8c95 +size 303 diff --git a/Skins/心kokoro dt/hit0-49@2x.png b/Skins/心kokoro dt/hit0-49@2x.png new file mode 100644 index 00000000..c71facf1 --- /dev/null +++ b/Skins/心kokoro dt/hit0-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f24d7e1d70a10e5d8435e07373fcf6baa9f40fa5ef177250ccf2ceb0175e0111 +size 15279 diff --git a/Skins/心kokoro dt/hit0-4@2x.png b/Skins/心kokoro dt/hit0-4@2x.png new file mode 100644 index 00000000..55a1399b --- /dev/null +++ b/Skins/心kokoro dt/hit0-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868f1ae0b19d0904d6d94dcfac6041987cdeb25bcddc8053bfb6a424e8a6ab57 +size 4919 diff --git a/Skins/心kokoro dt/hit0-5.png b/Skins/心kokoro dt/hit0-5.png new file mode 100644 index 00000000..b75e4938 --- /dev/null +++ b/Skins/心kokoro dt/hit0-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905fec143efa696de8258dda611f20805c51209a003e0925451d713566c81ac3 +size 2321 diff --git a/Skins/心kokoro dt/hit0-5@2x.png b/Skins/心kokoro dt/hit0-5@2x.png new file mode 100644 index 00000000..53573f41 --- /dev/null +++ b/Skins/心kokoro dt/hit0-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:664d8b5f801cd16e50b845c71af2777efbda138d224b4e205f9f52d7a0a07190 +size 5055 diff --git a/Skins/心kokoro dt/hit0-6.png b/Skins/心kokoro dt/hit0-6.png new file mode 100644 index 00000000..0902d0cd --- /dev/null +++ b/Skins/心kokoro dt/hit0-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de0dfd57a4a40da58e7206d4a92ff14cec144f99dd09be09b52381d4aca67ab1 +size 2296 diff --git a/Skins/心kokoro dt/hit0-6@2x.png b/Skins/心kokoro dt/hit0-6@2x.png new file mode 100644 index 00000000..efdb494c --- /dev/null +++ b/Skins/心kokoro dt/hit0-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1fcc2192b81af284a602d2f0bda5c6ffaf4854c413a349ecee0b9f7cbe9e5da +size 5144 diff --git a/Skins/心kokoro dt/hit0-7.png b/Skins/心kokoro dt/hit0-7.png new file mode 100644 index 00000000..a8f63cf8 --- /dev/null +++ b/Skins/心kokoro dt/hit0-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2676ed6ac5a77afaf93bbc78b12549937137e11494dfc7f775a9bde50640efe7 +size 2297 diff --git a/Skins/心kokoro dt/hit0-7@2x.png b/Skins/心kokoro dt/hit0-7@2x.png new file mode 100644 index 00000000..3725c698 --- /dev/null +++ b/Skins/心kokoro dt/hit0-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6c065535c3c2b1a0b7010c0289a7f884117f6b376f8aa8f2a2c0d088675871 +size 5187 diff --git a/Skins/心kokoro dt/hit0-8.png b/Skins/心kokoro dt/hit0-8.png new file mode 100644 index 00000000..b69fe863 --- /dev/null +++ b/Skins/心kokoro dt/hit0-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2c8893cfc6514ea7093c554e14a3c445bc517402fcabd66f5d0d63d259b8bd +size 2291 diff --git a/Skins/心kokoro dt/hit0-8@2x.png b/Skins/心kokoro dt/hit0-8@2x.png new file mode 100644 index 00000000..eb27fdc0 --- /dev/null +++ b/Skins/心kokoro dt/hit0-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2631c8aa61c2210d658e882184c02fa66a64fe2a2a4c0d265349ca6ca50cfb +size 5226 diff --git a/Skins/心kokoro dt/hit0-9.png b/Skins/心kokoro dt/hit0-9.png new file mode 100644 index 00000000..939c9b2b --- /dev/null +++ b/Skins/心kokoro dt/hit0-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f38623d9ef810d8136baeed4bf14cd438fdf3ee83d01ba42e0f1cccca82d16 +size 2326 diff --git a/Skins/心kokoro dt/hit0-9@2x.png b/Skins/心kokoro dt/hit0-9@2x.png new file mode 100644 index 00000000..0ed1b663 --- /dev/null +++ b/Skins/心kokoro dt/hit0-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426a394bf4177e0039933e5262c99849530b783ecf40fb05b28c189eea9698c1 +size 5257 diff --git a/Skins/心kokoro dt/hit0.png b/Skins/心kokoro dt/hit0.png new file mode 100644 index 00000000..cc3b0dd8 --- /dev/null +++ b/Skins/心kokoro dt/hit0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba056f5aa677188cff85ba3c836c576632dd1564d071d8fe2fb3d938ad80f1e +size 4553 diff --git a/Skins/心kokoro dt/hit0@2x.png b/Skins/心kokoro dt/hit0@2x.png new file mode 100644 index 00000000..47fb0526 --- /dev/null +++ b/Skins/心kokoro dt/hit0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e96bb5f55c5b7447932fd202b52ee00a0b5cb07d471e5e0929e6bf963311aa +size 11251 diff --git a/Skins/心kokoro dt/hit100-0.png b/Skins/心kokoro dt/hit100-0.png new file mode 100644 index 00000000..4bd1ab7e --- /dev/null +++ b/Skins/心kokoro dt/hit100-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078bbd8a25f07ce3058b5ad9f7998ce7d2fc3054fff50efd30e13e26de10c577 +size 1128 diff --git a/Skins/心kokoro dt/hit100-0@2x.png b/Skins/心kokoro dt/hit100-0@2x.png new file mode 100644 index 00000000..d7434a03 --- /dev/null +++ b/Skins/心kokoro dt/hit100-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb4bbfed21c0beb0bb49db6ad1cd592b91ac4890d65dfd9a6ba9d106953f999 +size 16297 diff --git a/Skins/心kokoro dt/hit100-1.png b/Skins/心kokoro dt/hit100-1.png new file mode 100644 index 00000000..28fefdeb --- /dev/null +++ b/Skins/心kokoro dt/hit100-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aebfc26713c083a34ae904b1239ad2d970ce10092ec6405888a02638bcd7e098 +size 1899 diff --git a/Skins/心kokoro dt/hit100-10.png b/Skins/心kokoro dt/hit100-10.png new file mode 100644 index 00000000..19bdcdc9 --- /dev/null +++ b/Skins/心kokoro dt/hit100-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3460ef5daf15a89ff3230ac14f4e9f423210531c8b8565ddf6db91aec58062b +size 2022 diff --git a/Skins/心kokoro dt/hit100-10@2x.png b/Skins/心kokoro dt/hit100-10@2x.png new file mode 100644 index 00000000..e3dda576 --- /dev/null +++ b/Skins/心kokoro dt/hit100-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ab083f6b0c574999e76ab59cebb7e4ce580b84c83a7ac0635da4fce6bc1ec2 +size 18563 diff --git a/Skins/心kokoro dt/hit100-11.png b/Skins/心kokoro dt/hit100-11.png new file mode 100644 index 00000000..15db0367 --- /dev/null +++ b/Skins/心kokoro dt/hit100-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be01aa1fb830745447865d2285be62ed53d0ebb767a05f150ea9b1f5d05d2e1 +size 1950 diff --git a/Skins/心kokoro dt/hit100-11@2x.png b/Skins/心kokoro dt/hit100-11@2x.png new file mode 100644 index 00000000..a26d8f6e --- /dev/null +++ b/Skins/心kokoro dt/hit100-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1eb8e9266448fe3f4d1a1c42371e7988d7e580665f7a8572e2003da86667c5c +size 18535 diff --git a/Skins/心kokoro dt/hit100-12.png b/Skins/心kokoro dt/hit100-12.png new file mode 100644 index 00000000..3e2dce07 --- /dev/null +++ b/Skins/心kokoro dt/hit100-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:714610db8c4cc41e9402af465927c8d57dc831d784f33c23a4f52edf3b1faddb +size 1888 diff --git a/Skins/心kokoro dt/hit100-12@2x.png b/Skins/心kokoro dt/hit100-12@2x.png new file mode 100644 index 00000000..b373c899 --- /dev/null +++ b/Skins/心kokoro dt/hit100-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32533bbdd7481cada9bd9c641850b124b34755a16ce3abe7829d8f0f28b1d8fc +size 18382 diff --git a/Skins/心kokoro dt/hit100-13.png b/Skins/心kokoro dt/hit100-13.png new file mode 100644 index 00000000..7a721942 --- /dev/null +++ b/Skins/心kokoro dt/hit100-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d804408dd207a38293dd37f47b13d170d82477607569e3c4802d2285dfc20c6 +size 1950 diff --git a/Skins/心kokoro dt/hit100-13@2x.png b/Skins/心kokoro dt/hit100-13@2x.png new file mode 100644 index 00000000..c429efd5 --- /dev/null +++ b/Skins/心kokoro dt/hit100-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7df4adfd4b12bad6362154249b64e9eaeaa7b491187745097b895879223d70a +size 18413 diff --git a/Skins/心kokoro dt/hit100-14.png b/Skins/心kokoro dt/hit100-14.png new file mode 100644 index 00000000..d4dbdb41 --- /dev/null +++ b/Skins/心kokoro dt/hit100-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620269557070ae41de72aece0927a693eb97fe321deb029ec0acf52067fac4bc +size 1992 diff --git a/Skins/心kokoro dt/hit100-14@2x.png b/Skins/心kokoro dt/hit100-14@2x.png new file mode 100644 index 00000000..207b7997 --- /dev/null +++ b/Skins/心kokoro dt/hit100-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37006ed04142f93fe2e162858ed428e2747b46537c27e843edbbfc76a3ce865 +size 18477 diff --git a/Skins/心kokoro dt/hit100-15.png b/Skins/心kokoro dt/hit100-15.png new file mode 100644 index 00000000..2608e564 --- /dev/null +++ b/Skins/心kokoro dt/hit100-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e87cc18b1e37fca8977ab513ebcd1a0cc678786bb4ea71ae917e549833a132a +size 2038 diff --git a/Skins/心kokoro dt/hit100-15@2x.png b/Skins/心kokoro dt/hit100-15@2x.png new file mode 100644 index 00000000..bbdcceb8 --- /dev/null +++ b/Skins/心kokoro dt/hit100-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc44fbbf3762d937bc923574c6b309b7bbedfeef4c443957db36339f97ff55d +size 18673 diff --git a/Skins/心kokoro dt/hit100-16.png b/Skins/心kokoro dt/hit100-16.png new file mode 100644 index 00000000..9c99d7df --- /dev/null +++ b/Skins/心kokoro dt/hit100-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60bfebd5b6c01647f6cd8465df114650d54ed6ad8b34754a25104acd19c28e8 +size 2063 diff --git a/Skins/心kokoro dt/hit100-16@2x.png b/Skins/心kokoro dt/hit100-16@2x.png new file mode 100644 index 00000000..5783528d --- /dev/null +++ b/Skins/心kokoro dt/hit100-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c46fc61af7fc8398bb63359c7805d1f91a82da5e81f5ad0db9e769932cd2b3 +size 18870 diff --git a/Skins/心kokoro dt/hit100-17.png b/Skins/心kokoro dt/hit100-17.png new file mode 100644 index 00000000..af47f405 --- /dev/null +++ b/Skins/心kokoro dt/hit100-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a1484e7319b0289896d4e64feb07947634fe1cbc8784cd581bf95a080463d0 +size 2141 diff --git a/Skins/心kokoro dt/hit100-17@2x.png b/Skins/心kokoro dt/hit100-17@2x.png new file mode 100644 index 00000000..3e5447c7 --- /dev/null +++ b/Skins/心kokoro dt/hit100-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e416ee0140407bd78b6a9b132736765dd6ff5f60d721e96345b19c7c36dcf72 +size 18997 diff --git a/Skins/心kokoro dt/hit100-18.png b/Skins/心kokoro dt/hit100-18.png new file mode 100644 index 00000000..6c212819 --- /dev/null +++ b/Skins/心kokoro dt/hit100-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e98803549e0e957dd05cc9d4f398faa07f72ff426d71222db1c3bfb7c1abf7f +size 2165 diff --git a/Skins/心kokoro dt/hit100-18@2x.png b/Skins/心kokoro dt/hit100-18@2x.png new file mode 100644 index 00000000..d0a258b1 --- /dev/null +++ b/Skins/心kokoro dt/hit100-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d0eb88ee41af474558ff33b7bee04a375e062598b3aa8a5713af8c14bdaa6f2 +size 19158 diff --git a/Skins/心kokoro dt/hit100-19.png b/Skins/心kokoro dt/hit100-19.png new file mode 100644 index 00000000..94185fcc --- /dev/null +++ b/Skins/心kokoro dt/hit100-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6e29392f4bd7c21f84aaff8cf820ec328041c1a2e2cadc0c734c492bd1145f +size 2205 diff --git a/Skins/心kokoro dt/hit100-19@2x.png b/Skins/心kokoro dt/hit100-19@2x.png new file mode 100644 index 00000000..f9c0fcb1 --- /dev/null +++ b/Skins/心kokoro dt/hit100-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1ee8271de4a84078b691ecd90a48e995af56cb119342371040868ef18ec26fd +size 19263 diff --git a/Skins/心kokoro dt/hit100-1@2x.png b/Skins/心kokoro dt/hit100-1@2x.png new file mode 100644 index 00000000..1a03b75d --- /dev/null +++ b/Skins/心kokoro dt/hit100-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cd2af700108ba4ba6ee4bcef50fa05e5e5c91af84739ba249fe72a2aae23e47 +size 17595 diff --git a/Skins/心kokoro dt/hit100-2.png b/Skins/心kokoro dt/hit100-2.png new file mode 100644 index 00000000..1dc5793e --- /dev/null +++ b/Skins/心kokoro dt/hit100-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42eee459e675fd0e4ddfd512eea3d6d8fff8246bda0596d7d59e8f50c504fa2f +size 1945 diff --git a/Skins/心kokoro dt/hit100-20.png b/Skins/心kokoro dt/hit100-20.png new file mode 100644 index 00000000..9e1432d5 --- /dev/null +++ b/Skins/心kokoro dt/hit100-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc4177b46a90a8be2d6d3b462224db9a0527b8f9071eaf16b70cadacafe2382e +size 2288 diff --git a/Skins/心kokoro dt/hit100-20@2x.png b/Skins/心kokoro dt/hit100-20@2x.png new file mode 100644 index 00000000..0c5a1468 --- /dev/null +++ b/Skins/心kokoro dt/hit100-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19eff25823f1b6e1a4f983304247d4853f9a402d97bb9c3e53d81caa7f4d62d4 +size 19295 diff --git a/Skins/心kokoro dt/hit100-21.png b/Skins/心kokoro dt/hit100-21.png new file mode 100644 index 00000000..9e1432d5 --- /dev/null +++ b/Skins/心kokoro dt/hit100-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc4177b46a90a8be2d6d3b462224db9a0527b8f9071eaf16b70cadacafe2382e +size 2288 diff --git a/Skins/心kokoro dt/hit100-21@2x.png b/Skins/心kokoro dt/hit100-21@2x.png new file mode 100644 index 00000000..7e5534fb --- /dev/null +++ b/Skins/心kokoro dt/hit100-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:597c74a4698d1b14983168fd80676febc4f43d325a9bd0b4ab5906bf4c6bf7c9 +size 19295 diff --git a/Skins/心kokoro dt/hit100-22.png b/Skins/心kokoro dt/hit100-22.png new file mode 100644 index 00000000..939bf27c --- /dev/null +++ b/Skins/心kokoro dt/hit100-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6403fc857160aa41364c69d96ffd62ddf87559eed51e317899bbdf6d490ac287 +size 2288 diff --git a/Skins/心kokoro dt/hit100-22@2x.png b/Skins/心kokoro dt/hit100-22@2x.png new file mode 100644 index 00000000..6204e4d8 --- /dev/null +++ b/Skins/心kokoro dt/hit100-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a498c4cdf18d66ff9f50580fc6293cc374fd756fd41726c10e607bc07394d51b +size 19295 diff --git a/Skins/心kokoro dt/hit100-23.png b/Skins/心kokoro dt/hit100-23.png new file mode 100644 index 00000000..939bf27c --- /dev/null +++ b/Skins/心kokoro dt/hit100-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6403fc857160aa41364c69d96ffd62ddf87559eed51e317899bbdf6d490ac287 +size 2288 diff --git a/Skins/心kokoro dt/hit100-23@2x.png b/Skins/心kokoro dt/hit100-23@2x.png new file mode 100644 index 00000000..2a1296f1 --- /dev/null +++ b/Skins/心kokoro dt/hit100-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec935d7f96283d6ffd1af21228b281dc088edfa8acc1e333981d5e7676e00a19 +size 19295 diff --git a/Skins/心kokoro dt/hit100-24.png b/Skins/心kokoro dt/hit100-24.png new file mode 100644 index 00000000..939bf27c --- /dev/null +++ b/Skins/心kokoro dt/hit100-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6403fc857160aa41364c69d96ffd62ddf87559eed51e317899bbdf6d490ac287 +size 2288 diff --git a/Skins/心kokoro dt/hit100-24@2x.png b/Skins/心kokoro dt/hit100-24@2x.png new file mode 100644 index 00000000..6f14872d --- /dev/null +++ b/Skins/心kokoro dt/hit100-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ae9e9aa47342214b1fb023d0d524af02fdd9b083be80e2f7e507d4e70e2dec +size 19295 diff --git a/Skins/心kokoro dt/hit100-25.png b/Skins/心kokoro dt/hit100-25.png new file mode 100644 index 00000000..939bf27c --- /dev/null +++ b/Skins/心kokoro dt/hit100-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6403fc857160aa41364c69d96ffd62ddf87559eed51e317899bbdf6d490ac287 +size 2288 diff --git a/Skins/心kokoro dt/hit100-25@2x.png b/Skins/心kokoro dt/hit100-25@2x.png new file mode 100644 index 00000000..d00a1cf9 --- /dev/null +++ b/Skins/心kokoro dt/hit100-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65ba2f85d00298729a5e6e3fa771093043c75ae5609255124fff75d390bbaee +size 19295 diff --git a/Skins/心kokoro dt/hit100-26.png b/Skins/心kokoro dt/hit100-26.png new file mode 100644 index 00000000..a54ac388 --- /dev/null +++ b/Skins/心kokoro dt/hit100-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffb056542177fb1510a6887a34ffc74235eef6a00e9825730f572cc7d6f797c +size 2288 diff --git a/Skins/心kokoro dt/hit100-26@2x.png b/Skins/心kokoro dt/hit100-26@2x.png new file mode 100644 index 00000000..d49f3da4 --- /dev/null +++ b/Skins/心kokoro dt/hit100-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567de9639c735b6d154b032384c9ad7330884c732d1d0e561877d6fbd02f60a8 +size 19295 diff --git a/Skins/心kokoro dt/hit100-27.png b/Skins/心kokoro dt/hit100-27.png new file mode 100644 index 00000000..a54ac388 --- /dev/null +++ b/Skins/心kokoro dt/hit100-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffb056542177fb1510a6887a34ffc74235eef6a00e9825730f572cc7d6f797c +size 2288 diff --git a/Skins/心kokoro dt/hit100-27@2x.png b/Skins/心kokoro dt/hit100-27@2x.png new file mode 100644 index 00000000..b207129b --- /dev/null +++ b/Skins/心kokoro dt/hit100-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cf4a1fe29f4a5c00b654e76a08fbfb9d6e1830336f7701ee5930a887c7de47 +size 19295 diff --git a/Skins/心kokoro dt/hit100-28.png b/Skins/心kokoro dt/hit100-28.png new file mode 100644 index 00000000..a54ac388 --- /dev/null +++ b/Skins/心kokoro dt/hit100-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffb056542177fb1510a6887a34ffc74235eef6a00e9825730f572cc7d6f797c +size 2288 diff --git a/Skins/心kokoro dt/hit100-28@2x.png b/Skins/心kokoro dt/hit100-28@2x.png new file mode 100644 index 00000000..7a6a8844 --- /dev/null +++ b/Skins/心kokoro dt/hit100-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb66bd1a8a95919feda5aadddb150b8bd75ec3d1ec2580f942bbb20494e1d26 +size 19295 diff --git a/Skins/心kokoro dt/hit100-29.png b/Skins/心kokoro dt/hit100-29.png new file mode 100644 index 00000000..a54ac388 --- /dev/null +++ b/Skins/心kokoro dt/hit100-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffb056542177fb1510a6887a34ffc74235eef6a00e9825730f572cc7d6f797c +size 2288 diff --git a/Skins/心kokoro dt/hit100-29@2x.png b/Skins/心kokoro dt/hit100-29@2x.png new file mode 100644 index 00000000..69a6f592 --- /dev/null +++ b/Skins/心kokoro dt/hit100-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5461b577e3a8a86e7d5212e869e97dd0dea97fb01219720727908e5131792a30 +size 19295 diff --git a/Skins/心kokoro dt/hit100-2@2x.png b/Skins/心kokoro dt/hit100-2@2x.png new file mode 100644 index 00000000..580238a6 --- /dev/null +++ b/Skins/心kokoro dt/hit100-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b57e16d4ac5708a4f3630bcfef0c4ab51c2c28b36bf4f6962a017933ce6ce1 +size 17916 diff --git a/Skins/心kokoro dt/hit100-3.png b/Skins/心kokoro dt/hit100-3.png new file mode 100644 index 00000000..2cb47170 --- /dev/null +++ b/Skins/心kokoro dt/hit100-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9013371903eb6c2e03b6249f7578fe889a1edb22825bf8bfd80b488372baa61 +size 2015 diff --git a/Skins/心kokoro dt/hit100-30.png b/Skins/心kokoro dt/hit100-30.png new file mode 100644 index 00000000..a54ac388 --- /dev/null +++ b/Skins/心kokoro dt/hit100-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffb056542177fb1510a6887a34ffc74235eef6a00e9825730f572cc7d6f797c +size 2288 diff --git a/Skins/心kokoro dt/hit100-30@2x.png b/Skins/心kokoro dt/hit100-30@2x.png new file mode 100644 index 00000000..289df34e --- /dev/null +++ b/Skins/心kokoro dt/hit100-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894422264a60ade44b0b1d67dfb3b0cb9ffa245990f7e5e36ba402c7ab8e4cdc +size 19295 diff --git a/Skins/心kokoro dt/hit100-31.png b/Skins/心kokoro dt/hit100-31.png new file mode 100644 index 00000000..2369bf0d --- /dev/null +++ b/Skins/心kokoro dt/hit100-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404ceeb1273e12cb88b0938ade7e4b2a4fa7e8abcda4b64f73c5bce268c85ba1 +size 2314 diff --git a/Skins/心kokoro dt/hit100-31@2x.png b/Skins/心kokoro dt/hit100-31@2x.png new file mode 100644 index 00000000..2e95ec66 --- /dev/null +++ b/Skins/心kokoro dt/hit100-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862a862761c4db6952a5169cdd5e74edc5c07360de50214d28e6d15c03de0c80 +size 19428 diff --git a/Skins/心kokoro dt/hit100-32.png b/Skins/心kokoro dt/hit100-32.png new file mode 100644 index 00000000..41898d90 --- /dev/null +++ b/Skins/心kokoro dt/hit100-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c76f5dd9754bcc812b4f8f77ca7f6c81ba388395a30cbbe9b1de85b98c3491d +size 2223 diff --git a/Skins/心kokoro dt/hit100-32@2x.png b/Skins/心kokoro dt/hit100-32@2x.png new file mode 100644 index 00000000..01d8cb38 --- /dev/null +++ b/Skins/心kokoro dt/hit100-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd96677e5e723ea0443cf7e6d3c8165494fb3dcb22b1ab28c6558ea38f6d362 +size 19283 diff --git a/Skins/心kokoro dt/hit100-33.png b/Skins/心kokoro dt/hit100-33.png new file mode 100644 index 00000000..8ab7b1ef --- /dev/null +++ b/Skins/心kokoro dt/hit100-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f77baf881816fb245926e232845a8e49db127d5d061000f8d7d046e1dc051cc +size 2194 diff --git a/Skins/心kokoro dt/hit100-33@2x.png b/Skins/心kokoro dt/hit100-33@2x.png new file mode 100644 index 00000000..4cf97f13 --- /dev/null +++ b/Skins/心kokoro dt/hit100-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121965caf0ce0543edf713ca6e9ae371c873ff56586383ffd924df7cf0e14b92 +size 19103 diff --git a/Skins/心kokoro dt/hit100-34.png b/Skins/心kokoro dt/hit100-34.png new file mode 100644 index 00000000..bf133f5f --- /dev/null +++ b/Skins/心kokoro dt/hit100-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69ade3c8813d4c6a77f5b5c2f7390fda3b2731eff3914852ac619c2042ad6a8 +size 2084 diff --git a/Skins/心kokoro dt/hit100-34@2x.png b/Skins/心kokoro dt/hit100-34@2x.png new file mode 100644 index 00000000..37300dba --- /dev/null +++ b/Skins/心kokoro dt/hit100-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc294b498afd2fc273244e4e57c6f525e61ce745221606f08a79d6c493cd7c0 +size 18816 diff --git a/Skins/心kokoro dt/hit100-35.png b/Skins/心kokoro dt/hit100-35.png new file mode 100644 index 00000000..660f4e46 --- /dev/null +++ b/Skins/心kokoro dt/hit100-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d02aa04a29ffbe8f9331de200a13a4c6798f10cdacf4cea6d02b85a600f35a +size 2000 diff --git a/Skins/心kokoro dt/hit100-35@2x.png b/Skins/心kokoro dt/hit100-35@2x.png new file mode 100644 index 00000000..9e6a2a05 --- /dev/null +++ b/Skins/心kokoro dt/hit100-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e676e939b5ffd7c25ff85233d8a8c86db00ac74a90a220d2378faa5e00202d6 +size 18256 diff --git a/Skins/心kokoro dt/hit100-36.png b/Skins/心kokoro dt/hit100-36.png new file mode 100644 index 00000000..2f72190b --- /dev/null +++ b/Skins/心kokoro dt/hit100-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d16e9fa051b23dd698d0ccefc9e99ec4733b26ce1679367fb567f867dbe9c6 +size 1910 diff --git a/Skins/心kokoro dt/hit100-36@2x.png b/Skins/心kokoro dt/hit100-36@2x.png new file mode 100644 index 00000000..6be13b9a --- /dev/null +++ b/Skins/心kokoro dt/hit100-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78530e85d1cfb7b36e8de5f6fbc868467b98691abd4dec6782fabcd90436b65 +size 18158 diff --git a/Skins/心kokoro dt/hit100-37.png b/Skins/心kokoro dt/hit100-37.png new file mode 100644 index 00000000..0e848511 --- /dev/null +++ b/Skins/心kokoro dt/hit100-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1da29ffc83e7a09df18d3edda0dc70dac44c4a6679fa19f664a3e293da4f8ca +size 1830 diff --git a/Skins/心kokoro dt/hit100-37@2x.png b/Skins/心kokoro dt/hit100-37@2x.png new file mode 100644 index 00000000..5730174d --- /dev/null +++ b/Skins/心kokoro dt/hit100-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10bfc989337e64ce86a01e84251dbf5839e61869fb3e8c0a9e40c6cd0970f02c +size 17894 diff --git a/Skins/心kokoro dt/hit100-38.png b/Skins/心kokoro dt/hit100-38.png new file mode 100644 index 00000000..c7a17ab3 --- /dev/null +++ b/Skins/心kokoro dt/hit100-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c043fdc6fd1cfe96e32c557bf8df69f0c7adc72419688bd3a1085ba5845425f7 +size 1679 diff --git a/Skins/心kokoro dt/hit100-38@2x.png b/Skins/心kokoro dt/hit100-38@2x.png new file mode 100644 index 00000000..a671f443 --- /dev/null +++ b/Skins/心kokoro dt/hit100-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7050808d03326bec2bc29f9a92e368c550df21319d62afab7cfbe926da045f4 +size 17502 diff --git a/Skins/心kokoro dt/hit100-39.png b/Skins/心kokoro dt/hit100-39.png new file mode 100644 index 00000000..ce4fb884 --- /dev/null +++ b/Skins/心kokoro dt/hit100-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f6d4712e6229b5c8356a0927783903c9fb39f79dad64c621ff208fa02447297 +size 1382 diff --git a/Skins/心kokoro dt/hit100-39@2x.png b/Skins/心kokoro dt/hit100-39@2x.png new file mode 100644 index 00000000..86aec163 --- /dev/null +++ b/Skins/心kokoro dt/hit100-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3917a39f8f509a17e1d3bb4bdeab3f941d14955c1d56ca31589febff7f70bf0f +size 16860 diff --git a/Skins/心kokoro dt/hit100-3@2x.png b/Skins/心kokoro dt/hit100-3@2x.png new file mode 100644 index 00000000..c04bb1f7 --- /dev/null +++ b/Skins/心kokoro dt/hit100-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbeb1768aa4dc470a3aadb7cc29cc033a6bbe1830535cbf1a7dd4b8968377ca3 +size 18135 diff --git a/Skins/心kokoro dt/hit100-4.png b/Skins/心kokoro dt/hit100-4.png new file mode 100644 index 00000000..72924d21 --- /dev/null +++ b/Skins/心kokoro dt/hit100-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfdbd8344d6a9b8cc28b036385442dd1daccf58ad74b9da784f50c5b9f35cdcf +size 2064 diff --git a/Skins/心kokoro dt/hit100-40.png b/Skins/心kokoro dt/hit100-40.png new file mode 100644 index 00000000..243a1573 --- /dev/null +++ b/Skins/心kokoro dt/hit100-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dacdc3e00dd87b73325acbe31a8af1da703ef8712b997505880fc03a417d6ae +size 303 diff --git a/Skins/心kokoro dt/hit100-40@2x.png b/Skins/心kokoro dt/hit100-40@2x.png new file mode 100644 index 00000000..74a63898 --- /dev/null +++ b/Skins/心kokoro dt/hit100-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f89b8bdc71d7f588965cfb7fbfd540aafd444e336b6ea2fa1a7fd142859c908 +size 15279 diff --git a/Skins/心kokoro dt/hit100-41.png b/Skins/心kokoro dt/hit100-41.png new file mode 100644 index 00000000..243a1573 --- /dev/null +++ b/Skins/心kokoro dt/hit100-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dacdc3e00dd87b73325acbe31a8af1da703ef8712b997505880fc03a417d6ae +size 303 diff --git a/Skins/心kokoro dt/hit100-41@2x.png b/Skins/心kokoro dt/hit100-41@2x.png new file mode 100644 index 00000000..7e7bc97e --- /dev/null +++ b/Skins/心kokoro dt/hit100-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d3d97b9e23b2ebd667f7d0f5d9556d9c25f9f3cba026287b384c9c9467dfcd +size 15279 diff --git a/Skins/心kokoro dt/hit100-42.png b/Skins/心kokoro dt/hit100-42.png new file mode 100644 index 00000000..fd7e38df --- /dev/null +++ b/Skins/心kokoro dt/hit100-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b80da81f17ba2f4a98d58ef0cc1cfdbcb55ace9cf0a65090e9459e9b86f047 +size 303 diff --git a/Skins/心kokoro dt/hit100-42@2x.png b/Skins/心kokoro dt/hit100-42@2x.png new file mode 100644 index 00000000..fc788147 --- /dev/null +++ b/Skins/心kokoro dt/hit100-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606b285cc1a4e9bc6d94878f725299066468b1dab233fb58a5ea58a10379ad84 +size 15279 diff --git a/Skins/心kokoro dt/hit100-43.png b/Skins/心kokoro dt/hit100-43.png new file mode 100644 index 00000000..fd7e38df --- /dev/null +++ b/Skins/心kokoro dt/hit100-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b80da81f17ba2f4a98d58ef0cc1cfdbcb55ace9cf0a65090e9459e9b86f047 +size 303 diff --git a/Skins/心kokoro dt/hit100-43@2x.png b/Skins/心kokoro dt/hit100-43@2x.png new file mode 100644 index 00000000..9929f936 --- /dev/null +++ b/Skins/心kokoro dt/hit100-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1491c4100510a39c964b4350c9c4dd7b4129a93cb063fdae0e8133e9ae335d22 +size 15279 diff --git a/Skins/心kokoro dt/hit100-44.png b/Skins/心kokoro dt/hit100-44.png new file mode 100644 index 00000000..fd7e38df --- /dev/null +++ b/Skins/心kokoro dt/hit100-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b80da81f17ba2f4a98d58ef0cc1cfdbcb55ace9cf0a65090e9459e9b86f047 +size 303 diff --git a/Skins/心kokoro dt/hit100-44@2x.png b/Skins/心kokoro dt/hit100-44@2x.png new file mode 100644 index 00000000..f59f6a20 --- /dev/null +++ b/Skins/心kokoro dt/hit100-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce56c183409d75dfa1ece1e0e235f6de30baf7919a153010bdf6fd4f97a04fa +size 15279 diff --git a/Skins/心kokoro dt/hit100-45.png b/Skins/心kokoro dt/hit100-45.png new file mode 100644 index 00000000..fd7e38df --- /dev/null +++ b/Skins/心kokoro dt/hit100-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b80da81f17ba2f4a98d58ef0cc1cfdbcb55ace9cf0a65090e9459e9b86f047 +size 303 diff --git a/Skins/心kokoro dt/hit100-45@2x.png b/Skins/心kokoro dt/hit100-45@2x.png new file mode 100644 index 00000000..7bf3f583 --- /dev/null +++ b/Skins/心kokoro dt/hit100-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ff9c7545de6f48e4578b8c0bc8fa4ae804aee9aaa909f5cfbb12a0bbc0fcfc +size 15279 diff --git a/Skins/心kokoro dt/hit100-46.png b/Skins/心kokoro dt/hit100-46.png new file mode 100644 index 00000000..fd7e38df --- /dev/null +++ b/Skins/心kokoro dt/hit100-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b80da81f17ba2f4a98d58ef0cc1cfdbcb55ace9cf0a65090e9459e9b86f047 +size 303 diff --git a/Skins/心kokoro dt/hit100-46@2x.png b/Skins/心kokoro dt/hit100-46@2x.png new file mode 100644 index 00000000..a954690b --- /dev/null +++ b/Skins/心kokoro dt/hit100-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9259739fef54905d98ae0a4d72c7e4377cd2b678337d95b3b9676fc090c72922 +size 15279 diff --git a/Skins/心kokoro dt/hit100-47.png b/Skins/心kokoro dt/hit100-47.png new file mode 100644 index 00000000..fd7e38df --- /dev/null +++ b/Skins/心kokoro dt/hit100-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b80da81f17ba2f4a98d58ef0cc1cfdbcb55ace9cf0a65090e9459e9b86f047 +size 303 diff --git a/Skins/心kokoro dt/hit100-47@2x.png b/Skins/心kokoro dt/hit100-47@2x.png new file mode 100644 index 00000000..4c17416e --- /dev/null +++ b/Skins/心kokoro dt/hit100-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56aafbe17017ba0203e82637caf085a4e306778df06eb0d2490f73ff5b21cdd5 +size 15279 diff --git a/Skins/心kokoro dt/hit100-48.png b/Skins/心kokoro dt/hit100-48.png new file mode 100644 index 00000000..fd7e38df --- /dev/null +++ b/Skins/心kokoro dt/hit100-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b80da81f17ba2f4a98d58ef0cc1cfdbcb55ace9cf0a65090e9459e9b86f047 +size 303 diff --git a/Skins/心kokoro dt/hit100-48@2x.png b/Skins/心kokoro dt/hit100-48@2x.png new file mode 100644 index 00000000..71e0c123 --- /dev/null +++ b/Skins/心kokoro dt/hit100-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50095d080454b1a5b07aab6c5830d0111a18ed3751b1353fde851e7a55f1e71 +size 15279 diff --git a/Skins/心kokoro dt/hit100-49.png b/Skins/心kokoro dt/hit100-49.png new file mode 100644 index 00000000..ac3d68ae --- /dev/null +++ b/Skins/心kokoro dt/hit100-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdc4792c2917d39c5e8f099469379c99bbbac9ed10e8b94a194ac23f46029f7 +size 303 diff --git a/Skins/心kokoro dt/hit100-49@2x.png b/Skins/心kokoro dt/hit100-49@2x.png new file mode 100644 index 00000000..e1d3fd2c --- /dev/null +++ b/Skins/心kokoro dt/hit100-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58b82e85474420c8e6b7e5162f798d1d053b86ef04ee8010572aa702ca320d7 +size 15279 diff --git a/Skins/心kokoro dt/hit100-4@2x.png b/Skins/心kokoro dt/hit100-4@2x.png new file mode 100644 index 00000000..0d61ea47 --- /dev/null +++ b/Skins/心kokoro dt/hit100-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc35dce766259869f9639ef6d45fae4fedfd89862003f2d4393dee78f7e6703 +size 18307 diff --git a/Skins/心kokoro dt/hit100-5.png b/Skins/心kokoro dt/hit100-5.png new file mode 100644 index 00000000..e00eeef0 --- /dev/null +++ b/Skins/心kokoro dt/hit100-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66994f0c7e281b42a5f992381cbbcc622c99f8be6cd1c9e9fa7f08b9cf08a56a +size 2074 diff --git a/Skins/心kokoro dt/hit100-5@2x.png b/Skins/心kokoro dt/hit100-5@2x.png new file mode 100644 index 00000000..2ad9b839 --- /dev/null +++ b/Skins/心kokoro dt/hit100-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037b5b28770db4fd5165ae2b2882b5b18046c1abfc008c23420f12bd5c27f058 +size 18435 diff --git a/Skins/心kokoro dt/hit100-6.png b/Skins/心kokoro dt/hit100-6.png new file mode 100644 index 00000000..a702aac6 --- /dev/null +++ b/Skins/心kokoro dt/hit100-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113c57b35d4eaf21792d80b40205085a1f36919eab96ed23076d1f4fdab793bc +size 2108 diff --git a/Skins/心kokoro dt/hit100-6@2x.png b/Skins/心kokoro dt/hit100-6@2x.png new file mode 100644 index 00000000..0a58dd56 --- /dev/null +++ b/Skins/心kokoro dt/hit100-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee4e45d521fa28e216e47c9440f129361650860c026aff325634b45a1c12f5a +size 18567 diff --git a/Skins/心kokoro dt/hit100-7.png b/Skins/心kokoro dt/hit100-7.png new file mode 100644 index 00000000..f2e24a74 --- /dev/null +++ b/Skins/心kokoro dt/hit100-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c75d775d96b2dee15a0d080b50b34fabc6dd05b95f7b05b18cf21e3ef115e8b +size 2075 diff --git a/Skins/心kokoro dt/hit100-7@2x.png b/Skins/心kokoro dt/hit100-7@2x.png new file mode 100644 index 00000000..d792d844 --- /dev/null +++ b/Skins/心kokoro dt/hit100-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309c30d17a6bd485a70d1316f20516128b56d3365c9ebd8f76109501e8775e40 +size 18517 diff --git a/Skins/心kokoro dt/hit100-8.png b/Skins/心kokoro dt/hit100-8.png new file mode 100644 index 00000000..f13125e8 --- /dev/null +++ b/Skins/心kokoro dt/hit100-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42628fed10fc2e8dbfb6e7f525a398c6d85b563a98a24ca85dae02edbcfb93d +size 2067 diff --git a/Skins/心kokoro dt/hit100-8@2x.png b/Skins/心kokoro dt/hit100-8@2x.png new file mode 100644 index 00000000..04c5c078 --- /dev/null +++ b/Skins/心kokoro dt/hit100-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced4d1d25a245a7bfa9c144c4ea4009c375efb5848f650b955df533657946fd3 +size 18586 diff --git a/Skins/心kokoro dt/hit100-9.png b/Skins/心kokoro dt/hit100-9.png new file mode 100644 index 00000000..6ab3b298 --- /dev/null +++ b/Skins/心kokoro dt/hit100-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4b7fcbf9d5fe652ec8b766b3767349340897c7da07f33b6b619562f98fb666a +size 2079 diff --git a/Skins/心kokoro dt/hit100-9@2x.png b/Skins/心kokoro dt/hit100-9@2x.png new file mode 100644 index 00000000..a83ca001 --- /dev/null +++ b/Skins/心kokoro dt/hit100-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72c52946d771ebf77b71d5d1fc69aee3bf01b4b78baf2b41ae40a49e35250c4c +size 18554 diff --git a/Skins/心kokoro dt/hit100.png b/Skins/心kokoro dt/hit100.png new file mode 100644 index 00000000..40ec1c55 --- /dev/null +++ b/Skins/心kokoro dt/hit100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803b4ff5bf0867bd404002caef6022f60b97f84df235be67315ed596c4daedba +size 3465 diff --git a/Skins/心kokoro dt/hit100@2x.png b/Skins/心kokoro dt/hit100@2x.png new file mode 100644 index 00000000..5f34fe08 --- /dev/null +++ b/Skins/心kokoro dt/hit100@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1effe963668030ef264834ed531bb13c9a2c6761a9fdf3c47a013f588b0f84e0 +size 8659 diff --git a/Skins/心kokoro dt/hit100k-0.png b/Skins/心kokoro dt/hit100k-0.png new file mode 100644 index 00000000..dfa8288d --- /dev/null +++ b/Skins/心kokoro dt/hit100k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71633792eb4993d99af70d2f4234d20f248033754881bcc0f3738afc8da6af83 +size 1128 diff --git a/Skins/心kokoro dt/hit100k-0@2x.png b/Skins/心kokoro dt/hit100k-0@2x.png new file mode 100644 index 00000000..d7434a03 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb4bbfed21c0beb0bb49db6ad1cd592b91ac4890d65dfd9a6ba9d106953f999 +size 16297 diff --git a/Skins/心kokoro dt/hit100k-1.png b/Skins/心kokoro dt/hit100k-1.png new file mode 100644 index 00000000..75be9308 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279403434dbe0aedc88b5914968e79064724e0675709d8282be04ccc3362ea08 +size 1899 diff --git a/Skins/心kokoro dt/hit100k-10.png b/Skins/心kokoro dt/hit100k-10.png new file mode 100644 index 00000000..631522f1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e408f771658890c6c88b8c727e84724f0fd94a90b66fdf5824a2426c6f1ea56e +size 2022 diff --git a/Skins/心kokoro dt/hit100k-10@2x.png b/Skins/心kokoro dt/hit100k-10@2x.png new file mode 100644 index 00000000..e3dda576 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ab083f6b0c574999e76ab59cebb7e4ce580b84c83a7ac0635da4fce6bc1ec2 +size 18563 diff --git a/Skins/心kokoro dt/hit100k-11.png b/Skins/心kokoro dt/hit100k-11.png new file mode 100644 index 00000000..772f69c5 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78f597b670691ef623db94f64c32dd969bf6a66ca11f9c8a155ee2fbb34dacbb +size 1950 diff --git a/Skins/心kokoro dt/hit100k-11@2x.png b/Skins/心kokoro dt/hit100k-11@2x.png new file mode 100644 index 00000000..a26d8f6e --- /dev/null +++ b/Skins/心kokoro dt/hit100k-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1eb8e9266448fe3f4d1a1c42371e7988d7e580665f7a8572e2003da86667c5c +size 18535 diff --git a/Skins/心kokoro dt/hit100k-12.png b/Skins/心kokoro dt/hit100k-12.png new file mode 100644 index 00000000..30aea689 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4416a75618a35b3b6b9e977e44c276976227ff6a9c37b902da21b26a11a0a68 +size 1888 diff --git a/Skins/心kokoro dt/hit100k-12@2x.png b/Skins/心kokoro dt/hit100k-12@2x.png new file mode 100644 index 00000000..b373c899 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32533bbdd7481cada9bd9c641850b124b34755a16ce3abe7829d8f0f28b1d8fc +size 18382 diff --git a/Skins/心kokoro dt/hit100k-13.png b/Skins/心kokoro dt/hit100k-13.png new file mode 100644 index 00000000..49490b5c --- /dev/null +++ b/Skins/心kokoro dt/hit100k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731cdd6a26494bf02263fc5285a70f183c8e05ded2318ffca143b4a97adaa802 +size 1950 diff --git a/Skins/心kokoro dt/hit100k-13@2x.png b/Skins/心kokoro dt/hit100k-13@2x.png new file mode 100644 index 00000000..c429efd5 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7df4adfd4b12bad6362154249b64e9eaeaa7b491187745097b895879223d70a +size 18413 diff --git a/Skins/心kokoro dt/hit100k-14.png b/Skins/心kokoro dt/hit100k-14.png new file mode 100644 index 00000000..89905cda --- /dev/null +++ b/Skins/心kokoro dt/hit100k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:028d80ccf2eb6cb512b59f7e8dab2fdeb67e1693c69a20940b62b55b799adc2b +size 1992 diff --git a/Skins/心kokoro dt/hit100k-14@2x.png b/Skins/心kokoro dt/hit100k-14@2x.png new file mode 100644 index 00000000..207b7997 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37006ed04142f93fe2e162858ed428e2747b46537c27e843edbbfc76a3ce865 +size 18477 diff --git a/Skins/心kokoro dt/hit100k-15.png b/Skins/心kokoro dt/hit100k-15.png new file mode 100644 index 00000000..d1db23b8 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9ab5e7868a08743110e1e75f3afccf150ca148cfcbeee07f64c99fc44c7fc49 +size 2038 diff --git a/Skins/心kokoro dt/hit100k-15@2x.png b/Skins/心kokoro dt/hit100k-15@2x.png new file mode 100644 index 00000000..bbdcceb8 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc44fbbf3762d937bc923574c6b309b7bbedfeef4c443957db36339f97ff55d +size 18673 diff --git a/Skins/心kokoro dt/hit100k-16.png b/Skins/心kokoro dt/hit100k-16.png new file mode 100644 index 00000000..aef41eb3 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef1b071d9ad55f91c329e28d792b377c6787d73ba736d4837dc778cce460816 +size 2063 diff --git a/Skins/心kokoro dt/hit100k-16@2x.png b/Skins/心kokoro dt/hit100k-16@2x.png new file mode 100644 index 00000000..5783528d --- /dev/null +++ b/Skins/心kokoro dt/hit100k-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c46fc61af7fc8398bb63359c7805d1f91a82da5e81f5ad0db9e769932cd2b3 +size 18870 diff --git a/Skins/心kokoro dt/hit100k-17.png b/Skins/心kokoro dt/hit100k-17.png new file mode 100644 index 00000000..8ab43c23 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e337222470cf1130743b27d348f8e32a64b60ca464a26f76d5dad3614d23fad +size 2141 diff --git a/Skins/心kokoro dt/hit100k-17@2x.png b/Skins/心kokoro dt/hit100k-17@2x.png new file mode 100644 index 00000000..3e5447c7 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e416ee0140407bd78b6a9b132736765dd6ff5f60d721e96345b19c7c36dcf72 +size 18997 diff --git a/Skins/心kokoro dt/hit100k-18.png b/Skins/心kokoro dt/hit100k-18.png new file mode 100644 index 00000000..602bafa0 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79cfd58f81fe43c3965610eebcfa73c1af969855f8954e684a51681d7601d19c +size 2165 diff --git a/Skins/心kokoro dt/hit100k-18@2x.png b/Skins/心kokoro dt/hit100k-18@2x.png new file mode 100644 index 00000000..d0a258b1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d0eb88ee41af474558ff33b7bee04a375e062598b3aa8a5713af8c14bdaa6f2 +size 19158 diff --git a/Skins/心kokoro dt/hit100k-19.png b/Skins/心kokoro dt/hit100k-19.png new file mode 100644 index 00000000..7c6aa5ec --- /dev/null +++ b/Skins/心kokoro dt/hit100k-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e8f6972054461c4dcd12e5765c6cd9b3ba6f63a184146f88a293f5f6a3a1af +size 2205 diff --git a/Skins/心kokoro dt/hit100k-19@2x.png b/Skins/心kokoro dt/hit100k-19@2x.png new file mode 100644 index 00000000..f9c0fcb1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1ee8271de4a84078b691ecd90a48e995af56cb119342371040868ef18ec26fd +size 19263 diff --git a/Skins/心kokoro dt/hit100k-1@2x.png b/Skins/心kokoro dt/hit100k-1@2x.png new file mode 100644 index 00000000..1a03b75d --- /dev/null +++ b/Skins/心kokoro dt/hit100k-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cd2af700108ba4ba6ee4bcef50fa05e5e5c91af84739ba249fe72a2aae23e47 +size 17595 diff --git a/Skins/心kokoro dt/hit100k-2.png b/Skins/心kokoro dt/hit100k-2.png new file mode 100644 index 00000000..22d649da --- /dev/null +++ b/Skins/心kokoro dt/hit100k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcb67cca924a6443c370ee47a971d43bbb0b1280a3747f20da6b8f12a88a0f2 +size 1945 diff --git a/Skins/心kokoro dt/hit100k-20.png b/Skins/心kokoro dt/hit100k-20.png new file mode 100644 index 00000000..44120331 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e3472fdec1aca00b3a70a477ab10b0a47f2bb38f02f2d9bb4015f9a49c4fbc +size 2288 diff --git a/Skins/心kokoro dt/hit100k-20@2x.png b/Skins/心kokoro dt/hit100k-20@2x.png new file mode 100644 index 00000000..0c5a1468 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19eff25823f1b6e1a4f983304247d4853f9a402d97bb9c3e53d81caa7f4d62d4 +size 19295 diff --git a/Skins/心kokoro dt/hit100k-21.png b/Skins/心kokoro dt/hit100k-21.png new file mode 100644 index 00000000..44120331 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e3472fdec1aca00b3a70a477ab10b0a47f2bb38f02f2d9bb4015f9a49c4fbc +size 2288 diff --git a/Skins/心kokoro dt/hit100k-21@2x.png b/Skins/心kokoro dt/hit100k-21@2x.png new file mode 100644 index 00000000..7e5534fb --- /dev/null +++ b/Skins/心kokoro dt/hit100k-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:597c74a4698d1b14983168fd80676febc4f43d325a9bd0b4ab5906bf4c6bf7c9 +size 19295 diff --git a/Skins/心kokoro dt/hit100k-22.png b/Skins/心kokoro dt/hit100k-22.png new file mode 100644 index 00000000..2234bb48 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85de107bd1495db027c1fd164b14a74326caec207276afe7cd84689ae44bcd97 +size 2288 diff --git a/Skins/心kokoro dt/hit100k-22@2x.png b/Skins/心kokoro dt/hit100k-22@2x.png new file mode 100644 index 00000000..6204e4d8 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a498c4cdf18d66ff9f50580fc6293cc374fd756fd41726c10e607bc07394d51b +size 19295 diff --git a/Skins/心kokoro dt/hit100k-23.png b/Skins/心kokoro dt/hit100k-23.png new file mode 100644 index 00000000..2234bb48 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85de107bd1495db027c1fd164b14a74326caec207276afe7cd84689ae44bcd97 +size 2288 diff --git a/Skins/心kokoro dt/hit100k-23@2x.png b/Skins/心kokoro dt/hit100k-23@2x.png new file mode 100644 index 00000000..2a1296f1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec935d7f96283d6ffd1af21228b281dc088edfa8acc1e333981d5e7676e00a19 +size 19295 diff --git a/Skins/心kokoro dt/hit100k-24.png b/Skins/心kokoro dt/hit100k-24.png new file mode 100644 index 00000000..2234bb48 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85de107bd1495db027c1fd164b14a74326caec207276afe7cd84689ae44bcd97 +size 2288 diff --git a/Skins/心kokoro dt/hit100k-24@2x.png b/Skins/心kokoro dt/hit100k-24@2x.png new file mode 100644 index 00000000..6f14872d --- /dev/null +++ b/Skins/心kokoro dt/hit100k-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ae9e9aa47342214b1fb023d0d524af02fdd9b083be80e2f7e507d4e70e2dec +size 19295 diff --git a/Skins/心kokoro dt/hit100k-25.png b/Skins/心kokoro dt/hit100k-25.png new file mode 100644 index 00000000..2234bb48 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85de107bd1495db027c1fd164b14a74326caec207276afe7cd84689ae44bcd97 +size 2288 diff --git a/Skins/心kokoro dt/hit100k-25@2x.png b/Skins/心kokoro dt/hit100k-25@2x.png new file mode 100644 index 00000000..d00a1cf9 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65ba2f85d00298729a5e6e3fa771093043c75ae5609255124fff75d390bbaee +size 19295 diff --git a/Skins/心kokoro dt/hit100k-26.png b/Skins/心kokoro dt/hit100k-26.png new file mode 100644 index 00000000..1d75ca82 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa0e3fba7aecf873731f4ec5d70276c6b533fe196f41791442ac3d7b755bc18 +size 2288 diff --git a/Skins/心kokoro dt/hit100k-26@2x.png b/Skins/心kokoro dt/hit100k-26@2x.png new file mode 100644 index 00000000..d49f3da4 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567de9639c735b6d154b032384c9ad7330884c732d1d0e561877d6fbd02f60a8 +size 19295 diff --git a/Skins/心kokoro dt/hit100k-27.png b/Skins/心kokoro dt/hit100k-27.png new file mode 100644 index 00000000..1d75ca82 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa0e3fba7aecf873731f4ec5d70276c6b533fe196f41791442ac3d7b755bc18 +size 2288 diff --git a/Skins/心kokoro dt/hit100k-27@2x.png b/Skins/心kokoro dt/hit100k-27@2x.png new file mode 100644 index 00000000..b207129b --- /dev/null +++ b/Skins/心kokoro dt/hit100k-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cf4a1fe29f4a5c00b654e76a08fbfb9d6e1830336f7701ee5930a887c7de47 +size 19295 diff --git a/Skins/心kokoro dt/hit100k-28.png b/Skins/心kokoro dt/hit100k-28.png new file mode 100644 index 00000000..1d75ca82 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa0e3fba7aecf873731f4ec5d70276c6b533fe196f41791442ac3d7b755bc18 +size 2288 diff --git a/Skins/心kokoro dt/hit100k-28@2x.png b/Skins/心kokoro dt/hit100k-28@2x.png new file mode 100644 index 00000000..7a6a8844 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb66bd1a8a95919feda5aadddb150b8bd75ec3d1ec2580f942bbb20494e1d26 +size 19295 diff --git a/Skins/心kokoro dt/hit100k-29.png b/Skins/心kokoro dt/hit100k-29.png new file mode 100644 index 00000000..1d75ca82 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa0e3fba7aecf873731f4ec5d70276c6b533fe196f41791442ac3d7b755bc18 +size 2288 diff --git a/Skins/心kokoro dt/hit100k-29@2x.png b/Skins/心kokoro dt/hit100k-29@2x.png new file mode 100644 index 00000000..69a6f592 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5461b577e3a8a86e7d5212e869e97dd0dea97fb01219720727908e5131792a30 +size 19295 diff --git a/Skins/心kokoro dt/hit100k-2@2x.png b/Skins/心kokoro dt/hit100k-2@2x.png new file mode 100644 index 00000000..580238a6 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b57e16d4ac5708a4f3630bcfef0c4ab51c2c28b36bf4f6962a017933ce6ce1 +size 17916 diff --git a/Skins/心kokoro dt/hit100k-3.png b/Skins/心kokoro dt/hit100k-3.png new file mode 100644 index 00000000..d8513fd7 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc5d8187659f6a72e92604fa89bcf4e23f146e7842ff267399f711091cbcbffa +size 2015 diff --git a/Skins/心kokoro dt/hit100k-30.png b/Skins/心kokoro dt/hit100k-30.png new file mode 100644 index 00000000..1d75ca82 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa0e3fba7aecf873731f4ec5d70276c6b533fe196f41791442ac3d7b755bc18 +size 2288 diff --git a/Skins/心kokoro dt/hit100k-30@2x.png b/Skins/心kokoro dt/hit100k-30@2x.png new file mode 100644 index 00000000..289df34e --- /dev/null +++ b/Skins/心kokoro dt/hit100k-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894422264a60ade44b0b1d67dfb3b0cb9ffa245990f7e5e36ba402c7ab8e4cdc +size 19295 diff --git a/Skins/心kokoro dt/hit100k-31.png b/Skins/心kokoro dt/hit100k-31.png new file mode 100644 index 00000000..65503e86 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b65068fa6c5be9c22c951357e4dc9596a018fcb9b41444f7ab73c32371381a +size 2314 diff --git a/Skins/心kokoro dt/hit100k-31@2x.png b/Skins/心kokoro dt/hit100k-31@2x.png new file mode 100644 index 00000000..2e95ec66 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862a862761c4db6952a5169cdd5e74edc5c07360de50214d28e6d15c03de0c80 +size 19428 diff --git a/Skins/心kokoro dt/hit100k-32.png b/Skins/心kokoro dt/hit100k-32.png new file mode 100644 index 00000000..7997544c --- /dev/null +++ b/Skins/心kokoro dt/hit100k-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b725150dd53e8e648cfa418aa3fafb8248b11606d628d48763387654ba6050d7 +size 2223 diff --git a/Skins/心kokoro dt/hit100k-32@2x.png b/Skins/心kokoro dt/hit100k-32@2x.png new file mode 100644 index 00000000..01d8cb38 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd96677e5e723ea0443cf7e6d3c8165494fb3dcb22b1ab28c6558ea38f6d362 +size 19283 diff --git a/Skins/心kokoro dt/hit100k-33.png b/Skins/心kokoro dt/hit100k-33.png new file mode 100644 index 00000000..02709abd --- /dev/null +++ b/Skins/心kokoro dt/hit100k-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81eb843ab2e5efe4730f6aae59351d4d72209d3f27dc98233bb19c786f08bd4 +size 2194 diff --git a/Skins/心kokoro dt/hit100k-33@2x.png b/Skins/心kokoro dt/hit100k-33@2x.png new file mode 100644 index 00000000..4cf97f13 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121965caf0ce0543edf713ca6e9ae371c873ff56586383ffd924df7cf0e14b92 +size 19103 diff --git a/Skins/心kokoro dt/hit100k-34.png b/Skins/心kokoro dt/hit100k-34.png new file mode 100644 index 00000000..4b6d4a24 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45282f1583a17009549494c146e8a69d28c25fc2a935a2b5d60aa389bb05442 +size 2084 diff --git a/Skins/心kokoro dt/hit100k-34@2x.png b/Skins/心kokoro dt/hit100k-34@2x.png new file mode 100644 index 00000000..37300dba --- /dev/null +++ b/Skins/心kokoro dt/hit100k-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc294b498afd2fc273244e4e57c6f525e61ce745221606f08a79d6c493cd7c0 +size 18816 diff --git a/Skins/心kokoro dt/hit100k-35.png b/Skins/心kokoro dt/hit100k-35.png new file mode 100644 index 00000000..b48d3d40 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c50295bc79d9487515acedebc0df42bd39f4d70bf08fc8d485b39eeabeafb3 +size 2000 diff --git a/Skins/心kokoro dt/hit100k-35@2x.png b/Skins/心kokoro dt/hit100k-35@2x.png new file mode 100644 index 00000000..9e6a2a05 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e676e939b5ffd7c25ff85233d8a8c86db00ac74a90a220d2378faa5e00202d6 +size 18256 diff --git a/Skins/心kokoro dt/hit100k-36.png b/Skins/心kokoro dt/hit100k-36.png new file mode 100644 index 00000000..760f52de --- /dev/null +++ b/Skins/心kokoro dt/hit100k-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc49400b23e253720e66ec9611a149123d45d755354317a34fd10c4c09a15f58 +size 1910 diff --git a/Skins/心kokoro dt/hit100k-36@2x.png b/Skins/心kokoro dt/hit100k-36@2x.png new file mode 100644 index 00000000..6be13b9a --- /dev/null +++ b/Skins/心kokoro dt/hit100k-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78530e85d1cfb7b36e8de5f6fbc868467b98691abd4dec6782fabcd90436b65 +size 18158 diff --git a/Skins/心kokoro dt/hit100k-37.png b/Skins/心kokoro dt/hit100k-37.png new file mode 100644 index 00000000..c97fa593 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68cb4f5d5d537155953a6b419b3ffc11e657d05f80b2955e6e975d43096b2718 +size 1830 diff --git a/Skins/心kokoro dt/hit100k-37@2x.png b/Skins/心kokoro dt/hit100k-37@2x.png new file mode 100644 index 00000000..5730174d --- /dev/null +++ b/Skins/心kokoro dt/hit100k-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10bfc989337e64ce86a01e84251dbf5839e61869fb3e8c0a9e40c6cd0970f02c +size 17894 diff --git a/Skins/心kokoro dt/hit100k-38.png b/Skins/心kokoro dt/hit100k-38.png new file mode 100644 index 00000000..db30d524 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ed7bc0503379a6791b8e6896b4606de2e67c2dcee868c56b0c3d8e6f961c5d +size 1679 diff --git a/Skins/心kokoro dt/hit100k-38@2x.png b/Skins/心kokoro dt/hit100k-38@2x.png new file mode 100644 index 00000000..a671f443 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7050808d03326bec2bc29f9a92e368c550df21319d62afab7cfbe926da045f4 +size 17502 diff --git a/Skins/心kokoro dt/hit100k-39.png b/Skins/心kokoro dt/hit100k-39.png new file mode 100644 index 00000000..0b6a9bfa --- /dev/null +++ b/Skins/心kokoro dt/hit100k-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c867754e36d3e7f9c4be0d1642f270886706bd0623981c7376f141e5cf2d8a41 +size 1382 diff --git a/Skins/心kokoro dt/hit100k-39@2x.png b/Skins/心kokoro dt/hit100k-39@2x.png new file mode 100644 index 00000000..86aec163 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3917a39f8f509a17e1d3bb4bdeab3f941d14955c1d56ca31589febff7f70bf0f +size 16860 diff --git a/Skins/心kokoro dt/hit100k-3@2x.png b/Skins/心kokoro dt/hit100k-3@2x.png new file mode 100644 index 00000000..c04bb1f7 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbeb1768aa4dc470a3aadb7cc29cc033a6bbe1830535cbf1a7dd4b8968377ca3 +size 18135 diff --git a/Skins/心kokoro dt/hit100k-4.png b/Skins/心kokoro dt/hit100k-4.png new file mode 100644 index 00000000..66d36990 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8aaa5725f67e142884750ef8964efd951e83bbe791f611644b9edef65098939 +size 2064 diff --git a/Skins/心kokoro dt/hit100k-40.png b/Skins/心kokoro dt/hit100k-40.png new file mode 100644 index 00000000..1d889b8a --- /dev/null +++ b/Skins/心kokoro dt/hit100k-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac96fa33a777fe07641cfaca302ad02c969ba2387dd4396b57ad4c7bf9e9aa3 +size 303 diff --git a/Skins/心kokoro dt/hit100k-40@2x.png b/Skins/心kokoro dt/hit100k-40@2x.png new file mode 100644 index 00000000..74a63898 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f89b8bdc71d7f588965cfb7fbfd540aafd444e336b6ea2fa1a7fd142859c908 +size 15279 diff --git a/Skins/心kokoro dt/hit100k-41.png b/Skins/心kokoro dt/hit100k-41.png new file mode 100644 index 00000000..1d889b8a --- /dev/null +++ b/Skins/心kokoro dt/hit100k-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac96fa33a777fe07641cfaca302ad02c969ba2387dd4396b57ad4c7bf9e9aa3 +size 303 diff --git a/Skins/心kokoro dt/hit100k-41@2x.png b/Skins/心kokoro dt/hit100k-41@2x.png new file mode 100644 index 00000000..7e7bc97e --- /dev/null +++ b/Skins/心kokoro dt/hit100k-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d3d97b9e23b2ebd667f7d0f5d9556d9c25f9f3cba026287b384c9c9467dfcd +size 15279 diff --git a/Skins/心kokoro dt/hit100k-42.png b/Skins/心kokoro dt/hit100k-42.png new file mode 100644 index 00000000..405100d1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85badd96aa79c47a0b38d546608c4f48766dea83a74b61cbdff9f5cc0cbde3fb +size 303 diff --git a/Skins/心kokoro dt/hit100k-42@2x.png b/Skins/心kokoro dt/hit100k-42@2x.png new file mode 100644 index 00000000..fc788147 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606b285cc1a4e9bc6d94878f725299066468b1dab233fb58a5ea58a10379ad84 +size 15279 diff --git a/Skins/心kokoro dt/hit100k-43.png b/Skins/心kokoro dt/hit100k-43.png new file mode 100644 index 00000000..405100d1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85badd96aa79c47a0b38d546608c4f48766dea83a74b61cbdff9f5cc0cbde3fb +size 303 diff --git a/Skins/心kokoro dt/hit100k-43@2x.png b/Skins/心kokoro dt/hit100k-43@2x.png new file mode 100644 index 00000000..9929f936 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1491c4100510a39c964b4350c9c4dd7b4129a93cb063fdae0e8133e9ae335d22 +size 15279 diff --git a/Skins/心kokoro dt/hit100k-44.png b/Skins/心kokoro dt/hit100k-44.png new file mode 100644 index 00000000..405100d1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85badd96aa79c47a0b38d546608c4f48766dea83a74b61cbdff9f5cc0cbde3fb +size 303 diff --git a/Skins/心kokoro dt/hit100k-44@2x.png b/Skins/心kokoro dt/hit100k-44@2x.png new file mode 100644 index 00000000..f59f6a20 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce56c183409d75dfa1ece1e0e235f6de30baf7919a153010bdf6fd4f97a04fa +size 15279 diff --git a/Skins/心kokoro dt/hit100k-45.png b/Skins/心kokoro dt/hit100k-45.png new file mode 100644 index 00000000..405100d1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85badd96aa79c47a0b38d546608c4f48766dea83a74b61cbdff9f5cc0cbde3fb +size 303 diff --git a/Skins/心kokoro dt/hit100k-45@2x.png b/Skins/心kokoro dt/hit100k-45@2x.png new file mode 100644 index 00000000..7bf3f583 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ff9c7545de6f48e4578b8c0bc8fa4ae804aee9aaa909f5cfbb12a0bbc0fcfc +size 15279 diff --git a/Skins/心kokoro dt/hit100k-46.png b/Skins/心kokoro dt/hit100k-46.png new file mode 100644 index 00000000..405100d1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85badd96aa79c47a0b38d546608c4f48766dea83a74b61cbdff9f5cc0cbde3fb +size 303 diff --git a/Skins/心kokoro dt/hit100k-46@2x.png b/Skins/心kokoro dt/hit100k-46@2x.png new file mode 100644 index 00000000..a954690b --- /dev/null +++ b/Skins/心kokoro dt/hit100k-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9259739fef54905d98ae0a4d72c7e4377cd2b678337d95b3b9676fc090c72922 +size 15279 diff --git a/Skins/心kokoro dt/hit100k-47.png b/Skins/心kokoro dt/hit100k-47.png new file mode 100644 index 00000000..405100d1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85badd96aa79c47a0b38d546608c4f48766dea83a74b61cbdff9f5cc0cbde3fb +size 303 diff --git a/Skins/心kokoro dt/hit100k-47@2x.png b/Skins/心kokoro dt/hit100k-47@2x.png new file mode 100644 index 00000000..4c17416e --- /dev/null +++ b/Skins/心kokoro dt/hit100k-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56aafbe17017ba0203e82637caf085a4e306778df06eb0d2490f73ff5b21cdd5 +size 15279 diff --git a/Skins/心kokoro dt/hit100k-48.png b/Skins/心kokoro dt/hit100k-48.png new file mode 100644 index 00000000..405100d1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85badd96aa79c47a0b38d546608c4f48766dea83a74b61cbdff9f5cc0cbde3fb +size 303 diff --git a/Skins/心kokoro dt/hit100k-48@2x.png b/Skins/心kokoro dt/hit100k-48@2x.png new file mode 100644 index 00000000..71e0c123 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50095d080454b1a5b07aab6c5830d0111a18ed3751b1353fde851e7a55f1e71 +size 15279 diff --git a/Skins/心kokoro dt/hit100k-49.png b/Skins/心kokoro dt/hit100k-49.png new file mode 100644 index 00000000..405100d1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85badd96aa79c47a0b38d546608c4f48766dea83a74b61cbdff9f5cc0cbde3fb +size 303 diff --git a/Skins/心kokoro dt/hit100k-49@2x.png b/Skins/心kokoro dt/hit100k-49@2x.png new file mode 100644 index 00000000..e1d3fd2c --- /dev/null +++ b/Skins/心kokoro dt/hit100k-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58b82e85474420c8e6b7e5162f798d1d053b86ef04ee8010572aa702ca320d7 +size 15279 diff --git a/Skins/心kokoro dt/hit100k-4@2x.png b/Skins/心kokoro dt/hit100k-4@2x.png new file mode 100644 index 00000000..0d61ea47 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc35dce766259869f9639ef6d45fae4fedfd89862003f2d4393dee78f7e6703 +size 18307 diff --git a/Skins/心kokoro dt/hit100k-5.png b/Skins/心kokoro dt/hit100k-5.png new file mode 100644 index 00000000..5fd2c112 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16de158386f9041f6feb809840c481301236c7b0f1fa82f76c3b13c9b4502773 +size 2074 diff --git a/Skins/心kokoro dt/hit100k-5@2x.png b/Skins/心kokoro dt/hit100k-5@2x.png new file mode 100644 index 00000000..2ad9b839 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037b5b28770db4fd5165ae2b2882b5b18046c1abfc008c23420f12bd5c27f058 +size 18435 diff --git a/Skins/心kokoro dt/hit100k-6.png b/Skins/心kokoro dt/hit100k-6.png new file mode 100644 index 00000000..ba1c165d --- /dev/null +++ b/Skins/心kokoro dt/hit100k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d994839264269dac490686393f46d0a599126a6eeb1afca0c5163aafe5bee095 +size 2108 diff --git a/Skins/心kokoro dt/hit100k-6@2x.png b/Skins/心kokoro dt/hit100k-6@2x.png new file mode 100644 index 00000000..0a58dd56 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee4e45d521fa28e216e47c9440f129361650860c026aff325634b45a1c12f5a +size 18567 diff --git a/Skins/心kokoro dt/hit100k-7.png b/Skins/心kokoro dt/hit100k-7.png new file mode 100644 index 00000000..106a817d --- /dev/null +++ b/Skins/心kokoro dt/hit100k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db90136ab8d7b59cd3adcdcdebbd9867a32f805bc36311cb080048526d016c3 +size 2075 diff --git a/Skins/心kokoro dt/hit100k-7@2x.png b/Skins/心kokoro dt/hit100k-7@2x.png new file mode 100644 index 00000000..d792d844 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309c30d17a6bd485a70d1316f20516128b56d3365c9ebd8f76109501e8775e40 +size 18517 diff --git a/Skins/心kokoro dt/hit100k-8.png b/Skins/心kokoro dt/hit100k-8.png new file mode 100644 index 00000000..7a5e8d4d --- /dev/null +++ b/Skins/心kokoro dt/hit100k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f56cc25efe63ce0b1e675d2d3cff0389591558656649898e00d8f8d816795e72 +size 2067 diff --git a/Skins/心kokoro dt/hit100k-8@2x.png b/Skins/心kokoro dt/hit100k-8@2x.png new file mode 100644 index 00000000..04c5c078 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced4d1d25a245a7bfa9c144c4ea4009c375efb5848f650b955df533657946fd3 +size 18586 diff --git a/Skins/心kokoro dt/hit100k-9.png b/Skins/心kokoro dt/hit100k-9.png new file mode 100644 index 00000000..ee6b37c1 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7122a2c6312b29f4aed1554e3568a6822f6c6ab283a7410c3e13b71d400f3e55 +size 2079 diff --git a/Skins/心kokoro dt/hit100k-9@2x.png b/Skins/心kokoro dt/hit100k-9@2x.png new file mode 100644 index 00000000..a83ca001 --- /dev/null +++ b/Skins/心kokoro dt/hit100k-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72c52946d771ebf77b71d5d1fc69aee3bf01b4b78baf2b41ae40a49e35250c4c +size 18554 diff --git a/Skins/心kokoro dt/hit100k.png b/Skins/心kokoro dt/hit100k.png new file mode 100644 index 00000000..ad907c56 --- /dev/null +++ b/Skins/心kokoro dt/hit100k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3c3ee176bc7986ad3e9d25013c13b55d1ce5095fc02531e998de406ec7809c +size 3465 diff --git a/Skins/心kokoro dt/hit100k@2x.png b/Skins/心kokoro dt/hit100k@2x.png new file mode 100644 index 00000000..a1fd828b --- /dev/null +++ b/Skins/心kokoro dt/hit100k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8797b14032eb63f32930876ce5f502c2f3649140f9e78914f35d5c4fbf0792 +size 8659 diff --git a/Skins/心kokoro dt/hit300-0.png b/Skins/心kokoro dt/hit300-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/心kokoro dt/hit300-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/心kokoro dt/hit300-0@2x.png b/Skins/心kokoro dt/hit300-0@2x.png new file mode 100644 index 00000000..1a98fd0f --- /dev/null +++ b/Skins/心kokoro dt/hit300-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f46164437212804634ef86d2571c80e4047e577b0f582a1934e221103ed63f1 +size 2806 diff --git a/Skins/心kokoro dt/hit300-1.png b/Skins/心kokoro dt/hit300-1.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/心kokoro dt/hit300-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/心kokoro dt/hit300-1@2x.png b/Skins/心kokoro dt/hit300-1@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/hit300-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/hit300.png b/Skins/心kokoro dt/hit300.png new file mode 100644 index 00000000..0254f873 --- /dev/null +++ b/Skins/心kokoro dt/hit300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb30ac8b31fb1ece42dc53b4e5d91fb5ed7df683d83a410394a208158517843a +size 2376 diff --git a/Skins/心kokoro dt/hit300@2x.png b/Skins/心kokoro dt/hit300@2x.png new file mode 100644 index 00000000..a6ec0a10 --- /dev/null +++ b/Skins/心kokoro dt/hit300@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c429829dd07fd66c8bf494fe240f0b0f851b66f0ff9303b0b15a7483bc30d833 +size 5657 diff --git a/Skins/心kokoro dt/hit300g-0.png b/Skins/心kokoro dt/hit300g-0.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/心kokoro dt/hit300g-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/心kokoro dt/hit300g-0@2x.png b/Skins/心kokoro dt/hit300g-0@2x.png new file mode 100644 index 00000000..1a98fd0f --- /dev/null +++ b/Skins/心kokoro dt/hit300g-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f46164437212804634ef86d2571c80e4047e577b0f582a1934e221103ed63f1 +size 2806 diff --git a/Skins/心kokoro dt/hit300g-1.png b/Skins/心kokoro dt/hit300g-1.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/心kokoro dt/hit300g-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/心kokoro dt/hit300g-1@2x.png b/Skins/心kokoro dt/hit300g-1@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/hit300g-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/hit300g.png b/Skins/心kokoro dt/hit300g.png new file mode 100644 index 00000000..0ce335b0 --- /dev/null +++ b/Skins/心kokoro dt/hit300g.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db677e7b5a3aa09e9c8465afaf1ccbaf8695caa47cbb7a8c66b97586db1d412b +size 2376 diff --git a/Skins/心kokoro dt/hit300g@2x.png b/Skins/心kokoro dt/hit300g@2x.png new file mode 100644 index 00000000..042b7e22 --- /dev/null +++ b/Skins/心kokoro dt/hit300g@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8310d673763f89723688ff62c4a23f1c592126e5de63d925d83d0d511717a8f3 +size 5894 diff --git a/Skins/心kokoro dt/hit300k-0.png b/Skins/心kokoro dt/hit300k-0.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/心kokoro dt/hit300k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/心kokoro dt/hit300k-0@2x.png b/Skins/心kokoro dt/hit300k-0@2x.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/心kokoro dt/hit300k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/心kokoro dt/hit300k-1.png b/Skins/心kokoro dt/hit300k-1.png new file mode 100644 index 00000000..007240b0 --- /dev/null +++ b/Skins/心kokoro dt/hit300k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482a18eb975091b28cb560e4db17862c876cc7234ae8b67d1600799b00277d97 +size 70 diff --git a/Skins/心kokoro dt/hit300k-1@2x.png b/Skins/心kokoro dt/hit300k-1@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/hit300k-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/hit300k.png b/Skins/心kokoro dt/hit300k.png new file mode 100644 index 00000000..737f2fb7 --- /dev/null +++ b/Skins/心kokoro dt/hit300k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737cddaae432ac035f7faa089f1ed9907b4a6b789ee3a6d61c0842b14454dd0e +size 4451 diff --git a/Skins/心kokoro dt/hit300k@2x.png b/Skins/心kokoro dt/hit300k@2x.png new file mode 100644 index 00000000..2d2b9d4f --- /dev/null +++ b/Skins/心kokoro dt/hit300k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13579e05b7928da1561ac325179b67850f357689070fbc0d16aab46c30c8d483 +size 7421 diff --git a/Skins/心kokoro dt/hit50-0.png b/Skins/心kokoro dt/hit50-0.png new file mode 100644 index 00000000..df1530c9 --- /dev/null +++ b/Skins/心kokoro dt/hit50-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7b337972457002d500145df25f5fdb61804f85cb5bfec684f8a714010fd0dd +size 1091 diff --git a/Skins/心kokoro dt/hit50-0@2x.png b/Skins/心kokoro dt/hit50-0@2x.png new file mode 100644 index 00000000..f9399582 --- /dev/null +++ b/Skins/心kokoro dt/hit50-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0eca289303c733e9d9db8acba0401c67321f985905b096998d590f233c30ae +size 16259 diff --git a/Skins/心kokoro dt/hit50-1.png b/Skins/心kokoro dt/hit50-1.png new file mode 100644 index 00000000..1c759003 --- /dev/null +++ b/Skins/心kokoro dt/hit50-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92cb055358da1a9b1ce05ae18dd32b46ef41c36e58beb9ec3b399af0a376392 +size 1432 diff --git a/Skins/心kokoro dt/hit50-10.png b/Skins/心kokoro dt/hit50-10.png new file mode 100644 index 00000000..d12c9342 --- /dev/null +++ b/Skins/心kokoro dt/hit50-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7751dbb58559a736ed2516e55b0d6f3c9d5616fa42b6b82b5b050bd4dbc95422 +size 1712 diff --git a/Skins/心kokoro dt/hit50-10@2x.png b/Skins/心kokoro dt/hit50-10@2x.png new file mode 100644 index 00000000..773f76d0 --- /dev/null +++ b/Skins/心kokoro dt/hit50-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6bda27f61226747f956eb80e40e202a40bd6a274807977d00cc7c0099473ede +size 17962 diff --git a/Skins/心kokoro dt/hit50-11.png b/Skins/心kokoro dt/hit50-11.png new file mode 100644 index 00000000..247882ae --- /dev/null +++ b/Skins/心kokoro dt/hit50-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e8e009241f9d32e70a978983c0edea219d0b6bbc9ce87cd151c1cb6d290a48 +size 1762 diff --git a/Skins/心kokoro dt/hit50-11@2x.png b/Skins/心kokoro dt/hit50-11@2x.png new file mode 100644 index 00000000..15f3b9a3 --- /dev/null +++ b/Skins/心kokoro dt/hit50-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab979b409975354d5f98343b57b08b4d3fb73d868dfb13ee5d0b9a6dac3ab101 +size 18132 diff --git a/Skins/心kokoro dt/hit50-12.png b/Skins/心kokoro dt/hit50-12.png new file mode 100644 index 00000000..e65c9b3b --- /dev/null +++ b/Skins/心kokoro dt/hit50-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdff4060af2e648eeea27153e63a41cd9af605684b0159e3d0e25bfa002f872b +size 1770 diff --git a/Skins/心kokoro dt/hit50-12@2x.png b/Skins/心kokoro dt/hit50-12@2x.png new file mode 100644 index 00000000..5d5a91e7 --- /dev/null +++ b/Skins/心kokoro dt/hit50-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a336c090e461d42688f5258dcf2ff692aaa88a58912285de101b5b8381c1223f +size 18243 diff --git a/Skins/心kokoro dt/hit50-13.png b/Skins/心kokoro dt/hit50-13.png new file mode 100644 index 00000000..0779bc0b --- /dev/null +++ b/Skins/心kokoro dt/hit50-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc562202cd4667eb2c08c2ab4aa4cfbcdd4ecd61a451187e91c21b059f0751c4 +size 1791 diff --git a/Skins/心kokoro dt/hit50-13@2x.png b/Skins/心kokoro dt/hit50-13@2x.png new file mode 100644 index 00000000..e86f7b1d --- /dev/null +++ b/Skins/心kokoro dt/hit50-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a733a2719bf7177b33b13bb552271cad4d3316829132c33784456bcf4392e215 +size 18246 diff --git a/Skins/心kokoro dt/hit50-14.png b/Skins/心kokoro dt/hit50-14.png new file mode 100644 index 00000000..87537442 --- /dev/null +++ b/Skins/心kokoro dt/hit50-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f51e60180e4f9a3d98b4936f71a71894a39727fcc0da06f17308fbd1d982d3 +size 1836 diff --git a/Skins/心kokoro dt/hit50-14@2x.png b/Skins/心kokoro dt/hit50-14@2x.png new file mode 100644 index 00000000..3cbfc89d --- /dev/null +++ b/Skins/心kokoro dt/hit50-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1361cf9bca11707ef640dd87050002b9dc5fa36c45eaac9b885d59a6880b7bc7 +size 18360 diff --git a/Skins/心kokoro dt/hit50-15.png b/Skins/心kokoro dt/hit50-15.png new file mode 100644 index 00000000..8216a39d --- /dev/null +++ b/Skins/心kokoro dt/hit50-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8acb912f398c043b0c1eeb547a53ec340070cd33a9137f544bade7cb4f003ff4 +size 1825 diff --git a/Skins/心kokoro dt/hit50-15@2x.png b/Skins/心kokoro dt/hit50-15@2x.png new file mode 100644 index 00000000..7e894686 --- /dev/null +++ b/Skins/心kokoro dt/hit50-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f45bfbd445b72e390d5db8a4e3f414b7bef3c680b4ef7a170b1c3f037f95d3 +size 18415 diff --git a/Skins/心kokoro dt/hit50-16.png b/Skins/心kokoro dt/hit50-16.png new file mode 100644 index 00000000..0a3c29db --- /dev/null +++ b/Skins/心kokoro dt/hit50-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8586511e29447b1ff031aabf70dc6c13cddb970e743ebb00bfac0cb18f740613 +size 1884 diff --git a/Skins/心kokoro dt/hit50-16@2x.png b/Skins/心kokoro dt/hit50-16@2x.png new file mode 100644 index 00000000..fd22a7ed --- /dev/null +++ b/Skins/心kokoro dt/hit50-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118bab8cdc6bf8774ac836a1da478b243353f7768f3f0358debdec3328d1af7a +size 18501 diff --git a/Skins/心kokoro dt/hit50-17.png b/Skins/心kokoro dt/hit50-17.png new file mode 100644 index 00000000..2dfffd37 --- /dev/null +++ b/Skins/心kokoro dt/hit50-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c99c137c5092e1bb53fb8589a3f001a62c7ba2610f2d3fa3d35fdc293835ee +size 1858 diff --git a/Skins/心kokoro dt/hit50-17@2x.png b/Skins/心kokoro dt/hit50-17@2x.png new file mode 100644 index 00000000..e231bc2f --- /dev/null +++ b/Skins/心kokoro dt/hit50-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d1bc9c588cbb9d038ae8140eaee18441f3d3c4f6fe23abfc9104fee5e4e7bf5 +size 18610 diff --git a/Skins/心kokoro dt/hit50-18.png b/Skins/心kokoro dt/hit50-18.png new file mode 100644 index 00000000..41a73d87 --- /dev/null +++ b/Skins/心kokoro dt/hit50-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546d9f94b5d9e5727852c2242d3d841a65ee22282aab129edbaaf60024c5a754 +size 1942 diff --git a/Skins/心kokoro dt/hit50-18@2x.png b/Skins/心kokoro dt/hit50-18@2x.png new file mode 100644 index 00000000..5254f11e --- /dev/null +++ b/Skins/心kokoro dt/hit50-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14be02e851938588acd36ebf4edaba6563cc0c31304a694c2bfca070a2c9db83 +size 18707 diff --git a/Skins/心kokoro dt/hit50-19.png b/Skins/心kokoro dt/hit50-19.png new file mode 100644 index 00000000..01e27398 --- /dev/null +++ b/Skins/心kokoro dt/hit50-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb55dafad3081005543a799ea1d9cc429557a4b6cb076ae3c915933ecace341e +size 1956 diff --git a/Skins/心kokoro dt/hit50-19@2x.png b/Skins/心kokoro dt/hit50-19@2x.png new file mode 100644 index 00000000..eebe88a7 --- /dev/null +++ b/Skins/心kokoro dt/hit50-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81a6708e8c21ace5ef02953f139dcbfc609e79dd23361c18b3c4149ba3ad7cd +size 18770 diff --git a/Skins/心kokoro dt/hit50-1@2x.png b/Skins/心kokoro dt/hit50-1@2x.png new file mode 100644 index 00000000..f7276494 --- /dev/null +++ b/Skins/心kokoro dt/hit50-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3351c5318b9156fe95d4400ba272a53227ae8e3525c160f6cab468995b729f9 +size 17091 diff --git a/Skins/心kokoro dt/hit50-2.png b/Skins/心kokoro dt/hit50-2.png new file mode 100644 index 00000000..f1957fc8 --- /dev/null +++ b/Skins/心kokoro dt/hit50-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4a63b28152bfe322949a6a119f2cb93614cca306d16da9f85808442e0bfb6e +size 1526 diff --git a/Skins/心kokoro dt/hit50-20.png b/Skins/心kokoro dt/hit50-20.png new file mode 100644 index 00000000..5815b1bf --- /dev/null +++ b/Skins/心kokoro dt/hit50-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c400cfdb0d46d006aa658b180efacf371b002a783f54aebb4cc9255f70addc2b +size 1982 diff --git a/Skins/心kokoro dt/hit50-20@2x.png b/Skins/心kokoro dt/hit50-20@2x.png new file mode 100644 index 00000000..71a15e9d --- /dev/null +++ b/Skins/心kokoro dt/hit50-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651fcf633f8e3f9fe6e962ac3ca3a11752eee570c0c0ffdd94d78d409be5eb87 +size 18745 diff --git a/Skins/心kokoro dt/hit50-21.png b/Skins/心kokoro dt/hit50-21.png new file mode 100644 index 00000000..5815b1bf --- /dev/null +++ b/Skins/心kokoro dt/hit50-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c400cfdb0d46d006aa658b180efacf371b002a783f54aebb4cc9255f70addc2b +size 1982 diff --git a/Skins/心kokoro dt/hit50-21@2x.png b/Skins/心kokoro dt/hit50-21@2x.png new file mode 100644 index 00000000..efea8d02 --- /dev/null +++ b/Skins/心kokoro dt/hit50-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e813dad29540972e29b1b8a01125e5f5d4e58371b3e5ae7b919240f91c99a682 +size 18745 diff --git a/Skins/心kokoro dt/hit50-22.png b/Skins/心kokoro dt/hit50-22.png new file mode 100644 index 00000000..5815b1bf --- /dev/null +++ b/Skins/心kokoro dt/hit50-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c400cfdb0d46d006aa658b180efacf371b002a783f54aebb4cc9255f70addc2b +size 1982 diff --git a/Skins/心kokoro dt/hit50-22@2x.png b/Skins/心kokoro dt/hit50-22@2x.png new file mode 100644 index 00000000..751c93f8 --- /dev/null +++ b/Skins/心kokoro dt/hit50-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7051f57be9ecbc3f9952c75b422a23d985dbcc1bd81f5dab0595df27c04145f9 +size 18745 diff --git a/Skins/心kokoro dt/hit50-23.png b/Skins/心kokoro dt/hit50-23.png new file mode 100644 index 00000000..5815b1bf --- /dev/null +++ b/Skins/心kokoro dt/hit50-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c400cfdb0d46d006aa658b180efacf371b002a783f54aebb4cc9255f70addc2b +size 1982 diff --git a/Skins/心kokoro dt/hit50-23@2x.png b/Skins/心kokoro dt/hit50-23@2x.png new file mode 100644 index 00000000..8df75b14 --- /dev/null +++ b/Skins/心kokoro dt/hit50-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9bffa23669876dc9aece352f436f5767643224ecff3d4068095356cbac6c02 +size 18745 diff --git a/Skins/心kokoro dt/hit50-24.png b/Skins/心kokoro dt/hit50-24.png new file mode 100644 index 00000000..db96b6e9 --- /dev/null +++ b/Skins/心kokoro dt/hit50-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a04d4f9f46fbb9d444be2ef03eb461fbbf44ba502427c7da8ddd2ed9ebd105a +size 1982 diff --git a/Skins/心kokoro dt/hit50-24@2x.png b/Skins/心kokoro dt/hit50-24@2x.png new file mode 100644 index 00000000..34789689 --- /dev/null +++ b/Skins/心kokoro dt/hit50-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2efbf4310758218e30ef2c7bd286792a0fa757953e6a2bdb1c92ac3967121e74 +size 18745 diff --git a/Skins/心kokoro dt/hit50-25.png b/Skins/心kokoro dt/hit50-25.png new file mode 100644 index 00000000..db96b6e9 --- /dev/null +++ b/Skins/心kokoro dt/hit50-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a04d4f9f46fbb9d444be2ef03eb461fbbf44ba502427c7da8ddd2ed9ebd105a +size 1982 diff --git a/Skins/心kokoro dt/hit50-25@2x.png b/Skins/心kokoro dt/hit50-25@2x.png new file mode 100644 index 00000000..54f88860 --- /dev/null +++ b/Skins/心kokoro dt/hit50-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91491bd1dda57643c4ae5b78fcddadddcf7ec27134623e94a96c1f735ecf4ed +size 18745 diff --git a/Skins/心kokoro dt/hit50-26.png b/Skins/心kokoro dt/hit50-26.png new file mode 100644 index 00000000..db96b6e9 --- /dev/null +++ b/Skins/心kokoro dt/hit50-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a04d4f9f46fbb9d444be2ef03eb461fbbf44ba502427c7da8ddd2ed9ebd105a +size 1982 diff --git a/Skins/心kokoro dt/hit50-26@2x.png b/Skins/心kokoro dt/hit50-26@2x.png new file mode 100644 index 00000000..bead74ac --- /dev/null +++ b/Skins/心kokoro dt/hit50-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:659d1cf051cc69c3798241e622eadfddbbd8f95f146b3281a041d25b766775da +size 18745 diff --git a/Skins/心kokoro dt/hit50-27.png b/Skins/心kokoro dt/hit50-27.png new file mode 100644 index 00000000..db96b6e9 --- /dev/null +++ b/Skins/心kokoro dt/hit50-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a04d4f9f46fbb9d444be2ef03eb461fbbf44ba502427c7da8ddd2ed9ebd105a +size 1982 diff --git a/Skins/心kokoro dt/hit50-27@2x.png b/Skins/心kokoro dt/hit50-27@2x.png new file mode 100644 index 00000000..c4d21136 --- /dev/null +++ b/Skins/心kokoro dt/hit50-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4133b9966499d81ae2a4ef79cca53df0839a04f6fdfa564bde68aff3ff114d46 +size 18745 diff --git a/Skins/心kokoro dt/hit50-28.png b/Skins/心kokoro dt/hit50-28.png new file mode 100644 index 00000000..d2a021e5 --- /dev/null +++ b/Skins/心kokoro dt/hit50-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55771f1df3074b2c22b848c090941141f45ec82c06cd0ae767cbef31ca044e1 +size 1982 diff --git a/Skins/心kokoro dt/hit50-28@2x.png b/Skins/心kokoro dt/hit50-28@2x.png new file mode 100644 index 00000000..ba3f514d --- /dev/null +++ b/Skins/心kokoro dt/hit50-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5cd025b5e47d11eae0c0052a6d88d453954f834bb3c1662c934baa442c7991a +size 18745 diff --git a/Skins/心kokoro dt/hit50-29.png b/Skins/心kokoro dt/hit50-29.png new file mode 100644 index 00000000..d2a021e5 --- /dev/null +++ b/Skins/心kokoro dt/hit50-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55771f1df3074b2c22b848c090941141f45ec82c06cd0ae767cbef31ca044e1 +size 1982 diff --git a/Skins/心kokoro dt/hit50-29@2x.png b/Skins/心kokoro dt/hit50-29@2x.png new file mode 100644 index 00000000..bffb5b64 --- /dev/null +++ b/Skins/心kokoro dt/hit50-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876543e1eb1475f25552f03bf2a31e811b8ecb18ee9715a7a0b37b7a030a2e64 +size 18745 diff --git a/Skins/心kokoro dt/hit50-2@2x.png b/Skins/心kokoro dt/hit50-2@2x.png new file mode 100644 index 00000000..ba569ac4 --- /dev/null +++ b/Skins/心kokoro dt/hit50-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5dc46b403cda99bebac7314ad52772380a9771f5cd00a67b09766f1562d740e +size 17297 diff --git a/Skins/心kokoro dt/hit50-3.png b/Skins/心kokoro dt/hit50-3.png new file mode 100644 index 00000000..ec8aa136 --- /dev/null +++ b/Skins/心kokoro dt/hit50-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad1fc07ff843b32c45b6fd5a5ca2a2288c8a2013104e9f4b51ecae9ce5b5c2ab +size 1573 diff --git a/Skins/心kokoro dt/hit50-30.png b/Skins/心kokoro dt/hit50-30.png new file mode 100644 index 00000000..d2a021e5 --- /dev/null +++ b/Skins/心kokoro dt/hit50-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55771f1df3074b2c22b848c090941141f45ec82c06cd0ae767cbef31ca044e1 +size 1982 diff --git a/Skins/心kokoro dt/hit50-30@2x.png b/Skins/心kokoro dt/hit50-30@2x.png new file mode 100644 index 00000000..80d201d5 --- /dev/null +++ b/Skins/心kokoro dt/hit50-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a16a200719e8047abd181a7fb038524ad85af681edfde0bfdc6d5f60f8081a5 +size 18745 diff --git a/Skins/心kokoro dt/hit50-31.png b/Skins/心kokoro dt/hit50-31.png new file mode 100644 index 00000000..528d0df1 --- /dev/null +++ b/Skins/心kokoro dt/hit50-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92df0d30e57548b026d7a900b0a8fd9afd59455fecf8933f39169e163b282d9 +size 1979 diff --git a/Skins/心kokoro dt/hit50-31@2x.png b/Skins/心kokoro dt/hit50-31@2x.png new file mode 100644 index 00000000..5854a56d --- /dev/null +++ b/Skins/心kokoro dt/hit50-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65571ca1baadf69bbac3a1df13ab2f696931fb552841d03a463994c2d228701b +size 18875 diff --git a/Skins/心kokoro dt/hit50-32.png b/Skins/心kokoro dt/hit50-32.png new file mode 100644 index 00000000..03798b58 --- /dev/null +++ b/Skins/心kokoro dt/hit50-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb3150796f815f830c64f150415babeac0c92ed42faf6e6c053bb92f18c30aba +size 1942 diff --git a/Skins/心kokoro dt/hit50-32@2x.png b/Skins/心kokoro dt/hit50-32@2x.png new file mode 100644 index 00000000..e625efd2 --- /dev/null +++ b/Skins/心kokoro dt/hit50-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407cb06a307ecd308072e72c4c94d054732aab0834df0d6d62a06ba631da5c6b +size 18810 diff --git a/Skins/心kokoro dt/hit50-33.png b/Skins/心kokoro dt/hit50-33.png new file mode 100644 index 00000000..e4a3d2ae --- /dev/null +++ b/Skins/心kokoro dt/hit50-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982d5ad509599c5f37a41c57d2dafb30b0bc43db5765e1723fdab15ac560a7be +size 1852 diff --git a/Skins/心kokoro dt/hit50-33@2x.png b/Skins/心kokoro dt/hit50-33@2x.png new file mode 100644 index 00000000..cbaf6240 --- /dev/null +++ b/Skins/心kokoro dt/hit50-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a1185bc65a87d370b47c941f478108643fc4a85edc5e380155d38cdf45fbd1 +size 18672 diff --git a/Skins/心kokoro dt/hit50-34.png b/Skins/心kokoro dt/hit50-34.png new file mode 100644 index 00000000..377003fa --- /dev/null +++ b/Skins/心kokoro dt/hit50-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a1b71c782d2c49deb79399dfb0ef60f049e0e44769eeed467b87381a7878fc8 +size 1856 diff --git a/Skins/心kokoro dt/hit50-34@2x.png b/Skins/心kokoro dt/hit50-34@2x.png new file mode 100644 index 00000000..0ff97778 --- /dev/null +++ b/Skins/心kokoro dt/hit50-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c921133d81f258bff8058f95108ebb8cf83ecfb1ae32ba0d34102ca984e6b722 +size 18412 diff --git a/Skins/心kokoro dt/hit50-35.png b/Skins/心kokoro dt/hit50-35.png new file mode 100644 index 00000000..d8174b40 --- /dev/null +++ b/Skins/心kokoro dt/hit50-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c17c5011d0641f1c786b0991c377c519caad45d1e35e93874a88d99f3f4720 +size 1693 diff --git a/Skins/心kokoro dt/hit50-35@2x.png b/Skins/心kokoro dt/hit50-35@2x.png new file mode 100644 index 00000000..142b0fd2 --- /dev/null +++ b/Skins/心kokoro dt/hit50-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e649453d8788f716c2d3fcb9b36df9354054a5d684c7200b7ffa5282fda4abf +size 18087 diff --git a/Skins/心kokoro dt/hit50-36.png b/Skins/心kokoro dt/hit50-36.png new file mode 100644 index 00000000..113e0f0d --- /dev/null +++ b/Skins/心kokoro dt/hit50-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279d23dab6b9aa17dfd00ee52ac8dc16805fedc4821ce4c72ea86c44ddaeaeeb +size 1669 diff --git a/Skins/心kokoro dt/hit50-36@2x.png b/Skins/心kokoro dt/hit50-36@2x.png new file mode 100644 index 00000000..395052f6 --- /dev/null +++ b/Skins/心kokoro dt/hit50-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce69e3ef12c22f2ff6e13eecf97928e5722df8a03cc430b5b312936711fdf42 +size 17967 diff --git a/Skins/心kokoro dt/hit50-37.png b/Skins/心kokoro dt/hit50-37.png new file mode 100644 index 00000000..4b9b1142 --- /dev/null +++ b/Skins/心kokoro dt/hit50-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe00c19a1fe4cfe37a693f5d53f077fd6451d7550cf640d9c03fc73efea8d4a +size 1603 diff --git a/Skins/心kokoro dt/hit50-37@2x.png b/Skins/心kokoro dt/hit50-37@2x.png new file mode 100644 index 00000000..a36feeca --- /dev/null +++ b/Skins/心kokoro dt/hit50-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7f6476a17809d52f0d4edcf1acc0ff04e6762dd2c790b92782bd3b66b30e4e +size 17655 diff --git a/Skins/心kokoro dt/hit50-38.png b/Skins/心kokoro dt/hit50-38.png new file mode 100644 index 00000000..2973d2aa --- /dev/null +++ b/Skins/心kokoro dt/hit50-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa36915a4350da52a06bdef4af83283dc29b41fe3541de98e28957a9dd0ae7e1 +size 1493 diff --git a/Skins/心kokoro dt/hit50-38@2x.png b/Skins/心kokoro dt/hit50-38@2x.png new file mode 100644 index 00000000..8341ca5a --- /dev/null +++ b/Skins/心kokoro dt/hit50-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119a227c2d84f0d82711dd5d02a671741ad396b67ff1f605e0feddaa1ffd986b +size 17266 diff --git a/Skins/心kokoro dt/hit50-39.png b/Skins/心kokoro dt/hit50-39.png new file mode 100644 index 00000000..8160d48a --- /dev/null +++ b/Skins/心kokoro dt/hit50-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de3ef64c36c739d8f70a6588ff9628a40869f7e0fd2182538e2e608608ff5ddd +size 1260 diff --git a/Skins/心kokoro dt/hit50-39@2x.png b/Skins/心kokoro dt/hit50-39@2x.png new file mode 100644 index 00000000..d7adb6fd --- /dev/null +++ b/Skins/心kokoro dt/hit50-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a3357dc01c01766bca352a5d3d2068d61ed7226db45469e78c653c86c41b21 +size 16740 diff --git a/Skins/心kokoro dt/hit50-3@2x.png b/Skins/心kokoro dt/hit50-3@2x.png new file mode 100644 index 00000000..ff69b68a --- /dev/null +++ b/Skins/心kokoro dt/hit50-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3897186dce4ad78ea5f35a7b988195ec920ba211b2b8569e594b0a5b5bb8ee6b +size 17474 diff --git a/Skins/心kokoro dt/hit50-4.png b/Skins/心kokoro dt/hit50-4.png new file mode 100644 index 00000000..43860a9b --- /dev/null +++ b/Skins/心kokoro dt/hit50-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365de5caefec14cd9aafecf221fb3f0f58594480e8a7dd9d30a2c871ccacc998 +size 1631 diff --git a/Skins/心kokoro dt/hit50-40.png b/Skins/心kokoro dt/hit50-40.png new file mode 100644 index 00000000..c23ed152 --- /dev/null +++ b/Skins/心kokoro dt/hit50-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08eaa0078755d1b6369e00371c7d3ed1893a023b1e830f53bfc7f6a49737a245 +size 303 diff --git a/Skins/心kokoro dt/hit50-40@2x.png b/Skins/心kokoro dt/hit50-40@2x.png new file mode 100644 index 00000000..81858da1 --- /dev/null +++ b/Skins/心kokoro dt/hit50-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f8e1037a98aeb8baad237f3f918fd5fad644ccdee60c6da1f7d8fd0b15240f +size 15279 diff --git a/Skins/心kokoro dt/hit50-41.png b/Skins/心kokoro dt/hit50-41.png new file mode 100644 index 00000000..c23ed152 --- /dev/null +++ b/Skins/心kokoro dt/hit50-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08eaa0078755d1b6369e00371c7d3ed1893a023b1e830f53bfc7f6a49737a245 +size 303 diff --git a/Skins/心kokoro dt/hit50-41@2x.png b/Skins/心kokoro dt/hit50-41@2x.png new file mode 100644 index 00000000..22da3f31 --- /dev/null +++ b/Skins/心kokoro dt/hit50-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4fd1764c42abf9e0cbca98dd2e651e8d74905b11fb883c423adbe8151b9e07 +size 15279 diff --git a/Skins/心kokoro dt/hit50-42.png b/Skins/心kokoro dt/hit50-42.png new file mode 100644 index 00000000..82652d7f --- /dev/null +++ b/Skins/心kokoro dt/hit50-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0923165727be98974a36a5dca547ee7bdb1deb8cef24918b1c3cd32236c8ade9 +size 303 diff --git a/Skins/心kokoro dt/hit50-42@2x.png b/Skins/心kokoro dt/hit50-42@2x.png new file mode 100644 index 00000000..b8986525 --- /dev/null +++ b/Skins/心kokoro dt/hit50-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfadb8279454439fe8ca89b244b0907276655c05615e8cef0d265c2d8861d300 +size 15279 diff --git a/Skins/心kokoro dt/hit50-43.png b/Skins/心kokoro dt/hit50-43.png new file mode 100644 index 00000000..82652d7f --- /dev/null +++ b/Skins/心kokoro dt/hit50-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0923165727be98974a36a5dca547ee7bdb1deb8cef24918b1c3cd32236c8ade9 +size 303 diff --git a/Skins/心kokoro dt/hit50-43@2x.png b/Skins/心kokoro dt/hit50-43@2x.png new file mode 100644 index 00000000..d5aa334a --- /dev/null +++ b/Skins/心kokoro dt/hit50-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d49c06d31bd4438cd830aded37a21d865e6d678427b3719115d86ad335b9938 +size 15279 diff --git a/Skins/心kokoro dt/hit50-44.png b/Skins/心kokoro dt/hit50-44.png new file mode 100644 index 00000000..82652d7f --- /dev/null +++ b/Skins/心kokoro dt/hit50-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0923165727be98974a36a5dca547ee7bdb1deb8cef24918b1c3cd32236c8ade9 +size 303 diff --git a/Skins/心kokoro dt/hit50-44@2x.png b/Skins/心kokoro dt/hit50-44@2x.png new file mode 100644 index 00000000..0a661313 --- /dev/null +++ b/Skins/心kokoro dt/hit50-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b4a892b0c677a384d2933067e3c1a5b8ecad9b26cb5acf733768a7aff2fff8 +size 15279 diff --git a/Skins/心kokoro dt/hit50-45.png b/Skins/心kokoro dt/hit50-45.png new file mode 100644 index 00000000..82652d7f --- /dev/null +++ b/Skins/心kokoro dt/hit50-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0923165727be98974a36a5dca547ee7bdb1deb8cef24918b1c3cd32236c8ade9 +size 303 diff --git a/Skins/心kokoro dt/hit50-45@2x.png b/Skins/心kokoro dt/hit50-45@2x.png new file mode 100644 index 00000000..4662d5c9 --- /dev/null +++ b/Skins/心kokoro dt/hit50-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e7737e7f3187cf8519bfa25c8de9773e079480e3ee5ea21f450ff528ab5ea6 +size 15279 diff --git a/Skins/心kokoro dt/hit50-46.png b/Skins/心kokoro dt/hit50-46.png new file mode 100644 index 00000000..82652d7f --- /dev/null +++ b/Skins/心kokoro dt/hit50-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0923165727be98974a36a5dca547ee7bdb1deb8cef24918b1c3cd32236c8ade9 +size 303 diff --git a/Skins/心kokoro dt/hit50-46@2x.png b/Skins/心kokoro dt/hit50-46@2x.png new file mode 100644 index 00000000..d7ef3b8b --- /dev/null +++ b/Skins/心kokoro dt/hit50-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4fd7f66174a109828d31f47a0b5a74ae75d9d141fb511a1757eb88a1ce80242 +size 15279 diff --git a/Skins/心kokoro dt/hit50-47.png b/Skins/心kokoro dt/hit50-47.png new file mode 100644 index 00000000..82652d7f --- /dev/null +++ b/Skins/心kokoro dt/hit50-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0923165727be98974a36a5dca547ee7bdb1deb8cef24918b1c3cd32236c8ade9 +size 303 diff --git a/Skins/心kokoro dt/hit50-47@2x.png b/Skins/心kokoro dt/hit50-47@2x.png new file mode 100644 index 00000000..83e5a028 --- /dev/null +++ b/Skins/心kokoro dt/hit50-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556977f9fd8112543142ace60eba8498b4d759da605f4932944560b266e3df01 +size 15279 diff --git a/Skins/心kokoro dt/hit50-48.png b/Skins/心kokoro dt/hit50-48.png new file mode 100644 index 00000000..2bcef5cd --- /dev/null +++ b/Skins/心kokoro dt/hit50-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6021d74bb0b19f40ad9c21866f7488f3313e0368d6bd24b640e61c507cf60513 +size 303 diff --git a/Skins/心kokoro dt/hit50-48@2x.png b/Skins/心kokoro dt/hit50-48@2x.png new file mode 100644 index 00000000..9e91da9a --- /dev/null +++ b/Skins/心kokoro dt/hit50-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c83c9cb9c430368d366e9378e211eec1e9f78b9bf060d89a4ec1f928afeed6 +size 15279 diff --git a/Skins/心kokoro dt/hit50-49.png b/Skins/心kokoro dt/hit50-49.png new file mode 100644 index 00000000..2bcef5cd --- /dev/null +++ b/Skins/心kokoro dt/hit50-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6021d74bb0b19f40ad9c21866f7488f3313e0368d6bd24b640e61c507cf60513 +size 303 diff --git a/Skins/心kokoro dt/hit50-49@2x.png b/Skins/心kokoro dt/hit50-49@2x.png new file mode 100644 index 00000000..cc4566f8 --- /dev/null +++ b/Skins/心kokoro dt/hit50-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a0bbd0ed967b1b3ae6f87270db8ac4407c2d34df4bad242310a8ee5d80f5d1 +size 15279 diff --git a/Skins/心kokoro dt/hit50-4@2x.png b/Skins/心kokoro dt/hit50-4@2x.png new file mode 100644 index 00000000..a9b42e89 --- /dev/null +++ b/Skins/心kokoro dt/hit50-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6023ce4dfde9e6607d3d3e15b58c8cd0d5743842a8e89de4c55ac7155de75e8a +size 17665 diff --git a/Skins/心kokoro dt/hit50-5.png b/Skins/心kokoro dt/hit50-5.png new file mode 100644 index 00000000..405d7572 --- /dev/null +++ b/Skins/心kokoro dt/hit50-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c136522818f8d0061751607a5b6ecdd4289a647699e7a32d4891c0a70304a882 +size 1638 diff --git a/Skins/心kokoro dt/hit50-5@2x.png b/Skins/心kokoro dt/hit50-5@2x.png new file mode 100644 index 00000000..68f96d34 --- /dev/null +++ b/Skins/心kokoro dt/hit50-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e808a17b73814abc1d3a8915ec384db26b6853bf2267979e8a8b1691b052882 +size 17691 diff --git a/Skins/心kokoro dt/hit50-6.png b/Skins/心kokoro dt/hit50-6.png new file mode 100644 index 00000000..7558b443 --- /dev/null +++ b/Skins/心kokoro dt/hit50-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c84423477f3199b51b9995a8b57df181fcc2b50a850f1ee82509955e1f31d7 +size 1684 diff --git a/Skins/心kokoro dt/hit50-6@2x.png b/Skins/心kokoro dt/hit50-6@2x.png new file mode 100644 index 00000000..80935c9c --- /dev/null +++ b/Skins/心kokoro dt/hit50-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67de44c9033a703ffc525191ed59ee55ccd050cb7bee767f751fc43935ed187e +size 17904 diff --git a/Skins/心kokoro dt/hit50-7.png b/Skins/心kokoro dt/hit50-7.png new file mode 100644 index 00000000..794968ee --- /dev/null +++ b/Skins/心kokoro dt/hit50-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe08a1ad862749df99e757fc095d938521eafbd7220154b214839e683a889c8 +size 1703 diff --git a/Skins/心kokoro dt/hit50-7@2x.png b/Skins/心kokoro dt/hit50-7@2x.png new file mode 100644 index 00000000..b02c8e8b --- /dev/null +++ b/Skins/心kokoro dt/hit50-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9969285fb47c01fcf3f9576e5285f113f6943f67ee7ea8078e83e49cf960de0 +size 17907 diff --git a/Skins/心kokoro dt/hit50-8.png b/Skins/心kokoro dt/hit50-8.png new file mode 100644 index 00000000..c52f807f --- /dev/null +++ b/Skins/心kokoro dt/hit50-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e4c6d023aeee8664ba97bc8fc7b461db2d0d4f656fa05e6d44a860ecf69f41 +size 1703 diff --git a/Skins/心kokoro dt/hit50-8@2x.png b/Skins/心kokoro dt/hit50-8@2x.png new file mode 100644 index 00000000..89a6417a --- /dev/null +++ b/Skins/心kokoro dt/hit50-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279c943b1216d7ac45cd761de19b729457091f9e4903b14679b79bed17723fc7 +size 18006 diff --git a/Skins/心kokoro dt/hit50-9.png b/Skins/心kokoro dt/hit50-9.png new file mode 100644 index 00000000..c672b73d --- /dev/null +++ b/Skins/心kokoro dt/hit50-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e203f99dc4f03090038a242fef0240130a91a7b0e88f0ed0ed809c8c79b2d53 +size 1725 diff --git a/Skins/心kokoro dt/hit50-9@2x.png b/Skins/心kokoro dt/hit50-9@2x.png new file mode 100644 index 00000000..1ee00f94 --- /dev/null +++ b/Skins/心kokoro dt/hit50-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5c4475bca403e6eac368de63119f5c4361bbf9c0004248f54c572ed243168a +size 17996 diff --git a/Skins/心kokoro dt/hit50.png b/Skins/心kokoro dt/hit50.png new file mode 100644 index 00000000..7468bdbf --- /dev/null +++ b/Skins/心kokoro dt/hit50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db24c8fa6aaa22c329770978c3ae31aa2fd11daa95c69f9f99e4d77ee6577d7 +size 3172 diff --git a/Skins/心kokoro dt/hit50@2x.png b/Skins/心kokoro dt/hit50@2x.png new file mode 100644 index 00000000..e50db428 --- /dev/null +++ b/Skins/心kokoro dt/hit50@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3f023a4ce57e5c476d94144d36f6a6fb075505f59d6307c6fcd88bbbfd1675f +size 8159 diff --git a/Skins/心kokoro dt/hit50k-0.png b/Skins/心kokoro dt/hit50k-0.png new file mode 100644 index 00000000..e8dc7b88 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4f3ee1776073c7b3947abbefb366312210a40cc168b348b6764285d7952407 +size 1091 diff --git a/Skins/心kokoro dt/hit50k-0@2x.png b/Skins/心kokoro dt/hit50k-0@2x.png new file mode 100644 index 00000000..f9399582 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0eca289303c733e9d9db8acba0401c67321f985905b096998d590f233c30ae +size 16259 diff --git a/Skins/心kokoro dt/hit50k-1.png b/Skins/心kokoro dt/hit50k-1.png new file mode 100644 index 00000000..5efe5464 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4a0c44bd98d9798f065f3d6458d3a9845daf07351cbd4b241f3855b770a46c +size 1432 diff --git a/Skins/心kokoro dt/hit50k-10.png b/Skins/心kokoro dt/hit50k-10.png new file mode 100644 index 00000000..4fa9bff6 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7d763304fb49fb423df4ab4c70d0aac6445c9be0d0a7e64a9f83b515a7cb3b +size 1712 diff --git a/Skins/心kokoro dt/hit50k-10@2x.png b/Skins/心kokoro dt/hit50k-10@2x.png new file mode 100644 index 00000000..773f76d0 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-10@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6bda27f61226747f956eb80e40e202a40bd6a274807977d00cc7c0099473ede +size 17962 diff --git a/Skins/心kokoro dt/hit50k-11.png b/Skins/心kokoro dt/hit50k-11.png new file mode 100644 index 00000000..8b9311dd --- /dev/null +++ b/Skins/心kokoro dt/hit50k-11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:077e4bcb9b292a8be6b7c8a20991c78963ddc5bcaeb2aa375a1dcbd1acc80c83 +size 1762 diff --git a/Skins/心kokoro dt/hit50k-11@2x.png b/Skins/心kokoro dt/hit50k-11@2x.png new file mode 100644 index 00000000..15f3b9a3 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-11@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab979b409975354d5f98343b57b08b4d3fb73d868dfb13ee5d0b9a6dac3ab101 +size 18132 diff --git a/Skins/心kokoro dt/hit50k-12.png b/Skins/心kokoro dt/hit50k-12.png new file mode 100644 index 00000000..4cd5a46d --- /dev/null +++ b/Skins/心kokoro dt/hit50k-12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10caa5a177e7033aa2622b8b739528d1a9b269946083681c1bfbc6cb1d01fc12 +size 1770 diff --git a/Skins/心kokoro dt/hit50k-12@2x.png b/Skins/心kokoro dt/hit50k-12@2x.png new file mode 100644 index 00000000..5d5a91e7 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-12@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a336c090e461d42688f5258dcf2ff692aaa88a58912285de101b5b8381c1223f +size 18243 diff --git a/Skins/心kokoro dt/hit50k-13.png b/Skins/心kokoro dt/hit50k-13.png new file mode 100644 index 00000000..ad101fe3 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d3bab0fd1b8a3a4271d7e8ca906af0d142da7ccdcabcc7a4a7c20075ee1932 +size 1791 diff --git a/Skins/心kokoro dt/hit50k-13@2x.png b/Skins/心kokoro dt/hit50k-13@2x.png new file mode 100644 index 00000000..e86f7b1d --- /dev/null +++ b/Skins/心kokoro dt/hit50k-13@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a733a2719bf7177b33b13bb552271cad4d3316829132c33784456bcf4392e215 +size 18246 diff --git a/Skins/心kokoro dt/hit50k-14.png b/Skins/心kokoro dt/hit50k-14.png new file mode 100644 index 00000000..31b80cb6 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c6097e14a73f21cbc70a9561b0a04283d15f70dbda4775c0b28bc44f732048 +size 1836 diff --git a/Skins/心kokoro dt/hit50k-14@2x.png b/Skins/心kokoro dt/hit50k-14@2x.png new file mode 100644 index 00000000..3cbfc89d --- /dev/null +++ b/Skins/心kokoro dt/hit50k-14@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1361cf9bca11707ef640dd87050002b9dc5fa36c45eaac9b885d59a6880b7bc7 +size 18360 diff --git a/Skins/心kokoro dt/hit50k-15.png b/Skins/心kokoro dt/hit50k-15.png new file mode 100644 index 00000000..4debc005 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6551faff3abc5fc60c98145b653c31dee6168429d2fad7de87ee2e01432bf8dd +size 1825 diff --git a/Skins/心kokoro dt/hit50k-15@2x.png b/Skins/心kokoro dt/hit50k-15@2x.png new file mode 100644 index 00000000..7e894686 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-15@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f45bfbd445b72e390d5db8a4e3f414b7bef3c680b4ef7a170b1c3f037f95d3 +size 18415 diff --git a/Skins/心kokoro dt/hit50k-16.png b/Skins/心kokoro dt/hit50k-16.png new file mode 100644 index 00000000..580f43b2 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a0a747125a68fcbae96c6f88a9a7f4c5e82c96011c38ecf03705ca4e7d8cc9 +size 1884 diff --git a/Skins/心kokoro dt/hit50k-16@2x.png b/Skins/心kokoro dt/hit50k-16@2x.png new file mode 100644 index 00000000..fd22a7ed --- /dev/null +++ b/Skins/心kokoro dt/hit50k-16@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118bab8cdc6bf8774ac836a1da478b243353f7768f3f0358debdec3328d1af7a +size 18501 diff --git a/Skins/心kokoro dt/hit50k-17.png b/Skins/心kokoro dt/hit50k-17.png new file mode 100644 index 00000000..b6f514c5 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b03c23933f71055258917e10e234475f3f472ab6c2a58b554b0f7e751cbc5b3 +size 1858 diff --git a/Skins/心kokoro dt/hit50k-17@2x.png b/Skins/心kokoro dt/hit50k-17@2x.png new file mode 100644 index 00000000..e231bc2f --- /dev/null +++ b/Skins/心kokoro dt/hit50k-17@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d1bc9c588cbb9d038ae8140eaee18441f3d3c4f6fe23abfc9104fee5e4e7bf5 +size 18610 diff --git a/Skins/心kokoro dt/hit50k-18.png b/Skins/心kokoro dt/hit50k-18.png new file mode 100644 index 00000000..12068097 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f9eb92a114abf35e02850a66451c7e582d35ba0f6780a0572e2667fd678342 +size 1942 diff --git a/Skins/心kokoro dt/hit50k-18@2x.png b/Skins/心kokoro dt/hit50k-18@2x.png new file mode 100644 index 00000000..5254f11e --- /dev/null +++ b/Skins/心kokoro dt/hit50k-18@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14be02e851938588acd36ebf4edaba6563cc0c31304a694c2bfca070a2c9db83 +size 18707 diff --git a/Skins/心kokoro dt/hit50k-19.png b/Skins/心kokoro dt/hit50k-19.png new file mode 100644 index 00000000..1a222411 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ec512df1d6f850ed56af04eb8bb6042ee26d78247a24cc98d24615674095ab +size 1956 diff --git a/Skins/心kokoro dt/hit50k-19@2x.png b/Skins/心kokoro dt/hit50k-19@2x.png new file mode 100644 index 00000000..eebe88a7 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-19@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81a6708e8c21ace5ef02953f139dcbfc609e79dd23361c18b3c4149ba3ad7cd +size 18770 diff --git a/Skins/心kokoro dt/hit50k-1@2x.png b/Skins/心kokoro dt/hit50k-1@2x.png new file mode 100644 index 00000000..f7276494 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3351c5318b9156fe95d4400ba272a53227ae8e3525c160f6cab468995b729f9 +size 17091 diff --git a/Skins/心kokoro dt/hit50k-2.png b/Skins/心kokoro dt/hit50k-2.png new file mode 100644 index 00000000..1805dbd7 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c461f8da4b60579cb1646bdf690310a49bbabbb0e15124bc275d4cdfd0794a +size 1526 diff --git a/Skins/心kokoro dt/hit50k-20.png b/Skins/心kokoro dt/hit50k-20.png new file mode 100644 index 00000000..2f7e47e6 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f335b3d76ae1bca75bdc0d0c436f9d1fccec8177be4a766ffaf39165d22628b3 +size 1982 diff --git a/Skins/心kokoro dt/hit50k-20@2x.png b/Skins/心kokoro dt/hit50k-20@2x.png new file mode 100644 index 00000000..71a15e9d --- /dev/null +++ b/Skins/心kokoro dt/hit50k-20@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651fcf633f8e3f9fe6e962ac3ca3a11752eee570c0c0ffdd94d78d409be5eb87 +size 18745 diff --git a/Skins/心kokoro dt/hit50k-21.png b/Skins/心kokoro dt/hit50k-21.png new file mode 100644 index 00000000..2f7e47e6 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f335b3d76ae1bca75bdc0d0c436f9d1fccec8177be4a766ffaf39165d22628b3 +size 1982 diff --git a/Skins/心kokoro dt/hit50k-21@2x.png b/Skins/心kokoro dt/hit50k-21@2x.png new file mode 100644 index 00000000..efea8d02 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-21@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e813dad29540972e29b1b8a01125e5f5d4e58371b3e5ae7b919240f91c99a682 +size 18745 diff --git a/Skins/心kokoro dt/hit50k-22.png b/Skins/心kokoro dt/hit50k-22.png new file mode 100644 index 00000000..2f7e47e6 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f335b3d76ae1bca75bdc0d0c436f9d1fccec8177be4a766ffaf39165d22628b3 +size 1982 diff --git a/Skins/心kokoro dt/hit50k-22@2x.png b/Skins/心kokoro dt/hit50k-22@2x.png new file mode 100644 index 00000000..751c93f8 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-22@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7051f57be9ecbc3f9952c75b422a23d985dbcc1bd81f5dab0595df27c04145f9 +size 18745 diff --git a/Skins/心kokoro dt/hit50k-23.png b/Skins/心kokoro dt/hit50k-23.png new file mode 100644 index 00000000..2f7e47e6 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f335b3d76ae1bca75bdc0d0c436f9d1fccec8177be4a766ffaf39165d22628b3 +size 1982 diff --git a/Skins/心kokoro dt/hit50k-23@2x.png b/Skins/心kokoro dt/hit50k-23@2x.png new file mode 100644 index 00000000..8df75b14 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-23@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9bffa23669876dc9aece352f436f5767643224ecff3d4068095356cbac6c02 +size 18745 diff --git a/Skins/心kokoro dt/hit50k-24.png b/Skins/心kokoro dt/hit50k-24.png new file mode 100644 index 00000000..f550af76 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594db727387726173b57f1d00867112f4bdace1c1b5a8154ad00bfc713e6f097 +size 1982 diff --git a/Skins/心kokoro dt/hit50k-24@2x.png b/Skins/心kokoro dt/hit50k-24@2x.png new file mode 100644 index 00000000..34789689 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-24@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2efbf4310758218e30ef2c7bd286792a0fa757953e6a2bdb1c92ac3967121e74 +size 18745 diff --git a/Skins/心kokoro dt/hit50k-25.png b/Skins/心kokoro dt/hit50k-25.png new file mode 100644 index 00000000..f550af76 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594db727387726173b57f1d00867112f4bdace1c1b5a8154ad00bfc713e6f097 +size 1982 diff --git a/Skins/心kokoro dt/hit50k-25@2x.png b/Skins/心kokoro dt/hit50k-25@2x.png new file mode 100644 index 00000000..54f88860 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-25@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91491bd1dda57643c4ae5b78fcddadddcf7ec27134623e94a96c1f735ecf4ed +size 18745 diff --git a/Skins/心kokoro dt/hit50k-26.png b/Skins/心kokoro dt/hit50k-26.png new file mode 100644 index 00000000..f550af76 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594db727387726173b57f1d00867112f4bdace1c1b5a8154ad00bfc713e6f097 +size 1982 diff --git a/Skins/心kokoro dt/hit50k-26@2x.png b/Skins/心kokoro dt/hit50k-26@2x.png new file mode 100644 index 00000000..bead74ac --- /dev/null +++ b/Skins/心kokoro dt/hit50k-26@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:659d1cf051cc69c3798241e622eadfddbbd8f95f146b3281a041d25b766775da +size 18745 diff --git a/Skins/心kokoro dt/hit50k-27.png b/Skins/心kokoro dt/hit50k-27.png new file mode 100644 index 00000000..f550af76 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594db727387726173b57f1d00867112f4bdace1c1b5a8154ad00bfc713e6f097 +size 1982 diff --git a/Skins/心kokoro dt/hit50k-27@2x.png b/Skins/心kokoro dt/hit50k-27@2x.png new file mode 100644 index 00000000..c4d21136 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-27@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4133b9966499d81ae2a4ef79cca53df0839a04f6fdfa564bde68aff3ff114d46 +size 18745 diff --git a/Skins/心kokoro dt/hit50k-28.png b/Skins/心kokoro dt/hit50k-28.png new file mode 100644 index 00000000..d0c1c58c --- /dev/null +++ b/Skins/心kokoro dt/hit50k-28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09a9cffd211495ad28e9d894fe9f72e5ca42fad722eecf8eb0313bb04faa59a +size 1982 diff --git a/Skins/心kokoro dt/hit50k-28@2x.png b/Skins/心kokoro dt/hit50k-28@2x.png new file mode 100644 index 00000000..ba3f514d --- /dev/null +++ b/Skins/心kokoro dt/hit50k-28@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5cd025b5e47d11eae0c0052a6d88d453954f834bb3c1662c934baa442c7991a +size 18745 diff --git a/Skins/心kokoro dt/hit50k-29.png b/Skins/心kokoro dt/hit50k-29.png new file mode 100644 index 00000000..d0c1c58c --- /dev/null +++ b/Skins/心kokoro dt/hit50k-29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09a9cffd211495ad28e9d894fe9f72e5ca42fad722eecf8eb0313bb04faa59a +size 1982 diff --git a/Skins/心kokoro dt/hit50k-29@2x.png b/Skins/心kokoro dt/hit50k-29@2x.png new file mode 100644 index 00000000..bffb5b64 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-29@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876543e1eb1475f25552f03bf2a31e811b8ecb18ee9715a7a0b37b7a030a2e64 +size 18745 diff --git a/Skins/心kokoro dt/hit50k-2@2x.png b/Skins/心kokoro dt/hit50k-2@2x.png new file mode 100644 index 00000000..ba569ac4 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5dc46b403cda99bebac7314ad52772380a9771f5cd00a67b09766f1562d740e +size 17297 diff --git a/Skins/心kokoro dt/hit50k-3.png b/Skins/心kokoro dt/hit50k-3.png new file mode 100644 index 00000000..26c5ed22 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a228d803d91b958468baa11aaa7e9754d251b11364fda3482c9055972a45e4 +size 1573 diff --git a/Skins/心kokoro dt/hit50k-30.png b/Skins/心kokoro dt/hit50k-30.png new file mode 100644 index 00000000..d0c1c58c --- /dev/null +++ b/Skins/心kokoro dt/hit50k-30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09a9cffd211495ad28e9d894fe9f72e5ca42fad722eecf8eb0313bb04faa59a +size 1982 diff --git a/Skins/心kokoro dt/hit50k-30@2x.png b/Skins/心kokoro dt/hit50k-30@2x.png new file mode 100644 index 00000000..80d201d5 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-30@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a16a200719e8047abd181a7fb038524ad85af681edfde0bfdc6d5f60f8081a5 +size 18745 diff --git a/Skins/心kokoro dt/hit50k-31.png b/Skins/心kokoro dt/hit50k-31.png new file mode 100644 index 00000000..f1ee4241 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ccd216dce74943309db8ef7c3b3518c60a1fcb1b524c8fa1aeb3d9b914322b +size 1979 diff --git a/Skins/心kokoro dt/hit50k-31@2x.png b/Skins/心kokoro dt/hit50k-31@2x.png new file mode 100644 index 00000000..5854a56d --- /dev/null +++ b/Skins/心kokoro dt/hit50k-31@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65571ca1baadf69bbac3a1df13ab2f696931fb552841d03a463994c2d228701b +size 18875 diff --git a/Skins/心kokoro dt/hit50k-32.png b/Skins/心kokoro dt/hit50k-32.png new file mode 100644 index 00000000..dbf8ea86 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff0ed3e0b8b6b9ff1355ad220569e1832df58c47190e482c3c32e5655d09f871 +size 1942 diff --git a/Skins/心kokoro dt/hit50k-32@2x.png b/Skins/心kokoro dt/hit50k-32@2x.png new file mode 100644 index 00000000..e625efd2 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-32@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407cb06a307ecd308072e72c4c94d054732aab0834df0d6d62a06ba631da5c6b +size 18810 diff --git a/Skins/心kokoro dt/hit50k-33.png b/Skins/心kokoro dt/hit50k-33.png new file mode 100644 index 00000000..dbbc3f1e --- /dev/null +++ b/Skins/心kokoro dt/hit50k-33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0fe6168cd90a5aa3a2aae8ae07532ac3c2410487cff36f93eaf67fdb41594 +size 1852 diff --git a/Skins/心kokoro dt/hit50k-33@2x.png b/Skins/心kokoro dt/hit50k-33@2x.png new file mode 100644 index 00000000..cbaf6240 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-33@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a1185bc65a87d370b47c941f478108643fc4a85edc5e380155d38cdf45fbd1 +size 18672 diff --git a/Skins/心kokoro dt/hit50k-34.png b/Skins/心kokoro dt/hit50k-34.png new file mode 100644 index 00000000..5a7f0a1d --- /dev/null +++ b/Skins/心kokoro dt/hit50k-34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0316b861396578295fc8df4a1a144292eb7d8ecba84c44e51e841864d8180551 +size 1856 diff --git a/Skins/心kokoro dt/hit50k-34@2x.png b/Skins/心kokoro dt/hit50k-34@2x.png new file mode 100644 index 00000000..0ff97778 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-34@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c921133d81f258bff8058f95108ebb8cf83ecfb1ae32ba0d34102ca984e6b722 +size 18412 diff --git a/Skins/心kokoro dt/hit50k-35.png b/Skins/心kokoro dt/hit50k-35.png new file mode 100644 index 00000000..a327d1da --- /dev/null +++ b/Skins/心kokoro dt/hit50k-35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487dce626f3487e80612a5dfc8295b3a13cf1ca19becf54a4594b7bc72f6a083 +size 1693 diff --git a/Skins/心kokoro dt/hit50k-35@2x.png b/Skins/心kokoro dt/hit50k-35@2x.png new file mode 100644 index 00000000..142b0fd2 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-35@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e649453d8788f716c2d3fcb9b36df9354054a5d684c7200b7ffa5282fda4abf +size 18087 diff --git a/Skins/心kokoro dt/hit50k-36.png b/Skins/心kokoro dt/hit50k-36.png new file mode 100644 index 00000000..fde49b57 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eefe94ccc83f53d71c5af19fef06c80e224ba5de93f9e411973627889005b5b5 +size 1669 diff --git a/Skins/心kokoro dt/hit50k-36@2x.png b/Skins/心kokoro dt/hit50k-36@2x.png new file mode 100644 index 00000000..395052f6 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-36@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce69e3ef12c22f2ff6e13eecf97928e5722df8a03cc430b5b312936711fdf42 +size 17967 diff --git a/Skins/心kokoro dt/hit50k-37.png b/Skins/心kokoro dt/hit50k-37.png new file mode 100644 index 00000000..e62e63e6 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9228f03d4761a543182bbf4c36f4a96905bad6458c3b74b762e06531bd96c08b +size 1603 diff --git a/Skins/心kokoro dt/hit50k-37@2x.png b/Skins/心kokoro dt/hit50k-37@2x.png new file mode 100644 index 00000000..a36feeca --- /dev/null +++ b/Skins/心kokoro dt/hit50k-37@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7f6476a17809d52f0d4edcf1acc0ff04e6762dd2c790b92782bd3b66b30e4e +size 17655 diff --git a/Skins/心kokoro dt/hit50k-38.png b/Skins/心kokoro dt/hit50k-38.png new file mode 100644 index 00000000..4926d9b9 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0899851e339dbe8f3bd50121af66b6597833fef26224d3b80d711ec3744ad986 +size 1493 diff --git a/Skins/心kokoro dt/hit50k-38@2x.png b/Skins/心kokoro dt/hit50k-38@2x.png new file mode 100644 index 00000000..8341ca5a --- /dev/null +++ b/Skins/心kokoro dt/hit50k-38@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119a227c2d84f0d82711dd5d02a671741ad396b67ff1f605e0feddaa1ffd986b +size 17266 diff --git a/Skins/心kokoro dt/hit50k-39.png b/Skins/心kokoro dt/hit50k-39.png new file mode 100644 index 00000000..f6be995e --- /dev/null +++ b/Skins/心kokoro dt/hit50k-39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b6b4dac58f7c73b9a983c2828223894f6c7a14a92a7aa6d4a5126633f0e05b +size 1260 diff --git a/Skins/心kokoro dt/hit50k-39@2x.png b/Skins/心kokoro dt/hit50k-39@2x.png new file mode 100644 index 00000000..d7adb6fd --- /dev/null +++ b/Skins/心kokoro dt/hit50k-39@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a3357dc01c01766bca352a5d3d2068d61ed7226db45469e78c653c86c41b21 +size 16740 diff --git a/Skins/心kokoro dt/hit50k-3@2x.png b/Skins/心kokoro dt/hit50k-3@2x.png new file mode 100644 index 00000000..ff69b68a --- /dev/null +++ b/Skins/心kokoro dt/hit50k-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3897186dce4ad78ea5f35a7b988195ec920ba211b2b8569e594b0a5b5bb8ee6b +size 17474 diff --git a/Skins/心kokoro dt/hit50k-4.png b/Skins/心kokoro dt/hit50k-4.png new file mode 100644 index 00000000..9a0607ed --- /dev/null +++ b/Skins/心kokoro dt/hit50k-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99dada865d836466c29519a445c286ee61594a2b25c529479b8a2fab4775d342 +size 1631 diff --git a/Skins/心kokoro dt/hit50k-40.png b/Skins/心kokoro dt/hit50k-40.png new file mode 100644 index 00000000..afc73f15 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56dce3b1a5156b30971e9c129f67c79395a3e35b62a209e96abde7ecb243d83 +size 303 diff --git a/Skins/心kokoro dt/hit50k-40@2x.png b/Skins/心kokoro dt/hit50k-40@2x.png new file mode 100644 index 00000000..81858da1 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-40@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f8e1037a98aeb8baad237f3f918fd5fad644ccdee60c6da1f7d8fd0b15240f +size 15279 diff --git a/Skins/心kokoro dt/hit50k-41.png b/Skins/心kokoro dt/hit50k-41.png new file mode 100644 index 00000000..afc73f15 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56dce3b1a5156b30971e9c129f67c79395a3e35b62a209e96abde7ecb243d83 +size 303 diff --git a/Skins/心kokoro dt/hit50k-41@2x.png b/Skins/心kokoro dt/hit50k-41@2x.png new file mode 100644 index 00000000..22da3f31 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-41@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4fd1764c42abf9e0cbca98dd2e651e8d74905b11fb883c423adbe8151b9e07 +size 15279 diff --git a/Skins/心kokoro dt/hit50k-42.png b/Skins/心kokoro dt/hit50k-42.png new file mode 100644 index 00000000..8f1ebb01 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b44e73f0ace05f0e6d28ad3aa1527cb7322902df646f44085a9d3a3ad8e3e5 +size 303 diff --git a/Skins/心kokoro dt/hit50k-42@2x.png b/Skins/心kokoro dt/hit50k-42@2x.png new file mode 100644 index 00000000..b8986525 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-42@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfadb8279454439fe8ca89b244b0907276655c05615e8cef0d265c2d8861d300 +size 15279 diff --git a/Skins/心kokoro dt/hit50k-43.png b/Skins/心kokoro dt/hit50k-43.png new file mode 100644 index 00000000..8f1ebb01 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b44e73f0ace05f0e6d28ad3aa1527cb7322902df646f44085a9d3a3ad8e3e5 +size 303 diff --git a/Skins/心kokoro dt/hit50k-43@2x.png b/Skins/心kokoro dt/hit50k-43@2x.png new file mode 100644 index 00000000..d5aa334a --- /dev/null +++ b/Skins/心kokoro dt/hit50k-43@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d49c06d31bd4438cd830aded37a21d865e6d678427b3719115d86ad335b9938 +size 15279 diff --git a/Skins/心kokoro dt/hit50k-44.png b/Skins/心kokoro dt/hit50k-44.png new file mode 100644 index 00000000..8f1ebb01 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b44e73f0ace05f0e6d28ad3aa1527cb7322902df646f44085a9d3a3ad8e3e5 +size 303 diff --git a/Skins/心kokoro dt/hit50k-44@2x.png b/Skins/心kokoro dt/hit50k-44@2x.png new file mode 100644 index 00000000..0a661313 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-44@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b4a892b0c677a384d2933067e3c1a5b8ecad9b26cb5acf733768a7aff2fff8 +size 15279 diff --git a/Skins/心kokoro dt/hit50k-45.png b/Skins/心kokoro dt/hit50k-45.png new file mode 100644 index 00000000..8f1ebb01 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b44e73f0ace05f0e6d28ad3aa1527cb7322902df646f44085a9d3a3ad8e3e5 +size 303 diff --git a/Skins/心kokoro dt/hit50k-45@2x.png b/Skins/心kokoro dt/hit50k-45@2x.png new file mode 100644 index 00000000..4662d5c9 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-45@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e7737e7f3187cf8519bfa25c8de9773e079480e3ee5ea21f450ff528ab5ea6 +size 15279 diff --git a/Skins/心kokoro dt/hit50k-46.png b/Skins/心kokoro dt/hit50k-46.png new file mode 100644 index 00000000..8f1ebb01 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b44e73f0ace05f0e6d28ad3aa1527cb7322902df646f44085a9d3a3ad8e3e5 +size 303 diff --git a/Skins/心kokoro dt/hit50k-46@2x.png b/Skins/心kokoro dt/hit50k-46@2x.png new file mode 100644 index 00000000..d7ef3b8b --- /dev/null +++ b/Skins/心kokoro dt/hit50k-46@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4fd7f66174a109828d31f47a0b5a74ae75d9d141fb511a1757eb88a1ce80242 +size 15279 diff --git a/Skins/心kokoro dt/hit50k-47.png b/Skins/心kokoro dt/hit50k-47.png new file mode 100644 index 00000000..8f1ebb01 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b44e73f0ace05f0e6d28ad3aa1527cb7322902df646f44085a9d3a3ad8e3e5 +size 303 diff --git a/Skins/心kokoro dt/hit50k-47@2x.png b/Skins/心kokoro dt/hit50k-47@2x.png new file mode 100644 index 00000000..83e5a028 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-47@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556977f9fd8112543142ace60eba8498b4d759da605f4932944560b266e3df01 +size 15279 diff --git a/Skins/心kokoro dt/hit50k-48.png b/Skins/心kokoro dt/hit50k-48.png new file mode 100644 index 00000000..13816a68 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a91cfb578c63a4adb1176323e2ea9dff52542f7db6a6a61c042facb41c19b09c +size 303 diff --git a/Skins/心kokoro dt/hit50k-48@2x.png b/Skins/心kokoro dt/hit50k-48@2x.png new file mode 100644 index 00000000..9e91da9a --- /dev/null +++ b/Skins/心kokoro dt/hit50k-48@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c83c9cb9c430368d366e9378e211eec1e9f78b9bf060d89a4ec1f928afeed6 +size 15279 diff --git a/Skins/心kokoro dt/hit50k-49.png b/Skins/心kokoro dt/hit50k-49.png new file mode 100644 index 00000000..13816a68 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a91cfb578c63a4adb1176323e2ea9dff52542f7db6a6a61c042facb41c19b09c +size 303 diff --git a/Skins/心kokoro dt/hit50k-49@2x.png b/Skins/心kokoro dt/hit50k-49@2x.png new file mode 100644 index 00000000..cc4566f8 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-49@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a0bbd0ed967b1b3ae6f87270db8ac4407c2d34df4bad242310a8ee5d80f5d1 +size 15279 diff --git a/Skins/心kokoro dt/hit50k-4@2x.png b/Skins/心kokoro dt/hit50k-4@2x.png new file mode 100644 index 00000000..a9b42e89 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6023ce4dfde9e6607d3d3e15b58c8cd0d5743842a8e89de4c55ac7155de75e8a +size 17665 diff --git a/Skins/心kokoro dt/hit50k-5.png b/Skins/心kokoro dt/hit50k-5.png new file mode 100644 index 00000000..2061c0f8 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3029bc465dbf0becf129f53cb6fbb052cce65b76debc6746e0291ce78ea932aa +size 1638 diff --git a/Skins/心kokoro dt/hit50k-5@2x.png b/Skins/心kokoro dt/hit50k-5@2x.png new file mode 100644 index 00000000..68f96d34 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e808a17b73814abc1d3a8915ec384db26b6853bf2267979e8a8b1691b052882 +size 17691 diff --git a/Skins/心kokoro dt/hit50k-6.png b/Skins/心kokoro dt/hit50k-6.png new file mode 100644 index 00000000..f235ee2f --- /dev/null +++ b/Skins/心kokoro dt/hit50k-6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f9a6a75a10a6b5fac296e99ade4ffcc60f60951efd2824d5ecfcacd40c1b20 +size 1684 diff --git a/Skins/心kokoro dt/hit50k-6@2x.png b/Skins/心kokoro dt/hit50k-6@2x.png new file mode 100644 index 00000000..80935c9c --- /dev/null +++ b/Skins/心kokoro dt/hit50k-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67de44c9033a703ffc525191ed59ee55ccd050cb7bee767f751fc43935ed187e +size 17904 diff --git a/Skins/心kokoro dt/hit50k-7.png b/Skins/心kokoro dt/hit50k-7.png new file mode 100644 index 00000000..88ff688b --- /dev/null +++ b/Skins/心kokoro dt/hit50k-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50b997e91ab40d4b4e726b9343a5606c87385a665eb1207ec432a717be32a5f +size 1703 diff --git a/Skins/心kokoro dt/hit50k-7@2x.png b/Skins/心kokoro dt/hit50k-7@2x.png new file mode 100644 index 00000000..b02c8e8b --- /dev/null +++ b/Skins/心kokoro dt/hit50k-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9969285fb47c01fcf3f9576e5285f113f6943f67ee7ea8078e83e49cf960de0 +size 17907 diff --git a/Skins/心kokoro dt/hit50k-8.png b/Skins/心kokoro dt/hit50k-8.png new file mode 100644 index 00000000..c0ab33b4 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5082bcc91d0df3cdb8a7f24a580aa95a8ecd2edc90a2987ffe965d96d329accb +size 1703 diff --git a/Skins/心kokoro dt/hit50k-8@2x.png b/Skins/心kokoro dt/hit50k-8@2x.png new file mode 100644 index 00000000..89a6417a --- /dev/null +++ b/Skins/心kokoro dt/hit50k-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279c943b1216d7ac45cd761de19b729457091f9e4903b14679b79bed17723fc7 +size 18006 diff --git a/Skins/心kokoro dt/hit50k-9.png b/Skins/心kokoro dt/hit50k-9.png new file mode 100644 index 00000000..4a9dabc7 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58da020ec393a745abd4af20a4ac5e646ba576727e0a4d2f07fcc8b4d41d68dd +size 1725 diff --git a/Skins/心kokoro dt/hit50k-9@2x.png b/Skins/心kokoro dt/hit50k-9@2x.png new file mode 100644 index 00000000..1ee00f94 --- /dev/null +++ b/Skins/心kokoro dt/hit50k-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5c4475bca403e6eac368de63119f5c4361bbf9c0004248f54c572ed243168a +size 17996 diff --git a/Skins/心kokoro dt/hit50k.png b/Skins/心kokoro dt/hit50k.png new file mode 100644 index 00000000..b4703b1e --- /dev/null +++ b/Skins/心kokoro dt/hit50k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d92a6d1de326b00442bbd305d27df3458eb102baa43f9729e37bdea67e8007e +size 3172 diff --git a/Skins/心kokoro dt/hit50k@2x.png b/Skins/心kokoro dt/hit50k@2x.png new file mode 100644 index 00000000..1f0627ee --- /dev/null +++ b/Skins/心kokoro dt/hit50k@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eccef4aa88dbc496acecdb5391b5b66571ec87ba8602fc8e57c054fca79dce1c +size 8159 diff --git a/Skins/心kokoro dt/hitcircle.png b/Skins/心kokoro dt/hitcircle.png new file mode 100644 index 00000000..272485f9 --- /dev/null +++ b/Skins/心kokoro dt/hitcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bae090e156861b24f43465db7b6ef8d36053f9c827635426b75c6b0ee70857 +size 8105 diff --git a/Skins/心kokoro dt/hitcircleoverlay.png b/Skins/心kokoro dt/hitcircleoverlay.png new file mode 100644 index 00000000..e84ae01b --- /dev/null +++ b/Skins/心kokoro dt/hitcircleoverlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2242085fcfd0a3680fe53191a999547fe99a3703fbbae2925c799df6ef287b +size 8362 diff --git a/Skins/心kokoro dt/hitcircleselect.png b/Skins/心kokoro dt/hitcircleselect.png new file mode 100644 index 00000000..f5d0b560 --- /dev/null +++ b/Skins/心kokoro dt/hitcircleselect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f653a90e550d355c0240ba3c50bb49ff4b019cc7590059baab66fae833a2b654 +size 9781 diff --git a/Skins/心kokoro dt/hitcircleselect@2x.png b/Skins/心kokoro dt/hitcircleselect@2x.png new file mode 100644 index 00000000..82aff985 --- /dev/null +++ b/Skins/心kokoro dt/hitcircleselect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4075010d56fe574ba8e3893fae511901987d24b018a0131887c646e2d5e17c9 +size 28545 diff --git a/Skins/心kokoro dt/inputoverlay-background@2x.png b/Skins/心kokoro dt/inputoverlay-background@2x.png new file mode 100644 index 00000000..b5dc6cad --- /dev/null +++ b/Skins/心kokoro dt/inputoverlay-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37b79b602ec1d6556306f8f71cd59019ba288d8afaeef3a8e9119eca44b1162 +size 18603 diff --git a/Skins/心kokoro dt/inputoverlay-key.png b/Skins/心kokoro dt/inputoverlay-key.png new file mode 100644 index 00000000..0a32e870 --- /dev/null +++ b/Skins/心kokoro dt/inputoverlay-key.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d04aff86530c0f93b9a8b8b163d7f70463eae89d9a569b9acc556baeae95ac +size 269 diff --git a/Skins/心kokoro dt/inputoverlay-key@2x.png b/Skins/心kokoro dt/inputoverlay-key@2x.png new file mode 100644 index 00000000..69fa7896 --- /dev/null +++ b/Skins/心kokoro dt/inputoverlay-key@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0a9a67289e3c1661f1c6cbf342b06dc9bd915d6650ffe4d41e941cea0819a2f +size 559 diff --git a/Skins/心kokoro dt/key-delete.wav b/Skins/心kokoro dt/key-delete.wav new file mode 100644 index 00000000..7bcd4593 --- /dev/null +++ b/Skins/心kokoro dt/key-delete.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa5ad0cf6f180fa6ffbd797756743317c5269a0ba1e9315ccfab44ac19ddf64 +size 32160 diff --git a/Skins/心kokoro dt/key-press-1.wav b/Skins/心kokoro dt/key-press-1.wav new file mode 100644 index 00000000..7e8aa9a4 --- /dev/null +++ b/Skins/心kokoro dt/key-press-1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5c1b183422a44eb10fadfe9071f4e6b7260bcca6d68001756bd9c7ad193838 +size 81564 diff --git a/Skins/心kokoro dt/key-press-2.wav b/Skins/心kokoro dt/key-press-2.wav new file mode 100644 index 00000000..7e8aa9a4 --- /dev/null +++ b/Skins/心kokoro dt/key-press-2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5c1b183422a44eb10fadfe9071f4e6b7260bcca6d68001756bd9c7ad193838 +size 81564 diff --git a/Skins/心kokoro dt/key-press-3.wav b/Skins/心kokoro dt/key-press-3.wav new file mode 100644 index 00000000..7e8aa9a4 --- /dev/null +++ b/Skins/心kokoro dt/key-press-3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5c1b183422a44eb10fadfe9071f4e6b7260bcca6d68001756bd9c7ad193838 +size 81564 diff --git a/Skins/心kokoro dt/key-press-4.wav b/Skins/心kokoro dt/key-press-4.wav new file mode 100644 index 00000000..7e8aa9a4 --- /dev/null +++ b/Skins/心kokoro dt/key-press-4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5c1b183422a44eb10fadfe9071f4e6b7260bcca6d68001756bd9c7ad193838 +size 81564 diff --git a/Skins/心kokoro dt/match-confirm.wav b/Skins/心kokoro dt/match-confirm.wav new file mode 100644 index 00000000..71822eb6 --- /dev/null +++ b/Skins/心kokoro dt/match-confirm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f591b088715c93908bcc77f6eadf1c41f1b7ef8e752bcf5c33b4fa689e38814c +size 153194 diff --git a/Skins/心kokoro dt/match-start.wav b/Skins/心kokoro dt/match-start.wav new file mode 100644 index 00000000..ef7b79ab --- /dev/null +++ b/Skins/心kokoro dt/match-start.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94d74c57c9ae3ffbf60fc085211257cfef50670d8dca2ad6e72a071b82df98b +size 133202 diff --git a/Skins/心kokoro dt/menu-back-click.wav b/Skins/心kokoro dt/menu-back-click.wav new file mode 100644 index 00000000..490f0e0a --- /dev/null +++ b/Skins/心kokoro dt/menu-back-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d5f6c2d057944f94de50a8da00f73f1462046cc9c4fc7ee52933b6d1d9d69b +size 37252 diff --git a/Skins/心kokoro dt/menu-back@2x.png b/Skins/心kokoro dt/menu-back@2x.png new file mode 100644 index 00000000..d8b2c881 --- /dev/null +++ b/Skins/心kokoro dt/menu-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad1928b43729c5a7100f6a98eabf85501722b448aba611b7f18c2f169d7e2d8 +size 88663 diff --git a/Skins/心kokoro dt/menu-background.jpg b/Skins/心kokoro dt/menu-background.jpg new file mode 100644 index 00000000..05814894 --- /dev/null +++ b/Skins/心kokoro dt/menu-background.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f74f80105050f10527a05cbec9993d98b221ed494c99f8e34a8feae05697f6 +size 786500 diff --git a/Skins/心kokoro dt/menu-button-background.png b/Skins/心kokoro dt/menu-button-background.png new file mode 100644 index 00000000..34bb5aca --- /dev/null +++ b/Skins/心kokoro dt/menu-button-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec4d88c69078d89756a0f616fde4801ad8e57d7e26a7bc46f43e179dba7a9cc +size 3940 diff --git a/Skins/心kokoro dt/menu-button-background@2x.png b/Skins/心kokoro dt/menu-button-background@2x.png new file mode 100644 index 00000000..014bbb62 --- /dev/null +++ b/Skins/心kokoro dt/menu-button-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80757d061fa04b52a7e0cf5ab4509ec773effe744bc4fbdcc07cc3f985d848dd +size 4429 diff --git a/Skins/心kokoro dt/menu-edit-click.wav b/Skins/心kokoro dt/menu-edit-click.wav new file mode 100644 index 00000000..490f0e0a --- /dev/null +++ b/Skins/心kokoro dt/menu-edit-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d5f6c2d057944f94de50a8da00f73f1462046cc9c4fc7ee52933b6d1d9d69b +size 37252 diff --git a/Skins/心kokoro dt/menu-exit-click.wav b/Skins/心kokoro dt/menu-exit-click.wav new file mode 100644 index 00000000..490f0e0a --- /dev/null +++ b/Skins/心kokoro dt/menu-exit-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d5f6c2d057944f94de50a8da00f73f1462046cc9c4fc7ee52933b6d1d9d69b +size 37252 diff --git a/Skins/心kokoro dt/menu-freeplay-click.wav b/Skins/心kokoro dt/menu-freeplay-click.wav new file mode 100644 index 00000000..490f0e0a --- /dev/null +++ b/Skins/心kokoro dt/menu-freeplay-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d5f6c2d057944f94de50a8da00f73f1462046cc9c4fc7ee52933b6d1d9d69b +size 37252 diff --git a/Skins/心kokoro dt/menu-multiplayer-click.wav b/Skins/心kokoro dt/menu-multiplayer-click.wav new file mode 100644 index 00000000..490f0e0a --- /dev/null +++ b/Skins/心kokoro dt/menu-multiplayer-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d5f6c2d057944f94de50a8da00f73f1462046cc9c4fc7ee52933b6d1d9d69b +size 37252 diff --git a/Skins/心kokoro dt/menu-options-click.wav b/Skins/心kokoro dt/menu-options-click.wav new file mode 100644 index 00000000..490f0e0a --- /dev/null +++ b/Skins/心kokoro dt/menu-options-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d5f6c2d057944f94de50a8da00f73f1462046cc9c4fc7ee52933b6d1d9d69b +size 37252 diff --git a/Skins/心kokoro dt/menu-play-click.wav b/Skins/心kokoro dt/menu-play-click.wav new file mode 100644 index 00000000..490f0e0a --- /dev/null +++ b/Skins/心kokoro dt/menu-play-click.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d5f6c2d057944f94de50a8da00f73f1462046cc9c4fc7ee52933b6d1d9d69b +size 37252 diff --git a/Skins/心kokoro dt/menu-snow.png b/Skins/心kokoro dt/menu-snow.png new file mode 100644 index 00000000..40928476 --- /dev/null +++ b/Skins/心kokoro dt/menu-snow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40249e7ddec248ed55eb201c49dfd8832d46859ff6b0697ed56e46792e954b7e +size 2827 diff --git a/Skins/心kokoro dt/menu-snow@2x.png b/Skins/心kokoro dt/menu-snow@2x.png new file mode 100644 index 00000000..7486006b --- /dev/null +++ b/Skins/心kokoro dt/menu-snow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4f68274d893821a0de6a604c4759eca03270efcb9cbdfa244d0dae4cec023 +size 8157 diff --git a/Skins/心kokoro dt/menuback.wav b/Skins/心kokoro dt/menuback.wav new file mode 100644 index 00000000..19755ca9 --- /dev/null +++ b/Skins/心kokoro dt/menuback.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0f43bbf69409585810cae31d4bb8cc14cc24d9d761e5495887a7aa80bec977 +size 435210 diff --git a/Skins/心kokoro dt/menuclick.wav b/Skins/心kokoro dt/menuclick.wav new file mode 100644 index 00000000..5b109b76 --- /dev/null +++ b/Skins/心kokoro dt/menuclick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a4a30c1f024bc9873ac6109cd193d2058d7f6d490624ee1fb055641bb2fcb8 +size 102212 diff --git a/Skins/心kokoro dt/menuhit.wav b/Skins/心kokoro dt/menuhit.wav new file mode 100644 index 00000000..490f0e0a --- /dev/null +++ b/Skins/心kokoro dt/menuhit.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d5f6c2d057944f94de50a8da00f73f1462046cc9c4fc7ee52933b6d1d9d69b +size 37252 diff --git a/Skins/心kokoro dt/mode-osu-small@2x.png b/Skins/心kokoro dt/mode-osu-small@2x.png new file mode 100644 index 00000000..a2c07f3f --- /dev/null +++ b/Skins/心kokoro dt/mode-osu-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426d682ec7d58746ebfe747e3061a3ca8c378bf00e2d69b3cc8cc648f928f067 +size 91926 diff --git a/Skins/心kokoro dt/nightcore-clap.ogg b/Skins/心kokoro dt/nightcore-clap.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/心kokoro dt/nightcore-finish.ogg b/Skins/心kokoro dt/nightcore-finish.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/心kokoro dt/nightcore-hat.ogg b/Skins/心kokoro dt/nightcore-hat.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/心kokoro dt/nightcore-kick.ogg b/Skins/心kokoro dt/nightcore-kick.ogg new file mode 100644 index 00000000..e69de29b diff --git a/Skins/心kokoro dt/normal-hitclap.ogg b/Skins/心kokoro dt/normal-hitclap.ogg new file mode 100644 index 00000000..1db6d32e --- /dev/null +++ b/Skins/心kokoro dt/normal-hitclap.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e53d6ed7f249ed0fbc166cebf1c6f1f9e00d223789ca36507ad389fbfc98bc2 +size 4909 diff --git a/Skins/心kokoro dt/normal-hitfinish.ogg b/Skins/心kokoro dt/normal-hitfinish.ogg new file mode 100644 index 00000000..24a82e72 --- /dev/null +++ b/Skins/心kokoro dt/normal-hitfinish.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2031d9c432cde6849b7f0409fc4e250c842988fb451ee33eff4c3efd1f0f58e +size 6846 diff --git a/Skins/心kokoro dt/normal-hitnormal.ogg b/Skins/心kokoro dt/normal-hitnormal.ogg new file mode 100644 index 00000000..40abd40d --- /dev/null +++ b/Skins/心kokoro dt/normal-hitnormal.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fe2c383af151811de148862d07d461557dd1886da68eeba2c018dc89a00b4d0 +size 7527 diff --git a/Skins/心kokoro dt/normal-hitwhistle.ogg b/Skins/心kokoro dt/normal-hitwhistle.ogg new file mode 100644 index 00000000..e0662557 --- /dev/null +++ b/Skins/心kokoro dt/normal-hitwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dcd82a4f70c014174aa5a726b1dfc600ca740666ccd5dc0a02db55ebd261bb3 +size 6500 diff --git a/Skins/心kokoro dt/normal-sliderslide.ogg b/Skins/心kokoro dt/normal-sliderslide.ogg new file mode 100644 index 00000000..fccb3b99 --- /dev/null +++ b/Skins/心kokoro dt/normal-sliderslide.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c595a0dc34548c5e8707e39675f1def9151aec7199b90e35359a7c6797879bc +size 4426 diff --git a/Skins/心kokoro dt/normal-slidertick.ogg b/Skins/心kokoro dt/normal-slidertick.ogg new file mode 100644 index 00000000..7a3a8e5c --- /dev/null +++ b/Skins/心kokoro dt/normal-slidertick.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895381818dc6de12ab975194d0a2da9a8bcc078c57dc05736cbc8b0c763941f7 +size 14192 diff --git a/Skins/心kokoro dt/normal-sliderwhistle.ogg b/Skins/心kokoro dt/normal-sliderwhistle.ogg new file mode 100644 index 00000000..455eca67 --- /dev/null +++ b/Skins/心kokoro dt/normal-sliderwhistle.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fdde0ec97efe978fec4879b88d95fb2f2a1291c2eee5d5aa1bb6f3d7811ec60 +size 4426 diff --git a/Skins/心kokoro dt/pause-back@2x.png b/Skins/心kokoro dt/pause-back@2x.png new file mode 100644 index 00000000..a1a24842 --- /dev/null +++ b/Skins/心kokoro dt/pause-back@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bd21e4ee7ccf97163b844998002c424d9d9531bfe4d2de1fbc13c49a7732576 +size 9280 diff --git a/Skins/心kokoro dt/pause-back@2x1.png b/Skins/心kokoro dt/pause-back@2x1.png new file mode 100644 index 00000000..b4cd9d90 --- /dev/null +++ b/Skins/心kokoro dt/pause-back@2x1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b0e1cd262bc6e2b63048200f51627afcd58d1976c75cf9705a8f40602c6e2b +size 22491 diff --git a/Skins/心kokoro dt/pause-continue-click.ogg b/Skins/心kokoro dt/pause-continue-click.ogg new file mode 100644 index 00000000..5bae8e93 --- /dev/null +++ b/Skins/心kokoro dt/pause-continue-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32bad3589e433b1e4cac7473e97f777226f669a00884d22746af015f91edf5dc +size 12699 diff --git a/Skins/心kokoro dt/pause-continue@2x.png b/Skins/心kokoro dt/pause-continue@2x.png new file mode 100644 index 00000000..c57690e1 --- /dev/null +++ b/Skins/心kokoro dt/pause-continue@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bc451eed9a3b023ba7fcede7db9b84d287de047fad11efc5a29b70540b7c21 +size 8832 diff --git a/Skins/心kokoro dt/pause-continue@2x1.png b/Skins/心kokoro dt/pause-continue@2x1.png new file mode 100644 index 00000000..1ac5584f --- /dev/null +++ b/Skins/心kokoro dt/pause-continue@2x1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3fb7fb67c38f91268caaaa730b7fe586559cab5e667b7aed841d844978b5b97 +size 30072 diff --git a/Skins/心kokoro dt/pause-hover.ogg b/Skins/心kokoro dt/pause-hover.ogg new file mode 100644 index 00000000..820e4815 --- /dev/null +++ b/Skins/心kokoro dt/pause-hover.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049d9e27638a555fab62d7bbd1514e14ac092bd977de0cc2f17ce1e701ad8648 +size 5380 diff --git a/Skins/心kokoro dt/pause-loop.ogg b/Skins/心kokoro dt/pause-loop.ogg new file mode 100644 index 00000000..e1b5ee68 --- /dev/null +++ b/Skins/心kokoro dt/pause-loop.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6437cceedd7ae869374d46a3257d3f9c6e507eed36d2985ab782c526b1e4ed3f +size 342661 diff --git a/Skins/心kokoro dt/pause-overlay.png b/Skins/心kokoro dt/pause-overlay.png new file mode 100644 index 00000000..376a8a5d --- /dev/null +++ b/Skins/心kokoro dt/pause-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77843abc70c344b89bd7b829aeb2f16a1724dfbce78d528328575a20304b93bf +size 386154 diff --git a/Skins/心kokoro dt/pause-overlay@2x.png b/Skins/心kokoro dt/pause-overlay@2x.png new file mode 100644 index 00000000..ceaaf92b --- /dev/null +++ b/Skins/心kokoro dt/pause-overlay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175e2211363cb65cd87e6b54db1dca88f5f8dfaa8dba809c344c8fc98717e1b8 +size 1104429 diff --git a/Skins/心kokoro dt/pause-replay@2x.png b/Skins/心kokoro dt/pause-replay@2x.png new file mode 100644 index 00000000..dec73631 --- /dev/null +++ b/Skins/心kokoro dt/pause-replay@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a4d2fa6c883e741f7642b6197cdf8acced29465aa1affe6412bc02391a0316 +size 13014 diff --git a/Skins/心kokoro dt/pause-replay@2x1.png b/Skins/心kokoro dt/pause-replay@2x1.png new file mode 100644 index 00000000..6e645873 --- /dev/null +++ b/Skins/心kokoro dt/pause-replay@2x1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965018399f6b77b5aca240318ffae8987227146e8a59b015d920f23d7078bce2 +size 26507 diff --git a/Skins/心kokoro dt/pause-retry-click.ogg b/Skins/心kokoro dt/pause-retry-click.ogg new file mode 100644 index 00000000..59110736 --- /dev/null +++ b/Skins/心kokoro dt/pause-retry-click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07db833f68a71d007d1212a0f1888bfeb6765ff874e6d539d30f096f30f55007 +size 6609 diff --git a/Skins/心kokoro dt/pause-retry@2x.png b/Skins/心kokoro dt/pause-retry@2x.png new file mode 100644 index 00000000..3b6a9688 --- /dev/null +++ b/Skins/心kokoro dt/pause-retry@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eaf1d538164b2dfd09845049a76470b06c17148fc9f47d3d25a04f4655118ea +size 12340 diff --git a/Skins/心kokoro dt/pause-retry@2x1.png b/Skins/心kokoro dt/pause-retry@2x1.png new file mode 100644 index 00000000..3d44a566 --- /dev/null +++ b/Skins/心kokoro dt/pause-retry@2x1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e244fce922cb9092b2ec0858d3ec490e1fc94a7655fd988c8273d787b4fb61 +size 20955 diff --git a/Skins/心kokoro dt/play-skip@2x.png b/Skins/心kokoro dt/play-skip@2x.png new file mode 100644 index 00000000..99a39247 --- /dev/null +++ b/Skins/心kokoro dt/play-skip@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe17c2c3fcd9509026de58d2cbfb19b37a6e3cc3a52004862363280b8266250 +size 24409 diff --git a/Skins/心kokoro dt/play-unranked.png b/Skins/心kokoro dt/play-unranked.png new file mode 100644 index 00000000..60b2ceb0 --- /dev/null +++ b/Skins/心kokoro dt/play-unranked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c1f8ca878bd0e1f6cd97b764a73f85962e58739080ed4cc66cbea135d5b5c94 +size 9534 diff --git a/Skins/心kokoro dt/play-unranked@2x.png b/Skins/心kokoro dt/play-unranked@2x.png new file mode 100644 index 00000000..467eb22f --- /dev/null +++ b/Skins/心kokoro dt/play-unranked@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b6b6b29b3d8258b9d8a8ee7d254a7002bb895aede2a3a7a3e178944cc7e793 +size 9859 diff --git a/Skins/心kokoro dt/ranking-A-small@2x.png b/Skins/心kokoro dt/ranking-A-small@2x.png new file mode 100644 index 00000000..c4776912 --- /dev/null +++ b/Skins/心kokoro dt/ranking-A-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbfc4c10b2c643b1361dee0ab1bd89b444374f8055adab598bc6c70a6189eb46 +size 891 diff --git a/Skins/心kokoro dt/ranking-A@2x.png b/Skins/心kokoro dt/ranking-A@2x.png new file mode 100644 index 00000000..6cea6d37 --- /dev/null +++ b/Skins/心kokoro dt/ranking-A@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e81b17ae323ee9b912e9b46f08b5038ed56276c97e4aeb63b46dd78e6c3da3e +size 216926 diff --git a/Skins/心kokoro dt/ranking-B-small@2x.png b/Skins/心kokoro dt/ranking-B-small@2x.png new file mode 100644 index 00000000..ad153868 --- /dev/null +++ b/Skins/心kokoro dt/ranking-B-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5f864189a1a599aeba09df9753b40e9eb062cccff1969f427562f0e99ab007 +size 888 diff --git a/Skins/心kokoro dt/ranking-B@2x.png b/Skins/心kokoro dt/ranking-B@2x.png new file mode 100644 index 00000000..ab7221c6 --- /dev/null +++ b/Skins/心kokoro dt/ranking-B@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a66e312ebaa3413913b091b6459ec5ee229199927af7b50c6c373c98f45087 +size 209415 diff --git a/Skins/心kokoro dt/ranking-C-small@2x.png b/Skins/心kokoro dt/ranking-C-small@2x.png new file mode 100644 index 00000000..b94b5846 --- /dev/null +++ b/Skins/心kokoro dt/ranking-C-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d81867339cbc8a921bd7cdd55aef2360564e48d34bd3f450cd5ec57be81b3f3 +size 1048 diff --git a/Skins/心kokoro dt/ranking-C@2x.png b/Skins/心kokoro dt/ranking-C@2x.png new file mode 100644 index 00000000..8c8f6030 --- /dev/null +++ b/Skins/心kokoro dt/ranking-C@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1a53dd0abf420e85bbd2b956b6cde5243b82ff21eb1d302c04222cf515c2ae +size 217495 diff --git a/Skins/心kokoro dt/ranking-D-small@2x.png b/Skins/心kokoro dt/ranking-D-small@2x.png new file mode 100644 index 00000000..d527e568 --- /dev/null +++ b/Skins/心kokoro dt/ranking-D-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dee1e22b96c0b5118e60157b77ccf63a15da657cae5455fefdaaa2241c85708 +size 827 diff --git a/Skins/心kokoro dt/ranking-D@2x.png b/Skins/心kokoro dt/ranking-D@2x.png new file mode 100644 index 00000000..575276e8 --- /dev/null +++ b/Skins/心kokoro dt/ranking-D@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9623fc3da10680a0e9fc87690eebf15d2bcfa88789c9cfa23478b256210c804 +size 210202 diff --git a/Skins/心kokoro dt/ranking-S-small@2x.png b/Skins/心kokoro dt/ranking-S-small@2x.png new file mode 100644 index 00000000..f7ef66a2 --- /dev/null +++ b/Skins/心kokoro dt/ranking-S-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35e7f03d80db94b1f841464ed77ead12c678c6c2823d3c4417c554087b5be53d +size 1120 diff --git a/Skins/心kokoro dt/ranking-S@2x.png b/Skins/心kokoro dt/ranking-S@2x.png new file mode 100644 index 00000000..7411096d --- /dev/null +++ b/Skins/心kokoro dt/ranking-S@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0145153e02fbbf11b713c7a4b07c519a427b06d5ce3c43be658ceb9170e16fc2 +size 220629 diff --git a/Skins/心kokoro dt/ranking-SH-small@2x.png b/Skins/心kokoro dt/ranking-SH-small@2x.png new file mode 100644 index 00000000..1b46f910 --- /dev/null +++ b/Skins/心kokoro dt/ranking-SH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ded3bd7c5328efbe7923ff8edf114f6a015d637d47a37771194d75fada4161 +size 1221 diff --git a/Skins/心kokoro dt/ranking-SH@2x.png b/Skins/心kokoro dt/ranking-SH@2x.png new file mode 100644 index 00000000..a8e8edff --- /dev/null +++ b/Skins/心kokoro dt/ranking-SH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4f221623c6e1f908dbb01c44735870164d8c0c2faf7feab0b9dc2dfeea484e6 +size 224808 diff --git a/Skins/心kokoro dt/ranking-X-small@2x.png b/Skins/心kokoro dt/ranking-X-small@2x.png new file mode 100644 index 00000000..6036e756 --- /dev/null +++ b/Skins/心kokoro dt/ranking-X-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9745f352e748c03f67c5266b431dcfcfe3dc25dc4904d6efca04074dac6b584 +size 1872 diff --git a/Skins/心kokoro dt/ranking-X@2x.png b/Skins/心kokoro dt/ranking-X@2x.png new file mode 100644 index 00000000..ff5f2c56 --- /dev/null +++ b/Skins/心kokoro dt/ranking-X@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc39ee4854417dafe0244282fdb4c94d67486033bf06cbc5586cb5c0334c2e61 +size 236719 diff --git a/Skins/心kokoro dt/ranking-XH-small.png b/Skins/心kokoro dt/ranking-XH-small.png new file mode 100644 index 00000000..33e73b03 --- /dev/null +++ b/Skins/心kokoro dt/ranking-XH-small.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620b868640cbb7c3a6b5390d85d0aad071560774daed5d88d7bc8e6995caa200 +size 1438 diff --git a/Skins/心kokoro dt/ranking-XH-small@2x.png b/Skins/心kokoro dt/ranking-XH-small@2x.png new file mode 100644 index 00000000..9ab4a4a0 --- /dev/null +++ b/Skins/心kokoro dt/ranking-XH-small@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560ed489ab2e189633e1c40a213115954f69bfcff9691f2077a1276d38783d56 +size 1986 diff --git a/Skins/心kokoro dt/ranking-XH@2x.png b/Skins/心kokoro dt/ranking-XH@2x.png new file mode 100644 index 00000000..6cf2120c --- /dev/null +++ b/Skins/心kokoro dt/ranking-XH@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab810c2a3dcbd82d6ba2db1194fc979f79853367af0d8b9a1bbcdd994034d87e +size 241118 diff --git a/Skins/心kokoro dt/ranking-accuracy.png b/Skins/心kokoro dt/ranking-accuracy.png new file mode 100644 index 00000000..782ff0f4 --- /dev/null +++ b/Skins/心kokoro dt/ranking-accuracy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643ac89572093a4c907c1af802b3d354453c64d545dc3f1be1ce689046064511 +size 68 diff --git a/Skins/心kokoro dt/ranking-accuracy@2x.png b/Skins/心kokoro dt/ranking-accuracy@2x.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/ranking-accuracy@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/ranking-background-overlay.png b/Skins/心kokoro dt/ranking-background-overlay.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/ranking-background-overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/ranking-graph.png b/Skins/心kokoro dt/ranking-graph.png new file mode 100644 index 00000000..4ff7d939 --- /dev/null +++ b/Skins/心kokoro dt/ranking-graph.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572389c718623a50a2364fa20450f9081fd4e2fa8dcd44c01ec5499be63bbee3 +size 14990 diff --git a/Skins/心kokoro dt/ranking-graph@2x.png b/Skins/心kokoro dt/ranking-graph@2x.png new file mode 100644 index 00000000..aba34c1e --- /dev/null +++ b/Skins/心kokoro dt/ranking-graph@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21874f4fd5bf81d5de59f3ac2b802f33d2c2168d8fce64181c43c68166c1a6 +size 4281 diff --git a/Skins/心kokoro dt/ranking-maxcombo.png b/Skins/心kokoro dt/ranking-maxcombo.png new file mode 100644 index 00000000..29bf970b --- /dev/null +++ b/Skins/心kokoro dt/ranking-maxcombo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14db7f862e75e11f1e4bdf9ab0f490340f67dffd1bc22d5e66587787e3f9d883 +size 2790 diff --git a/Skins/心kokoro dt/ranking-panel.png b/Skins/心kokoro dt/ranking-panel.png new file mode 100644 index 00000000..e741aeb0 --- /dev/null +++ b/Skins/心kokoro dt/ranking-panel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4e8a0de0d5d41a0b5de64bd0d686661ecdc9a6a25ed0cf227df45e34cf64bd +size 5104 diff --git a/Skins/心kokoro dt/ranking-perfect@2x.png b/Skins/心kokoro dt/ranking-perfect@2x.png new file mode 100644 index 00000000..6a6b323c --- /dev/null +++ b/Skins/心kokoro dt/ranking-perfect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2290245a195e51e0849e1d941d61dc067b3827296cc55eeb51d7badf407185bb +size 8452 diff --git a/Skins/心kokoro dt/ranking-title.png b/Skins/心kokoro dt/ranking-title.png new file mode 100644 index 00000000..ac8fa105 --- /dev/null +++ b/Skins/心kokoro dt/ranking-title.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0491b5d6d55a8a90dad497ec7f8373c364cc7020a19353df50b09ca59218f9 +size 9395 diff --git a/Skins/心kokoro dt/ranking-title@2x.png b/Skins/心kokoro dt/ranking-title@2x.png new file mode 100644 index 00000000..c56da68c --- /dev/null +++ b/Skins/心kokoro dt/ranking-title@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4add3b3a138b22406976eb70ad4609bff0ee42b3c3c5d5c0488d4fe006f0b26e +size 17722 diff --git a/Skins/心kokoro dt/ready.png b/Skins/心kokoro dt/ready.png new file mode 100644 index 00000000..d4077227 --- /dev/null +++ b/Skins/心kokoro dt/ready.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8762e9e54d5d3f51350402e2fd7ff47545adca14e1927688cb42bbf24ad12ca3 +size 14510 diff --git a/Skins/心kokoro dt/readys.wav b/Skins/心kokoro dt/readys.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/readys.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/reversearrow.png b/Skins/心kokoro dt/reversearrow.png new file mode 100644 index 00000000..f9a1b0f6 --- /dev/null +++ b/Skins/心kokoro dt/reversearrow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d61bf9ed95a9b6dcc19e555c66f0f65da1ae60cb1c3caef22aa6b685018f31e +size 6743 diff --git a/Skins/心kokoro dt/reversearrow@2x.png b/Skins/心kokoro dt/reversearrow@2x.png new file mode 100644 index 00000000..f2154985 --- /dev/null +++ b/Skins/心kokoro dt/reversearrow@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59de4dbd7652a041fc5606cd7f9edfcd8c63b9285be70acb300531dad23eddb6 +size 15968 diff --git a/Skins/心kokoro dt/score-0.png b/Skins/心kokoro dt/score-0.png new file mode 100644 index 00000000..b0d97ed3 --- /dev/null +++ b/Skins/心kokoro dt/score-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394197cdee2bf3ec3a87019a6a29d10a085e56021f54099c8fcce50e3ddacebc +size 3433 diff --git a/Skins/心kokoro dt/score-0@2x.png b/Skins/心kokoro dt/score-0@2x.png new file mode 100644 index 00000000..3f7dfd43 --- /dev/null +++ b/Skins/心kokoro dt/score-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4742d314d0ed714ea9c0b2b98314d70fab9598616f6480f991e1dfbb68725af2 +size 1954 diff --git a/Skins/心kokoro dt/score-1@2x.png b/Skins/心kokoro dt/score-1@2x.png new file mode 100644 index 00000000..069fceb6 --- /dev/null +++ b/Skins/心kokoro dt/score-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a99ea47ab78d8f5870d31e2ea476475b48e7947cd0b99889a158afc8b52be75 +size 808 diff --git a/Skins/心kokoro dt/score-2@2x.png b/Skins/心kokoro dt/score-2@2x.png new file mode 100644 index 00000000..9ea6fe30 --- /dev/null +++ b/Skins/心kokoro dt/score-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:205499c98241a322fde2f651ac68d272822439ecaa7df26e4ad3240603c25069 +size 1678 diff --git a/Skins/心kokoro dt/score-3@2x.png b/Skins/心kokoro dt/score-3@2x.png new file mode 100644 index 00000000..ac7fcf4e --- /dev/null +++ b/Skins/心kokoro dt/score-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7870e27330dddb54932c17ec1e5e0fd31a26f7dbb9e4e5d360c2cd5938577cb7 +size 1709 diff --git a/Skins/心kokoro dt/score-4@2x.png b/Skins/心kokoro dt/score-4@2x.png new file mode 100644 index 00000000..c328ab20 --- /dev/null +++ b/Skins/心kokoro dt/score-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e7966dcc2b7fcdaae4212328dccddbe610abba3a762406392edbb202bfc24b +size 1196 diff --git a/Skins/心kokoro dt/score-5@2x.png b/Skins/心kokoro dt/score-5@2x.png new file mode 100644 index 00000000..17115d90 --- /dev/null +++ b/Skins/心kokoro dt/score-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce542134cc12cf9b93a4314078f6dd8221e5f85ec76d035455ee7fa0d55d54c9 +size 1729 diff --git a/Skins/心kokoro dt/score-6@2x.png b/Skins/心kokoro dt/score-6@2x.png new file mode 100644 index 00000000..560a49df --- /dev/null +++ b/Skins/心kokoro dt/score-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf22564e1fc6e03a15c334c9f59bbcb732d6895c01c410f065301eb4f4c2570 +size 2125 diff --git a/Skins/心kokoro dt/score-7@2x.png b/Skins/心kokoro dt/score-7@2x.png new file mode 100644 index 00000000..467552fe --- /dev/null +++ b/Skins/心kokoro dt/score-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17cb10bbfdb4a6cc5662d9e5ac1e8dcf216c7906692b64d4664b4a14f5a4f3d +size 1217 diff --git a/Skins/心kokoro dt/score-8@2x.png b/Skins/心kokoro dt/score-8@2x.png new file mode 100644 index 00000000..da9a7520 --- /dev/null +++ b/Skins/心kokoro dt/score-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600e76ceba76d6b2e367d184dd8c15ff9939b5839a104f23a8090cb8a85554c2 +size 2172 diff --git a/Skins/心kokoro dt/score-9@2x.png b/Skins/心kokoro dt/score-9@2x.png new file mode 100644 index 00000000..a839bc35 --- /dev/null +++ b/Skins/心kokoro dt/score-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27ac0bfe6c0e2d027922bc737baa4ef0f6cad92fb51dbf23b2d6c4ebb1f164b +size 2145 diff --git a/Skins/心kokoro dt/score-comma.png b/Skins/心kokoro dt/score-comma.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/心kokoro dt/score-comma.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/心kokoro dt/score-dot.png b/Skins/心kokoro dt/score-dot.png new file mode 100644 index 00000000..c84f918e --- /dev/null +++ b/Skins/心kokoro dt/score-dot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4ada8a4582a0116a217a5598a36257ac0de5f1b14827917023a74e7808f971 +size 2958 diff --git a/Skins/心kokoro dt/score-dot@2x.png b/Skins/心kokoro dt/score-dot@2x.png new file mode 100644 index 00000000..b8b03ead --- /dev/null +++ b/Skins/心kokoro dt/score-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:182c13b93be4943a0371adbf2bc03d64429ff608adb881c6c8fbec6060c683fd +size 613 diff --git a/Skins/心kokoro dt/score-percent.png b/Skins/心kokoro dt/score-percent.png new file mode 100644 index 00000000..69be85f4 --- /dev/null +++ b/Skins/心kokoro dt/score-percent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463688b71d33f4c476deddd20df83dfcffbb450f7a5277704442f494fbc49570 +size 3038 diff --git a/Skins/心kokoro dt/score-percent@2x.png b/Skins/心kokoro dt/score-percent@2x.png new file mode 100644 index 00000000..302baae5 --- /dev/null +++ b/Skins/心kokoro dt/score-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b79bdaf2a3351ac45ba3b04aa84192a37170fb9c0a3ce2c637f9c66fc8721d6 +size 2001 diff --git a/Skins/心kokoro dt/score-x.png b/Skins/心kokoro dt/score-x.png new file mode 100644 index 00000000..906648fa --- /dev/null +++ b/Skins/心kokoro dt/score-x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ff24028255e3787e38390106f32b20bb8c6af2943c418f3436b584ce9d5674 +size 2810 diff --git a/Skins/心kokoro dt/score-x@2x.png b/Skins/心kokoro dt/score-x@2x.png new file mode 100644 index 00000000..b4b05697 --- /dev/null +++ b/Skins/心kokoro dt/score-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037474cfe0342668136c90ed3a26a3a1fa690f954759083c3cbdc23843a837cf +size 1666 diff --git a/Skins/心kokoro dt/scorebar-bg.png b/Skins/心kokoro dt/scorebar-bg.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/scorebar-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/scorebar-bg@2x.png b/Skins/心kokoro dt/scorebar-bg@2x.png new file mode 100644 index 00000000..56fdaa03 --- /dev/null +++ b/Skins/心kokoro dt/scorebar-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d2fb1f0896a896ab73583a9f5df9c381f62658352fe0a0580e981bf4ba4658 +size 14596 diff --git a/Skins/心kokoro dt/scorebar-colour.png b/Skins/心kokoro dt/scorebar-colour.png new file mode 100644 index 00000000..70a32f3f --- /dev/null +++ b/Skins/心kokoro dt/scorebar-colour.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2da7a959912b2050cf10a6933e91e662f721946e7f86ceb62d90a92dd510206 +size 2129 diff --git a/Skins/心kokoro dt/scorebar-colour@2x.png b/Skins/心kokoro dt/scorebar-colour@2x.png new file mode 100644 index 00000000..31ad80f8 --- /dev/null +++ b/Skins/心kokoro dt/scorebar-colour@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d60dfd2643c29127e34a585c91242655041ce802b801511524c2aa4f4f68f2 +size 2366 diff --git a/Skins/心kokoro dt/scorebar-ki.png b/Skins/心kokoro dt/scorebar-ki.png new file mode 100644 index 00000000..fac29168 --- /dev/null +++ b/Skins/心kokoro dt/scorebar-ki.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620234b2f7442c73273afc2f3d90769c6d7ac8813f8d2c14849ba316d7281af7 +size 2803 diff --git a/Skins/心kokoro dt/scorebar-kidanger.png b/Skins/心kokoro dt/scorebar-kidanger.png new file mode 100644 index 00000000..ddab0bf6 --- /dev/null +++ b/Skins/心kokoro dt/scorebar-kidanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4595cab4b46b51c203c2c6e22629fac69343bed05ec2fe778f509acfd24e0298 +size 2803 diff --git a/Skins/心kokoro dt/scorebar-kidanger2.png b/Skins/心kokoro dt/scorebar-kidanger2.png new file mode 100644 index 00000000..5ed877c3 --- /dev/null +++ b/Skins/心kokoro dt/scorebar-kidanger2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0d08de15725e6c4e84824e5cb71b04dbb8d8f9fcfdc8b498163993114cae8f +size 2803 diff --git a/Skins/心kokoro dt/scoreentry-0@2x.png b/Skins/心kokoro dt/scoreentry-0@2x.png new file mode 100644 index 00000000..e14674e4 --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-0@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:badcca1faabf43a607cdb17918a4e447305be6193805b108de0a33c7a37b4e78 +size 489 diff --git a/Skins/心kokoro dt/scoreentry-1@2x.png b/Skins/心kokoro dt/scoreentry-1@2x.png new file mode 100644 index 00000000..e0d78ce9 --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-1@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8e08f306c9eee953b105ad819271f5916e2048915cd1f99f9ad6fe1e868888 +size 290 diff --git a/Skins/心kokoro dt/scoreentry-2@2x.png b/Skins/心kokoro dt/scoreentry-2@2x.png new file mode 100644 index 00000000..5e06fa3c --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1cb86e13073b2f7c32b6e0a05a96fd9b8b1b6592896ee576ee6d23e190ae7c +size 499 diff --git a/Skins/心kokoro dt/scoreentry-3@2x.png b/Skins/心kokoro dt/scoreentry-3@2x.png new file mode 100644 index 00000000..887893bb --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-3@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277e5bddb066997e8aee05f9329d8b7c578c624ead49533c2b698fe9a02cadd3 +size 611 diff --git a/Skins/心kokoro dt/scoreentry-4@2x.png b/Skins/心kokoro dt/scoreentry-4@2x.png new file mode 100644 index 00000000..dded79bf --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-4@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55d7bd4373a9967330238e582ea0c5775b089316127be974029e51f0c9f4c6b7 +size 517 diff --git a/Skins/心kokoro dt/scoreentry-5@2x.png b/Skins/心kokoro dt/scoreentry-5@2x.png new file mode 100644 index 00000000..8ca77eda --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-5@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad79f65fd7067dbfcf0fc5d02d303cffacd62c5c2fd334bf82fc8aa3f08c215b +size 546 diff --git a/Skins/心kokoro dt/scoreentry-6@2x.png b/Skins/心kokoro dt/scoreentry-6@2x.png new file mode 100644 index 00000000..f23110e9 --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-6@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ba178801f5d9021f09de91b2799ed8a7777a5e38d6a3f5f4c53cf9376ad978 +size 513 diff --git a/Skins/心kokoro dt/scoreentry-7@2x.png b/Skins/心kokoro dt/scoreentry-7@2x.png new file mode 100644 index 00000000..3d96072a --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-7@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955a9da0bd8215957f8c0946a9d99190f0083f8f94aae46a80a2fdb9774284ce +size 354 diff --git a/Skins/心kokoro dt/scoreentry-8@2x.png b/Skins/心kokoro dt/scoreentry-8@2x.png new file mode 100644 index 00000000..e7f4505b --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-8@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfc7381e0d64231d0bafcd3e735086479670cfcae80ac5966e038c59be0431d +size 604 diff --git a/Skins/心kokoro dt/scoreentry-9@2x.png b/Skins/心kokoro dt/scoreentry-9@2x.png new file mode 100644 index 00000000..c178b2b4 --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-9@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d2eacba24a9b84d27461e6aabee62c841a8653566f5f91c9185cce06b7c888 +size 545 diff --git a/Skins/心kokoro dt/scoreentry-comma@2x.png b/Skins/心kokoro dt/scoreentry-comma@2x.png new file mode 100644 index 00000000..14e53ecb --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-comma@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee729d13dc51ee44e274e0674a5f8facba2ff067e45f42fdcd1eef0f212dec7 +size 151 diff --git a/Skins/心kokoro dt/scoreentry-dot@2x.png b/Skins/心kokoro dt/scoreentry-dot@2x.png new file mode 100644 index 00000000..13ffcdae --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-dot@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23dd51ae3bb348eccee12754d7d006dfb6c3b85c16beaf889a8e3fceafa621ea +size 131 diff --git a/Skins/心kokoro dt/scoreentry-percent@2x.png b/Skins/心kokoro dt/scoreentry-percent@2x.png new file mode 100644 index 00000000..00a86efb --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-percent@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b33d0cb9ea467d9b606dd13fef3e3306f2ffafc3d46cb42d3edbfcd1406b5374 +size 372 diff --git a/Skins/心kokoro dt/scoreentry-x@2x.png b/Skins/心kokoro dt/scoreentry-x@2x.png new file mode 100644 index 00000000..71c1a395 --- /dev/null +++ b/Skins/心kokoro dt/scoreentry-x@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7002cc243c6ff3d1db2fd4f472630134933544ddc628e95626abacae23d6e4b +size 259 diff --git a/Skins/心kokoro dt/section-fail@2x.png b/Skins/心kokoro dt/section-fail@2x.png new file mode 100644 index 00000000..d2f2f65d --- /dev/null +++ b/Skins/心kokoro dt/section-fail@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b69e1c00f0afa35e444abea37e5b2aa4c9bae2291f582d3db1f46d230582b61 +size 187003 diff --git a/Skins/心kokoro dt/section-pass@2x.png b/Skins/心kokoro dt/section-pass@2x.png new file mode 100644 index 00000000..0e395cbf --- /dev/null +++ b/Skins/心kokoro dt/section-pass@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d8ca1c41dc62855f5c941aa8688351932f2600294296ba856d9e1da485015e +size 352510 diff --git a/Skins/心kokoro dt/selection-mod-autoplay.png b/Skins/心kokoro dt/selection-mod-autoplay.png new file mode 100644 index 00000000..d2a39cd2 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-autoplay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b08879b6732b5457e04f1d3d729e63304047d3f8c20187d50c4352e72c148d1 +size 1112 diff --git a/Skins/心kokoro dt/selection-mod-doubletime.png b/Skins/心kokoro dt/selection-mod-doubletime.png new file mode 100644 index 00000000..e8604380 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-doubletime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfcfed84c4862b535ff7c5944a13fd8c56b5a9aa8e067ee8bed56c79bf816c66 +size 672 diff --git a/Skins/心kokoro dt/selection-mod-easy.png b/Skins/心kokoro dt/selection-mod-easy.png new file mode 100644 index 00000000..12441502 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-easy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d04f5032f7fb2eba43483d07880e8fa3f4438d8ebcf68571a0d9967a5fe1d6bc +size 1052 diff --git a/Skins/心kokoro dt/selection-mod-flashlight.png b/Skins/心kokoro dt/selection-mod-flashlight.png new file mode 100644 index 00000000..472a7690 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-flashlight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5607d13247a48cd411fbf6e8a108dc7a09ce39560beecdb8b63eb0bcf96c598 +size 608 diff --git a/Skins/心kokoro dt/selection-mod-halftime.png b/Skins/心kokoro dt/selection-mod-halftime.png new file mode 100644 index 00000000..d168a094 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-halftime.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd56e740ca80b60ab09252840b0cb51a7da97f267eaaba65018dc39c2cbed8dc +size 647 diff --git a/Skins/心kokoro dt/selection-mod-hardrock.png b/Skins/心kokoro dt/selection-mod-hardrock.png new file mode 100644 index 00000000..d57c9fcc --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-hardrock.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29589eafa7678c53d0502cf6deb3537eed2235b459f99a17f5ea717bcf5f621a +size 883 diff --git a/Skins/心kokoro dt/selection-mod-hidden.png b/Skins/心kokoro dt/selection-mod-hidden.png new file mode 100644 index 00000000..13ac8296 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-hidden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4359fb9a9fc87369b3a4d5a6ac3e0856e1af8095544022e73a2791e92b4e0b +size 745 diff --git a/Skins/心kokoro dt/selection-mod-nightcore.png b/Skins/心kokoro dt/selection-mod-nightcore.png new file mode 100644 index 00000000..f7487030 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-nightcore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656ef0bb5193ae9439728a88959cbf6bcfc17c477821546ff27dd4a7cf32d0db +size 1426 diff --git a/Skins/心kokoro dt/selection-mod-nofail.png b/Skins/心kokoro dt/selection-mod-nofail.png new file mode 100644 index 00000000..6e6d0c4c --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-nofail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf7d59b8ecfba07fe3c76dda161a369d07c21a7179ac009bc0183a8958fe86c +size 954 diff --git a/Skins/心kokoro dt/selection-mod-perfect.png b/Skins/心kokoro dt/selection-mod-perfect.png new file mode 100644 index 00000000..15798054 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-perfect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2a89039ceadd764218e3d92470caca2d5dec79854dbcbff8391fbda0041fe8 +size 835 diff --git a/Skins/心kokoro dt/selection-mod-relax.png b/Skins/心kokoro dt/selection-mod-relax.png new file mode 100644 index 00000000..eb4a9ee7 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-relax.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ceec89d768b4a627974608cee9ce32fe2c3686f70c5cc94f7691d09f25d95b +size 1409 diff --git a/Skins/心kokoro dt/selection-mod-relax2.png b/Skins/心kokoro dt/selection-mod-relax2.png new file mode 100644 index 00000000..3a9949f5 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-relax2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a04c29d140cc2f3a10c76297571f26dad29ecd607d56272b2650d63741f7970 +size 1254 diff --git a/Skins/心kokoro dt/selection-mod-scorev2.png b/Skins/心kokoro dt/selection-mod-scorev2.png new file mode 100644 index 00000000..17f5f257 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-scorev2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387b5ba52824c417f1541cb0ffdabe7fa880a8bf6a6a747e972906f0453b9568 +size 1508 diff --git a/Skins/心kokoro dt/selection-mod-spunout.png b/Skins/心kokoro dt/selection-mod-spunout.png new file mode 100644 index 00000000..1839eaf2 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-spunout.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f4715d037fcbf21cc4f743e03014588841601e11b77c5629d4106fc0bb12f0 +size 1131 diff --git a/Skins/心kokoro dt/selection-mod-suddendeath.png b/Skins/心kokoro dt/selection-mod-suddendeath.png new file mode 100644 index 00000000..c4938563 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-suddendeath.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1410a743ba16076e6fb581fbca165d13e8a838dc689597a5f08eefbc1d7a7f1 +size 1133 diff --git a/Skins/心kokoro dt/selection-mod-target.png b/Skins/心kokoro dt/selection-mod-target.png new file mode 100644 index 00000000..65075ce6 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4db61fe9078d1748950a2541001485071c1b4a77356320aacf20612476023f2 +size 679 diff --git a/Skins/心kokoro dt/selection-mod-target@2x.png b/Skins/心kokoro dt/selection-mod-target@2x.png new file mode 100644 index 00000000..3e8dd4a9 --- /dev/null +++ b/Skins/心kokoro dt/selection-mod-target@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60b3f261657d0e7895331fa211d244df72700e358d58a267c51ce54ef4e038f +size 3290 diff --git a/Skins/心kokoro dt/selection-mode-over.png b/Skins/心kokoro dt/selection-mode-over.png new file mode 100644 index 00000000..7043211d --- /dev/null +++ b/Skins/心kokoro dt/selection-mode-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2246eb8179ed090c347c2ec5fd2368eead2be2bf3134b3d4e0e3360dac8ca0 +size 280 diff --git a/Skins/心kokoro dt/selection-mode@2x.png b/Skins/心kokoro dt/selection-mode@2x.png new file mode 100644 index 00000000..c32d663b --- /dev/null +++ b/Skins/心kokoro dt/selection-mode@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9d9bf4404d2f93f652c9d699c447358d7fdd526ffab463738ae1b83f7389b4 +size 233788 diff --git a/Skins/心kokoro dt/selection-mods-over.png b/Skins/心kokoro dt/selection-mods-over.png new file mode 100644 index 00000000..96b71420 --- /dev/null +++ b/Skins/心kokoro dt/selection-mods-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e511b5e15c8bd20e49b15eb8c4640b6421a46d3cb7b214d1d2f067c464c00eee +size 2529 diff --git a/Skins/心kokoro dt/selection-mods-over@2x.png b/Skins/心kokoro dt/selection-mods-over@2x.png new file mode 100644 index 00000000..d03cc5c1 --- /dev/null +++ b/Skins/心kokoro dt/selection-mods-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00c699adeb54c4c01a099ebcba2a20d07641587e225c60ccddf94737f12b9ef +size 4377 diff --git a/Skins/心kokoro dt/selection-mods.png b/Skins/心kokoro dt/selection-mods.png new file mode 100644 index 00000000..7043211d --- /dev/null +++ b/Skins/心kokoro dt/selection-mods.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2246eb8179ed090c347c2ec5fd2368eead2be2bf3134b3d4e0e3360dac8ca0 +size 280 diff --git a/Skins/心kokoro dt/selection-options-over.png b/Skins/心kokoro dt/selection-options-over.png new file mode 100644 index 00000000..fe7a13fb --- /dev/null +++ b/Skins/心kokoro dt/selection-options-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ba8cb7ade7d8ca8a901dfd9eb6e43bfc51323482d5b3164fc57f9c6770d49f +size 2481 diff --git a/Skins/心kokoro dt/selection-options-over@2x.png b/Skins/心kokoro dt/selection-options-over@2x.png new file mode 100644 index 00000000..5e5fc868 --- /dev/null +++ b/Skins/心kokoro dt/selection-options-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63c10eeb011a9d7e42e47722ad1676a82d8dd34e9a13e5d6217ed22fb424f73d +size 3795 diff --git a/Skins/心kokoro dt/selection-options.png b/Skins/心kokoro dt/selection-options.png new file mode 100644 index 00000000..7043211d --- /dev/null +++ b/Skins/心kokoro dt/selection-options.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2246eb8179ed090c347c2ec5fd2368eead2be2bf3134b3d4e0e3360dac8ca0 +size 280 diff --git a/Skins/心kokoro dt/selection-random-over.png b/Skins/心kokoro dt/selection-random-over.png new file mode 100644 index 00000000..b881e606 --- /dev/null +++ b/Skins/心kokoro dt/selection-random-over.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c209e3e9ddfb11107dbda5f3816a022e07984f50bd7d81994754feaebfe33b +size 2326 diff --git a/Skins/心kokoro dt/selection-random-over@2x.png b/Skins/心kokoro dt/selection-random-over@2x.png new file mode 100644 index 00000000..45a094f0 --- /dev/null +++ b/Skins/心kokoro dt/selection-random-over@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204b11a08b83ef070e7ec586c6e1a51f2f4954908c5256a4cb2edef5b0726f7f +size 3637 diff --git a/Skins/心kokoro dt/selection-random.png b/Skins/心kokoro dt/selection-random.png new file mode 100644 index 00000000..7043211d --- /dev/null +++ b/Skins/心kokoro dt/selection-random.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2246eb8179ed090c347c2ec5fd2368eead2be2bf3134b3d4e0e3360dac8ca0 +size 280 diff --git a/Skins/心kokoro dt/selection-tab.png b/Skins/心kokoro dt/selection-tab.png new file mode 100644 index 00000000..62f5c0ca --- /dev/null +++ b/Skins/心kokoro dt/selection-tab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc67978c5fa3ea0f0a290a4125eb7501d5906a07680fe70103c67a4859d8d5e7 +size 287 diff --git a/Skins/心kokoro dt/selection-tab@2x.png b/Skins/心kokoro dt/selection-tab@2x.png new file mode 100644 index 00000000..a4a9fb60 --- /dev/null +++ b/Skins/心kokoro dt/selection-tab@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad065da404cfecbcada3da27219af9a6702ee139bd72dfc429658ddd3fbff16 +size 2263 diff --git a/Skins/心kokoro dt/skin.ini b/Skins/心kokoro dt/skin.ini new file mode 100644 index 00000000..665f5a26 --- /dev/null +++ b/Skins/心kokoro dt/skin.ini @@ -0,0 +1,46 @@ +[General] +Name: # 心 Kokoro 「3.0」 DT +Author: Duckyzie +Version: 3.0 +SliderBallFlip: 0 +CursorRotate: 0 +CursorExpand: 0 +CursorCentre: 1 +SliderBallFrames: 1 +HitCircleOverlayAboveNumer: 0 +ComboBurstRandom: 0 +SliderStyle: 2 + +[Colours] + Combo1: 164, 100, 240 + Combo2: 230, 110, 150 + Combo3: 100, 200, 200 + Combo4: 130, 120, 255 + SliderBorder: 85, 84, 102 + SliderTrackOverride: 30, 30, 41 +SongSelectActiveText: 240,240,240 +SongSelectInactiveText: 230,230,230 +SpinnerApproachCircle: 255,255,255 +ApproachCircle: 255,255,255 +MenuGlow: 255,255,255 + +[Fonts] +HitCirclePrefix: default +HitCircleOverlap: 3 +ScorePrefix: score +ScoreOverlap: 2 +[Mania] +Keys: 4 +//Mania skin config +ColumnStart: 136 +HitPosition: 402 +SpecialStyle: 0 +UpsideDown: 0 +JudgementLine: 1 +ScorePosition: 325 +ComboPosition: 111 +LightFramePerSecond: 24 +ColumnWidth: 30,30,30,30 +//Colours +//images +//Keys diff --git a/Skins/心kokoro dt/sliderb.png b/Skins/心kokoro dt/sliderb.png new file mode 100644 index 00000000..b0ddd37a --- /dev/null +++ b/Skins/心kokoro dt/sliderb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702aaff001d20d5627d71654ed8a64f6efb88e0eda18c4d20b81e04605751197 +size 15457 diff --git a/Skins/心kokoro dt/sliderendcircle.png b/Skins/心kokoro dt/sliderendcircle.png new file mode 100644 index 00000000..4e64c384 --- /dev/null +++ b/Skins/心kokoro dt/sliderendcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9105bf75c2c8855dde9902a71b640bfb3ec4d93d17d60bd0c4cf6325160e5fa6 +size 4981 diff --git a/Skins/心kokoro dt/sliderfollowcircle.png b/Skins/心kokoro dt/sliderfollowcircle.png new file mode 100644 index 00000000..7fb32f4e --- /dev/null +++ b/Skins/心kokoro dt/sliderfollowcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2143d520a98f43b8e2195c91db7517ec998e175d9cf1409ecc5616d7f1cf045 +size 22568 diff --git a/Skins/心kokoro dt/sliderfollowcircle@2x.png b/Skins/心kokoro dt/sliderfollowcircle@2x.png new file mode 100644 index 00000000..adc3a1aa --- /dev/null +++ b/Skins/心kokoro dt/sliderfollowcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94cefe4cda362fa9e5c552bb4b3c2635fe193f99ea75e8dca3bfdcafc0e36bc3 +size 31553 diff --git a/Skins/心kokoro dt/sliderpoint10.png b/Skins/心kokoro dt/sliderpoint10.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/sliderpoint10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/sliderpoint30.png b/Skins/心kokoro dt/sliderpoint30.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/sliderpoint30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/sliderscorepoint.png b/Skins/心kokoro dt/sliderscorepoint.png new file mode 100644 index 00000000..dbbb4737 --- /dev/null +++ b/Skins/心kokoro dt/sliderscorepoint.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363380cf29b355a724b2a99a7964335101888146cea88a795f090861d5939315 +size 404 diff --git a/Skins/心kokoro dt/sliderscorepoint@2x.png b/Skins/心kokoro dt/sliderscorepoint@2x.png new file mode 100644 index 00000000..a63c7cf5 --- /dev/null +++ b/Skins/心kokoro dt/sliderscorepoint@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f15a70f3cc6b0e6567a6ce2e6946c02e3bef11a07d2294c9ce1612484f152e +size 837 diff --git a/Skins/心kokoro dt/soft-hitclap.wav b/Skins/心kokoro dt/soft-hitclap.wav new file mode 100644 index 00000000..280b5c66 --- /dev/null +++ b/Skins/心kokoro dt/soft-hitclap.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f667b4e59bb9f37558fde6b99790a9f4dcee6a534e6f9f783acacf8b98b03270 +size 25614 diff --git a/Skins/心kokoro dt/soft-hitclap2.wav b/Skins/心kokoro dt/soft-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/心kokoro dt/soft-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/心kokoro dt/soft-hitfinish.wav b/Skins/心kokoro dt/soft-hitfinish.wav new file mode 100644 index 00000000..a99486ac --- /dev/null +++ b/Skins/心kokoro dt/soft-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b295ebe9dd9402dc54c8c939a4327d3465a3c8fb3ecb68dd749cab9ca3cb05d +size 24784 diff --git a/Skins/心kokoro dt/soft-hitfinish2.wav b/Skins/心kokoro dt/soft-hitfinish2.wav new file mode 100644 index 00000000..f4647136 --- /dev/null +++ b/Skins/心kokoro dt/soft-hitfinish2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f272833b9f0ba3dff5679939d942a58942f51e7eebde12de6ccfa0ea648d8a +size 258960 diff --git a/Skins/心kokoro dt/soft-hitnormal.wav b/Skins/心kokoro dt/soft-hitnormal.wav new file mode 100644 index 00000000..5895b4af --- /dev/null +++ b/Skins/心kokoro dt/soft-hitnormal.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6b68c0cd5dd76481f02b14535f2aedfdbdec92d6bf665aaf4649b0bfef4624 +size 25580 diff --git a/Skins/心kokoro dt/soft-hitnormal2.wav b/Skins/心kokoro dt/soft-hitnormal2.wav new file mode 100644 index 00000000..b40cf239 --- /dev/null +++ b/Skins/心kokoro dt/soft-hitnormal2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea8a630553b92e3d1acec1ccaf02830c75c0a46a92ed6d6e7d202c6a62af868 +size 70316 diff --git a/Skins/心kokoro dt/soft-hitnormalh.wav b/Skins/心kokoro dt/soft-hitnormalh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/心kokoro dt/soft-hitnormalh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/心kokoro dt/soft-hitnormalhh.wav b/Skins/心kokoro dt/soft-hitnormalhh.wav new file mode 100644 index 00000000..2dfb5744 --- /dev/null +++ b/Skins/心kokoro dt/soft-hitnormalhh.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751e146d05b3dd711530680a544693384cf2ce062fe7a14e2eabff4ad9957d8 +size 19524 diff --git a/Skins/心kokoro dt/soft-hitsoft.wav b/Skins/心kokoro dt/soft-hitsoft.wav new file mode 100644 index 00000000..8d53e4e2 --- /dev/null +++ b/Skins/心kokoro dt/soft-hitsoft.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc11eb0ed96cd1114365c1a5f33d7fcf70e933781518ea87880f27d7f25ad2e +size 25872 diff --git a/Skins/心kokoro dt/soft-hitwhistle.wav b/Skins/心kokoro dt/soft-hitwhistle.wav new file mode 100644 index 00000000..ae23040e --- /dev/null +++ b/Skins/心kokoro dt/soft-hitwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c152b5c4fadd7322879e440c37149d9293d407ab6f6753f98cb0199f47a87156 +size 141064 diff --git a/Skins/心kokoro dt/soft-hitwhistle2.wav b/Skins/心kokoro dt/soft-hitwhistle2.wav new file mode 100644 index 00000000..d392e2bd --- /dev/null +++ b/Skins/心kokoro dt/soft-hitwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6528414b0f80c5bf99f1e7a0d6a2fa67c36cdfcd6c209e6bb21b511443fa06f +size 141564 diff --git a/Skins/心kokoro dt/soft-sliderslide.wav b/Skins/心kokoro dt/soft-sliderslide.wav new file mode 100644 index 00000000..18bed76f --- /dev/null +++ b/Skins/心kokoro dt/soft-sliderslide.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:215d0d7fa8187499fa8e423dfab69c46605ca774a3970b146aca9d65106887c2 +size 35028 diff --git a/Skins/心kokoro dt/soft-sliderslide2.wav b/Skins/心kokoro dt/soft-sliderslide2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/soft-sliderslide2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/soft-slidertick.wav b/Skins/心kokoro dt/soft-slidertick.wav new file mode 100644 index 00000000..a432bbf9 --- /dev/null +++ b/Skins/心kokoro dt/soft-slidertick.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aeff6d5b5bcd9b208d1c188877690a9fb08ce9ecbe86290472e0aa638d16127 +size 117804 diff --git a/Skins/心kokoro dt/soft-slidertick2.wav b/Skins/心kokoro dt/soft-slidertick2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/soft-slidertick2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/soft-sliderwhistle.wav b/Skins/心kokoro dt/soft-sliderwhistle.wav new file mode 100644 index 00000000..cfc0314c --- /dev/null +++ b/Skins/心kokoro dt/soft-sliderwhistle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b80e132dd7adf41d45f7e21352dc3420599474382dc87a3b1772f603ce32a81 +size 67256 diff --git a/Skins/心kokoro dt/soft-sliderwhistle2.wav b/Skins/心kokoro dt/soft-sliderwhistle2.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/soft-sliderwhistle2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/softl-hitclap2.wav b/Skins/心kokoro dt/softl-hitclap2.wav new file mode 100644 index 00000000..b2620108 --- /dev/null +++ b/Skins/心kokoro dt/softl-hitclap2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd772a79fc5c6223675e8da83f9bbb0c054a41b413202f5b532ac693a3dffd6c +size 139264 diff --git a/Skins/心kokoro dt/softl-hitfinish.wav b/Skins/心kokoro dt/softl-hitfinish.wav new file mode 100644 index 00000000..75fdfa78 --- /dev/null +++ b/Skins/心kokoro dt/softl-hitfinish.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df5fa74f7945a737150cad4c1b8ad4957d80457ba9222b5056fe0ad13c64e1 +size 24748 diff --git a/Skins/心kokoro dt/spinner-approachcircle.png b/Skins/心kokoro dt/spinner-approachcircle.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/心kokoro dt/spinner-approachcircle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/心kokoro dt/spinner-approachcircle@2x.png b/Skins/心kokoro dt/spinner-approachcircle@2x.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/心kokoro dt/spinner-approachcircle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/心kokoro dt/spinner-background.png b/Skins/心kokoro dt/spinner-background.png new file mode 100644 index 00000000..1cf4a64e --- /dev/null +++ b/Skins/心kokoro dt/spinner-background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bac35c26aeea9a2fcca3edc8fd3a848ad5c1b2b222479c0f6e8936a3a29f0a +size 13465 diff --git a/Skins/心kokoro dt/spinner-background@2x.png b/Skins/心kokoro dt/spinner-background@2x.png new file mode 100644 index 00000000..803057fd --- /dev/null +++ b/Skins/心kokoro dt/spinner-background@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42237a13132ad4f0cea41b16a8e6ab35ccaa616c25f433cc676194834f0bd8ab +size 32307 diff --git a/Skins/心kokoro dt/spinner-bottom.png b/Skins/心kokoro dt/spinner-bottom.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/心kokoro dt/spinner-bottom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/心kokoro dt/spinner-circle.png b/Skins/心kokoro dt/spinner-circle.png new file mode 100644 index 00000000..5c792b99 --- /dev/null +++ b/Skins/心kokoro dt/spinner-circle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9faba2488bfa0b1d7215d39b3ec58bfe3dfcd4f2e42ef2ccbcb4f2371ff2c8b6 +size 20309 diff --git a/Skins/心kokoro dt/spinner-circle@2x.png b/Skins/心kokoro dt/spinner-circle@2x.png new file mode 100644 index 00000000..0933e503 --- /dev/null +++ b/Skins/心kokoro dt/spinner-circle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5832cddcf2eeac9a0bdfdc3d61779d2c69d507c23cf349f463b491cb64f9d1e +size 43024 diff --git a/Skins/心kokoro dt/spinner-clear.png b/Skins/心kokoro dt/spinner-clear.png new file mode 100644 index 00000000..6ce0ef65 --- /dev/null +++ b/Skins/心kokoro dt/spinner-clear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df77a4905fb574de03dcb420a53167247fca415a313b4c98724bd59696922e7 +size 6435 diff --git a/Skins/心kokoro dt/spinner-clear@2x.png b/Skins/心kokoro dt/spinner-clear@2x.png new file mode 100644 index 00000000..896e30a8 --- /dev/null +++ b/Skins/心kokoro dt/spinner-clear@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061317ee76415671e02f7511a14ea0a983ab36611a7732d2fab19165a648b775 +size 22859 diff --git a/Skins/心kokoro dt/spinner-glow.png b/Skins/心kokoro dt/spinner-glow.png new file mode 100644 index 00000000..f47aa999 --- /dev/null +++ b/Skins/心kokoro dt/spinner-glow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe566ced00295aed32a613ba3033064e40636a2ba871c115f9529f20ae3535e +size 141 diff --git a/Skins/心kokoro dt/spinner-metre.png b/Skins/心kokoro dt/spinner-metre.png new file mode 100644 index 00000000..06fba7c8 --- /dev/null +++ b/Skins/心kokoro dt/spinner-metre.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f408e8a25e78ff6a2a4cc5258801d2cc080611b25e4c5be13d20ab9644aeb42c +size 18780 diff --git a/Skins/心kokoro dt/spinner-metre@2x.png b/Skins/心kokoro dt/spinner-metre@2x.png new file mode 100644 index 00000000..db80db15 --- /dev/null +++ b/Skins/心kokoro dt/spinner-metre@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f5036d322352596755ba239aef13274dfb23918a88075e22e267dd21e79ec5 +size 18780 diff --git a/Skins/心kokoro dt/spinner-middle.png b/Skins/心kokoro dt/spinner-middle.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/心kokoro dt/spinner-middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/心kokoro dt/spinner-middle2.png b/Skins/心kokoro dt/spinner-middle2.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/心kokoro dt/spinner-middle2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/心kokoro dt/spinner-middle2@2x.png b/Skins/心kokoro dt/spinner-middle2@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/心kokoro dt/spinner-middle2@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/心kokoro dt/spinner-middle@2x.png b/Skins/心kokoro dt/spinner-middle@2x.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/心kokoro dt/spinner-middle@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/心kokoro dt/spinner-osu.png b/Skins/心kokoro dt/spinner-osu.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/spinner-osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/spinner-rpm.png b/Skins/心kokoro dt/spinner-rpm.png new file mode 100644 index 00000000..479b98c6 --- /dev/null +++ b/Skins/心kokoro dt/spinner-rpm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb10792d1f0c7e07e7248273540f1952d9a5a2996f4b5df70ab026cd9f05517 +size 95 diff --git a/Skins/心kokoro dt/spinner-rpm@2x.png b/Skins/心kokoro dt/spinner-rpm@2x.png new file mode 100644 index 00000000..77f1006b --- /dev/null +++ b/Skins/心kokoro dt/spinner-rpm@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960fc3ae621a5cbfe25bcd6f5b1b1f4ee56a09ad7fa76a67cf345cd97dfccd7a +size 392 diff --git a/Skins/心kokoro dt/spinner-spin.png b/Skins/心kokoro dt/spinner-spin.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/心kokoro dt/spinner-spin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/心kokoro dt/spinner-top.png b/Skins/心kokoro dt/spinner-top.png new file mode 100644 index 00000000..0c21bc71 --- /dev/null +++ b/Skins/心kokoro dt/spinner-top.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd8ec3aea82e53b13c35be34003ec06791022a96b8f713908dbdeb2313e8c81 +size 141 diff --git a/Skins/心kokoro dt/spinnerbonus.wav b/Skins/心kokoro dt/spinnerbonus.wav new file mode 100644 index 00000000..262eda1e --- /dev/null +++ b/Skins/心kokoro dt/spinnerbonus.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0519fd662999cfcf48f60c73912216953f2d4b47b33daad8df3ddf73407e66 +size 524806 diff --git a/Skins/心kokoro dt/spinnerspin.wav b/Skins/心kokoro dt/spinnerspin.wav new file mode 100644 index 00000000..0b3ec67d --- /dev/null +++ b/Skins/心kokoro dt/spinnerspin.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991cd2a53281fab26a26b23f2b3d7a020e277b83978ea36796679e0952ae7575 +size 44 diff --git a/Skins/心kokoro dt/star.png b/Skins/心kokoro dt/star.png new file mode 100644 index 00000000..3a58e725 --- /dev/null +++ b/Skins/心kokoro dt/star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a201409919cf36a1d804c55f8649b8135d8e7024f535f0efbd8c50ad79007ae +size 992 diff --git a/Skins/心kokoro dt/star2.png b/Skins/心kokoro dt/star2.png new file mode 100644 index 00000000..be3e94c4 --- /dev/null +++ b/Skins/心kokoro dt/star2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe68d46ebe475ae311d080bdd17e29596eaae63215d8b1da1d92e6ea4ea7a1d +size 2792 diff --git a/Skins/心kokoro dt/star@2x.png b/Skins/心kokoro dt/star@2x.png new file mode 100644 index 00000000..eb8be58d --- /dev/null +++ b/Skins/心kokoro dt/star@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aea07bd29291d7d873101f5e1970e94906f76ccba9bcbd84cd4db7500962f12 +size 20015 diff --git a/Skins/心kokoro dt/volume-bg-effect.png b/Skins/心kokoro dt/volume-bg-effect.png new file mode 100644 index 00000000..ccde3628 --- /dev/null +++ b/Skins/心kokoro dt/volume-bg-effect.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bbb029d51e120c7f912284ca6d77a53f5727baf13fab56060ae610b64eb7dc +size 6130 diff --git a/Skins/心kokoro dt/volume-bg-effect@2x.png b/Skins/心kokoro dt/volume-bg-effect@2x.png new file mode 100644 index 00000000..4515098f --- /dev/null +++ b/Skins/心kokoro dt/volume-bg-effect@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101be858ccc62f2e7895e1d9b62fb3f60b3c2e01b17d31b92f89586c2d99cfd1 +size 10602 diff --git a/Skins/心kokoro dt/volume-bg.png b/Skins/心kokoro dt/volume-bg.png new file mode 100644 index 00000000..2fb265a2 --- /dev/null +++ b/Skins/心kokoro dt/volume-bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e42a9691bf9e687227eb7ca43c1200b7059a4630736e832187a2e1b221842f7 +size 5280 diff --git a/Skins/心kokoro dt/volume-bg@2x.png b/Skins/心kokoro dt/volume-bg@2x.png new file mode 100644 index 00000000..4649433b --- /dev/null +++ b/Skins/心kokoro dt/volume-bg@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35baa1a18decd33f8a1f2991c2fed3fca43a308495df049596c987cf6c891c3f +size 8664 diff --git a/Skins/心kokoro dt/welcome_text.png b/Skins/心kokoro dt/welcome_text.png new file mode 100644 index 00000000..26e14b69 --- /dev/null +++ b/Skins/心kokoro dt/welcome_text.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0b17fa0c0c70254c177baaaa6d2af0195c397fa1b237bc2a486b15243976cf +size 41292 diff --git a/Skins/心kokoro dt/welcome_text@2x.png b/Skins/心kokoro dt/welcome_text@2x.png new file mode 100644 index 00000000..2bb1b228 --- /dev/null +++ b/Skins/心kokoro dt/welcome_text@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69c19c94071b6ab19f87040e95181328138f51938762c6de81ad08517daa2dab +size 97012 diff --git a/hardlink-songs-folder.bat b/hardlink-songs-folder.bat index 8e7a6718..baa71cd0 100644 --- a/hardlink-songs-folder.bat +++ b/hardlink-songs-folder.bat @@ -9,7 +9,7 @@ if %errorLevel% neq 0 ( echo Running robocopy sync as Administrator... echo. -robocopy "E:\osu!\skins" "D:\git\skins\Skins" /MIR /COPYALL /SEC /B /XJ /DCOPY:T /J +robocopy "D:\osustuff\skins for arlind skinhub" "D:\Git\ooga_booga\Skins" /MIR /COPYALL /SEC /B /XJ /DCOPY:T /J echo Robocopy sync completed. pause diff --git a/how-to-use.md b/how-to-use.md deleted file mode 100644 index f0525eb4..00000000 --- a/how-to-use.md +++ /dev/null @@ -1,208 +0,0 @@ ---- - -gitea: none -include_toc: true - ---- - -# How to Use This Repository - -If anything is unclear, just shoot me a message on Discord. - -## 1. Create Your Account on git.sulejmani.xyz - -(If you don't want to share your mail with me DM me on Discord) - -Sign up here: -[https://git.sulejmani.xyz/user/sign\_up](https://git.sulejmani.xyz/user/sign_up) - -![Register](/src/docs/register.png) - -Check your email and click the confirmation link to activate your account. - -![Check Mail](/src/docs/check_mail.png) -![Activation Email](/src/docs/activation_mail.png) - -Then confirm your password to complete the process. - -![Activate Account](/src/docs/activate_account.png) - ---- - -## 2. Generate an Access Token - -Go to [https://git.sulejmani.xyz/](https://git.sulejmani.xyz/) and open your **Settings**. - -![Navigate Settings](/src/docs/navigate_settings.png) - -Under the **Applications** section, create a new token. - -* Check all permissions (as shown in the image) -* Give it a clear and recognizable name - -![Generate Token](/src/docs/applications_generate_token.png) - -Once the token is generated, **copy and save it securely**, you won’t be able to see it again. - -![Copy Token](/src/docs/copy_token.png) - ---- - -## 3. Create a New Repository - -Still on [https://git.sulejmani.xyz/](https://git.sulejmani.xyz/), click the **+** icon in the top right corner to create a new repo. - -![Start Creating New Repo](/src/docs/start_create_new_repo.png) - -* Name it however you like -* Use `skins-template` as the template -* Enable all template items - -You now have your own copy of the template repo. - -![Template Repo](/src/docs/template_repo.png) - ---- - -## 4. Set Up Secrets for Deployment - -Go to your repository's **Settings**. - -![Navigate Repo Settings](/src/docs/navigate_repository_settings.png) - -Then under **Actions** open the **Secrets** tab and add these two: - -| Secret Name | Secret Value | -| -------------------- | -------------------------- | -| `TOKEN` | The token you just created | -| `CONTAINER_REGISTRY` | `git.sulejmani.xyz` | - -![Add Secret 1](/src/docs/secret1.png) -![Add Secret 2](/src/docs/secret2.png) - ---- - -## 5. Clone the Repository - -If you don’t have Git installed, download it here: -👉 [https://git-scm.com/downloads/win](https://git-scm.com/downloads/win) - -Choose where to clone the repo (e.g. `D:/git/`) and run: - -```bash -git config --global user.name "Your Name" -git config --global user.email "you@example.com" - -git lfs install - -git clone https://git.sulejmani.xyz/{yourusername}/{yourrepositoryname}.git -``` - ---- - -## 6. Prepare Your Skins - -In your cloned repo, open `hardlink-songs-folder.bat`. - -Edit the source and target paths. For example, if: - -* Your osu! skins are in `E:\osu!\skins` -* Your repo is in `D:\git\skins` - -Then update the line on the script like this: - -```bat -robocopy "E:\osu!\skins" "D:\git\skins\Skins" /MIR /COPYALL /SEC /B /XJ /DCOPY:T /J -``` - - -Run the batch file by double-clicking it. - ---- - -## 7. Change Skin Order, add descriptions, and ignore Skins. - -### Skin Order -This is optional, but recommended. In the `workflows` folder, open `skins.json`. - -Edit the order and descriptions as you like. - -here's an example: - -```json -{ - "order": [ - "- Barely still Jace", - "- Jace" - ], - "descriptions": { - "- Barely still Jace": "My main skin.", - "- Jace": "My secondary skin, only really used for EZ." - } -} -``` - -Make sure the order matches the skins folder name in the `Skins` folder. - -### Ignore Skins - -There is a .gitignore file in the root of the repo. You can add any skins you don't want to be uploaded. - -Here's an example: - -``` -*WhiteCat* -*Vaxei* -``` -So in this example if a Skin has WhiteCat or Vaxei in the name, it will be ignored. - ---- - -## 8. Upload Your Skins - -Open a terminal (cmd or PowerShell) in your repo directory: - -```cmd -cd D:\git\skins # update this to your actual path -``` - -Then run: - -```bash -git add . -git commit -m "Adding skins" -git config --global credential.helper cache -git push -``` - -Your skins will now be uploaded. - ---- - -## 9. Monitor Upload Progress - -Go to your repo's **Actions** tab. - -![navigate-actions](/src/docs/navigate_actions.png) - -You’ll see the workflow progress there. - -![progress](/src/docs/progress.png) - -If something goes wrong, check the logs—or just ping me on Discord. - ---- - -## 10. Update Skins in the Future - -To update your skins later: - -1. Re-run `hardlink-songs-folder.bat` -2. Run the same upload commands: - -```bash -git pull -git add . -git commit -m "Updating skins" -git push -``` diff --git a/src/default-skin/!LICENCE.txt b/src/default-skin/!LICENCE.txt deleted file mode 100644 index e2e5bb68..00000000 --- a/src/default-skin/!LICENCE.txt +++ /dev/null @@ -1,7 +0,0 @@ -All osu! graphic and other game assets are copyright ppy Pty Ltd. - -You are granted permission to use the elements contained within this archive as a template for creating your own skins. You can modify these in any way you see fit. Please do not include the resources if you haven't modified them; the defaults will automatically be used in this case. - -You are NOT permitted to use these graphics outside of skins and/or beatmaps. This includes using them on other websites, games, products etc. - -If you would like to use the resources outside of the scope provided above, please contact me at pe@ppy.sh \ No newline at end of file diff --git a/src/default-skin/!README.txt b/src/default-skin/!README.txt deleted file mode 100644 index 2f9ca814..00000000 --- a/src/default-skin/!README.txt +++ /dev/null @@ -1,27 +0,0 @@ -About this skin : -======================= - -Template by Corne2Plum3 (https://osu.ppy.sh/users/15646039). - -This is the just the default skin from the stable version (no target practice sprites sorry...), but 2021 version (from the 20210821 version to be exact). I tried to make the default skin but updated (the last I found was from 2014...), and complete (I added almost missing files) where skinners use it as a template to create their skin. - -Most of the sprites and gameplay sounds are from ppy/osu-ressources (https://github.com/ppy/osu-resources). Sometimes I used an AI to generates the @2x versions of some files. For the sounds, I tried to pick them directly from the game, so sorry if it's not accurate... - -Please don't kill me for making this, peppy! - - -A few notes : -============= - -BACK BUTTON: -It's impossible to recreate the back button. In this skin, there is just 1 frame of the back button. Unlike the default, he's isn't animated, and doesn't change according to the game language. - -COMBO SPRITES: -Same than score sprites. - -SLIDERBALL: -It's IMPOSSIBLE to recreate exactly the default sliderball with skinning, because sliderb files disable sliderb-spec (overlay) and sliderb-nd (background). So you will see only sliderb files in game with this skin. -The only way to have the same sliderball than the default skin is deleting ALL slider ball files (sliderb, sliderb-spec and sliderb-nd). - -SPINNER APPROACH CIRCLE: -With the default skin which uses new spinner, spinner-approachcircle is invisible. In the folder 'new spinner/visible approach circle' you have the default spinner-approachcircle if this file is needed. \ No newline at end of file diff --git a/src/default-skin/applause.wav b/src/default-skin/applause.wav deleted file mode 100644 index 16dbcaa0..00000000 --- a/src/default-skin/applause.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b4ad955165d281a80cbe139bd3c1cd3aa86b7f0873f7f36b6e8713a245d6e0fb -size 784012 diff --git a/src/default-skin/approachcircle.png b/src/default-skin/approachcircle.png deleted file mode 100644 index 33c9e493..00000000 --- a/src/default-skin/approachcircle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5ccc50bb539322da3b6274764e76ed2ce05b1790a9226496dbb11ff0551d1e83 -size 8670 diff --git a/src/default-skin/approachcircle@2x.png b/src/default-skin/approachcircle@2x.png deleted file mode 100644 index a162d59b..00000000 --- a/src/default-skin/approachcircle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01fa223f26112d18e9e6679d3c5f97e419f8b927905470beddab2a913639d175 -size 18164 diff --git a/src/default-skin/back button/new/menu-back.png b/src/default-skin/back button/new/menu-back.png deleted file mode 100644 index ca2c4ed4..00000000 --- a/src/default-skin/back button/new/menu-back.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9fc774b748b2cf8c4aa061e78376dbb387516947b8492128ee34ff25f8b734e6 -size 5769 diff --git a/src/default-skin/back button/new/menu-back@2x.png b/src/default-skin/back button/new/menu-back@2x.png deleted file mode 100644 index 2d1815e1..00000000 --- a/src/default-skin/back button/new/menu-back@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cfa4a8af624787431687b2f180a6863bb9badc9180ff43f96b7ffc35d33bf3f8 -size 15248 diff --git a/src/default-skin/back button/old/menu-back.png b/src/default-skin/back button/old/menu-back.png deleted file mode 100644 index 2094c892..00000000 --- a/src/default-skin/back button/old/menu-back.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d258b93c0a664a945e2cea7021d3c53b34fc13010b45323fa3c0ab93e9639578 -size 3929 diff --git a/src/default-skin/back button/old/menu-back@2x.png b/src/default-skin/back button/old/menu-back@2x.png deleted file mode 100644 index 5337bfaa..00000000 --- a/src/default-skin/back button/old/menu-back@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4fcdb4ee44da492907be85e1440e69ff40d6ef9e72dd6998c7dff5f5c27e0c56 -size 7698 diff --git a/src/default-skin/button-left.png b/src/default-skin/button-left.png deleted file mode 100644 index 5d21831a..00000000 --- a/src/default-skin/button-left.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8d291d130f5ee02e7649da64e4fe637ff317a1702f4ae541eb37d52b81bc125f -size 3089 diff --git a/src/default-skin/button-left@2x.png b/src/default-skin/button-left@2x.png deleted file mode 100644 index 4cab4c2f..00000000 --- a/src/default-skin/button-left@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c23affa913b4229c8423c01fbfdde46a31bd9d2473977f41455154a1c5a8432f -size 3564 diff --git a/src/default-skin/button-middle.png b/src/default-skin/button-middle.png deleted file mode 100644 index f42348cf..00000000 --- a/src/default-skin/button-middle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:66458f68a537753b7564f9fdc60a16f7f2227924afea65864d7d7b67c32df84f -size 3282 diff --git a/src/default-skin/button-middle@2x.png b/src/default-skin/button-middle@2x.png deleted file mode 100644 index 49065745..00000000 --- a/src/default-skin/button-middle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1a746a1aabd18aaa6cb28c2272d074da704db8ba9f709c72de9dfb52617edfe5 -size 4503 diff --git a/src/default-skin/button-right.png b/src/default-skin/button-right.png deleted file mode 100644 index c1aae38c..00000000 --- a/src/default-skin/button-right.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56518c33b2689690f2f808a103bac58b43ccd02db53bb579171ce614f5903e9e -size 3167 diff --git a/src/default-skin/button-right@2x.png b/src/default-skin/button-right@2x.png deleted file mode 100644 index d12b4d00..00000000 --- a/src/default-skin/button-right@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc4dbcd505214fa530a5feb3d3e9431073a226c0af0177a606c14c8147aadb18 -size 3667 diff --git a/src/default-skin/check-off.wav b/src/default-skin/check-off.wav deleted file mode 100644 index e8f5ae91..00000000 --- a/src/default-skin/check-off.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:26d961db7951a868621112a9ae13bc3eb6e24c1cb7d274f9042642ac78cc0d30 -size 232592 diff --git a/src/default-skin/check-on.wav b/src/default-skin/check-on.wav deleted file mode 100644 index 4ccd375d..00000000 --- a/src/default-skin/check-on.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8dfd74df44d51fa434ddfe369043462a8c3aeace7c42558ab6da1932d07082f9 -size 242360 diff --git a/src/default-skin/click-close.wav b/src/default-skin/click-close.wav deleted file mode 100644 index 2f48b052..00000000 --- a/src/default-skin/click-close.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:50af92d1c66390a45555e3160ea704dea8f62db3bf1f831ad769d879af1a18bc -size 41868 diff --git a/src/default-skin/click-short-confirm.wav b/src/default-skin/click-short-confirm.wav deleted file mode 100644 index 05dfeaf7..00000000 --- a/src/default-skin/click-short-confirm.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3714fb6590729f1e175d479f27518efe490d2f4459f8c28d6830c42388b48e64 -size 102680 diff --git a/src/default-skin/click-short.wav b/src/default-skin/click-short.wav deleted file mode 100644 index 188fd834..00000000 --- a/src/default-skin/click-short.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:90a31d643d487d5b98ee65afb3650a2a0043d2d8b918cf46b50eaf1897cff55b -size 34908 diff --git a/src/default-skin/combobreak.wav b/src/default-skin/combobreak.wav deleted file mode 100644 index 2b5e0911..00000000 --- a/src/default-skin/combobreak.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:16ad3eeb9a9e6fc870211640a6a669d1d7ecb238b3bf162f139bf571593f3152 -size 187276 diff --git a/src/default-skin/comboburst.png b/src/default-skin/comboburst.png deleted file mode 100644 index ba0cb114..00000000 --- a/src/default-skin/comboburst.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8c0a4079b56160d019591b1767d3788956da9cf817c7b71f2ada239bb7dfbd58 -size 387616 diff --git a/src/default-skin/comboburst@2x.png b/src/default-skin/comboburst@2x.png deleted file mode 100644 index ff14795d..00000000 --- a/src/default-skin/comboburst@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05b26d47cabc5965380e2c9d4abe5e88cf8d8c4d022dc3165bce4174d0554ebe -size 1194591 diff --git a/src/default-skin/count.wav b/src/default-skin/count.wav deleted file mode 100644 index 5286df2b..00000000 --- a/src/default-skin/count.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:340bbabd14837c716f0fb6fa4c1b536b47af027430ccddc638e8bf3fd1c84d76 -size 12852 diff --git a/src/default-skin/count1.png b/src/default-skin/count1.png deleted file mode 100644 index 18a003e6..00000000 --- a/src/default-skin/count1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe4ce0113d89e8f69dc1544ab3794a1671ce29c6ef60a0f5947748a969950945 -size 9414 diff --git a/src/default-skin/count1@2x.png b/src/default-skin/count1@2x.png deleted file mode 100644 index b09d936a..00000000 --- a/src/default-skin/count1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33fa9efde62f1bc2fdc487896ed0cad21ec5ea64d3dcf299842f5aaec0497f20 -size 19393 diff --git a/src/default-skin/count2.png b/src/default-skin/count2.png deleted file mode 100644 index 9f3df67e..00000000 --- a/src/default-skin/count2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:848fba7aa05122c4324bc514ff36e4a929a3e720859d86f8a87a810afabc2192 -size 17637 diff --git a/src/default-skin/count2@2x.png b/src/default-skin/count2@2x.png deleted file mode 100644 index 60f49792..00000000 --- a/src/default-skin/count2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:778c7ed16d28e30e25c2e3f67dd67969d2b0f1335f63868378849216210127d0 -size 38772 diff --git a/src/default-skin/count3.png b/src/default-skin/count3.png deleted file mode 100644 index 6f009814..00000000 --- a/src/default-skin/count3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:09554a2ed2a170510d6854b2f144a1ebef38769bf76e2737c90d4ef0b937676c -size 20241 diff --git a/src/default-skin/count3@2x.png b/src/default-skin/count3@2x.png deleted file mode 100644 index ec7d298e..00000000 --- a/src/default-skin/count3@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6ac7d7971e193a0a6575612d232736e2be177bca92ace41bee3f296a70997da3 -size 45156 diff --git a/src/default-skin/cursor-smoke.png b/src/default-skin/cursor-smoke.png deleted file mode 100644 index 73422c8d..00000000 --- a/src/default-skin/cursor-smoke.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ecc057656b23b23ad506091c003eeea43ba1b88cea4b5f4b61b1862282440d9d -size 1934 diff --git a/src/default-skin/cursor-smoke@2x.png b/src/default-skin/cursor-smoke@2x.png deleted file mode 100644 index 43593e8c..00000000 --- a/src/default-skin/cursor-smoke@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c7a09dfcb754a12e22b8386a06024b7d8cf4ffed8a614244577147c2f40cfdad -size 4020 diff --git a/src/default-skin/cursor.png b/src/default-skin/cursor.png deleted file mode 100644 index 0bd430b1..00000000 --- a/src/default-skin/cursor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:253469922367fe8e652e2b6daf5e651403e4baceceee35079efd126dbd39f8e8 -size 11141 diff --git a/src/default-skin/cursor@2x.png b/src/default-skin/cursor@2x.png deleted file mode 100644 index 1a987b95..00000000 --- a/src/default-skin/cursor@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:71a0024ff600210559192b0ac18258cf0f53dc9ad452c02305a8eb80759d8244 -size 29019 diff --git a/src/default-skin/cursormiddle.png b/src/default-skin/cursormiddle.png deleted file mode 100644 index 13f9e55e..00000000 --- a/src/default-skin/cursormiddle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f9d1a3c0427593ce306deba9a30b9e68d07c170f9c21cc6bfae14a44258d459b -size 4162 diff --git a/src/default-skin/cursormiddle@2x.png b/src/default-skin/cursormiddle@2x.png deleted file mode 100644 index b6e42977..00000000 --- a/src/default-skin/cursormiddle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:506643d53761233d56ab88a8088e19ccb8b089fc452a250906df06a91fa732f5 -size 7285 diff --git a/src/default-skin/cursortrail.png b/src/default-skin/cursortrail.png deleted file mode 100644 index 7037d163..00000000 --- a/src/default-skin/cursortrail.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3b966d229eb0ddd7798fa420e252937b2b51bbbb7da5a7558a15d28aa809e65 -size 2944 diff --git a/src/default-skin/cursortrail@2x.png b/src/default-skin/cursortrail@2x.png deleted file mode 100644 index 75a5c757..00000000 --- a/src/default-skin/cursortrail@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b230a3e0b411e43e24da1ac8a76eb05619718aaddfbdeeba934a9343b2f8b63d -size 3442 diff --git a/src/default-skin/drum-hitclap.wav b/src/default-skin/drum-hitclap.wav deleted file mode 100644 index cff9adce..00000000 --- a/src/default-skin/drum-hitclap.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a0b71977c71b72c05f1c570100ecb41fa93d93f77e0ae9ce30853421b765410d -size 115528 diff --git a/src/default-skin/drum-hitfinish.wav b/src/default-skin/drum-hitfinish.wav deleted file mode 100644 index d483e396..00000000 --- a/src/default-skin/drum-hitfinish.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d03a9204720519dd6b2efd3607ae2858f6ca157ebee00ae8a99e3911d12fa7ab -size 115100 diff --git a/src/default-skin/drum-hitnormal.wav b/src/default-skin/drum-hitnormal.wav deleted file mode 100644 index d48b29e7..00000000 --- a/src/default-skin/drum-hitnormal.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7f49bacb51a0d576eea7358354656f5319caa401de75ea6bcae3fdd7c18352f8 -size 145508 diff --git a/src/default-skin/drum-hitwhistle.wav b/src/default-skin/drum-hitwhistle.wav deleted file mode 100644 index 3b351a17..00000000 --- a/src/default-skin/drum-hitwhistle.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1c043dff72484d79a9b3bce3c6c1be7a193219dbf2626bc3350a246dffc9b54 -size 70492 diff --git a/src/default-skin/drum-sliderslide.wav b/src/default-skin/drum-sliderslide.wav deleted file mode 100644 index 374a39d5..00000000 --- a/src/default-skin/drum-sliderslide.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ad7e2b93b06a617643acc9bdb83ec64a1ec200fa742acf4f9ebcf1b339d04b64 -size 103760 diff --git a/src/default-skin/drum-slidertick.wav b/src/default-skin/drum-slidertick.wav deleted file mode 100644 index 2492cf44..00000000 --- a/src/default-skin/drum-slidertick.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:51ec06c0d71e5a4a022ff9dfad84affec6005d62eec5ec8764380698413d47ab -size 68364 diff --git a/src/default-skin/failsound.mp3 b/src/default-skin/failsound.mp3 deleted file mode 100644 index b193ca6c..00000000 --- a/src/default-skin/failsound.mp3 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:413c0c25941455ac67a6f0641536726fbe581dc1c5aa293dfe2415d273ab7a65 -size 46287 diff --git a/src/default-skin/followpoint.png b/src/default-skin/followpoint.png deleted file mode 100644 index 54dc8fff..00000000 --- a/src/default-skin/followpoint.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:04dcb50bf505755c18a8e465705e3c7f4299a0d5dab015323a0c1033031b90de -size 3386 diff --git a/src/default-skin/followpoint@2x.png b/src/default-skin/followpoint@2x.png deleted file mode 100644 index 403e95ac..00000000 --- a/src/default-skin/followpoint@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe42696e15ead9fbb13c122d780b2a6ef62a428479f44827efba10f6e5d6fc89 -size 4452 diff --git a/src/default-skin/fruit-apple-overlay.png b/src/default-skin/fruit-apple-overlay.png deleted file mode 100644 index f16761a7..00000000 --- a/src/default-skin/fruit-apple-overlay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:35ef20600e8b5e41b240c58fd939ba991809dc098f624b4dfe02daf842dfbbe2 -size 7126 diff --git a/src/default-skin/fruit-apple-overlay@2x.png b/src/default-skin/fruit-apple-overlay@2x.png deleted file mode 100644 index e676cbe0..00000000 --- a/src/default-skin/fruit-apple-overlay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f0ef3321ce2a3e39178f72032e468500b0679fc888088d74690a008395648d4e -size 23543 diff --git a/src/default-skin/fruit-apple.png b/src/default-skin/fruit-apple.png deleted file mode 100644 index 13cfb099..00000000 --- a/src/default-skin/fruit-apple.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f08b7b7fedec221e05123dae19fac49eeb93444e070ba2c967a3793771eda9a4 -size 8707 diff --git a/src/default-skin/fruit-apple@2x.png b/src/default-skin/fruit-apple@2x.png deleted file mode 100644 index 8325bc4c..00000000 --- a/src/default-skin/fruit-apple@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:731666429b298bbf9412fee2a655a74ce1fc1b8fc3d66613358d26027cd3680f -size 52619 diff --git a/src/default-skin/fruit-bananas-overlay.png b/src/default-skin/fruit-bananas-overlay.png deleted file mode 100644 index 810a7c5b..00000000 --- a/src/default-skin/fruit-bananas-overlay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a7334a22686192eb8632d2fe72ebd7757b0e1527fcfa10c106ac3f42b50bdde3 -size 7823 diff --git a/src/default-skin/fruit-bananas-overlay@2x.png b/src/default-skin/fruit-bananas-overlay@2x.png deleted file mode 100644 index 279a5a30..00000000 --- a/src/default-skin/fruit-bananas-overlay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:38ecacb7880279db7223b65ade7124af06280b51a43e5052ff1205b522bed7cc -size 32987 diff --git a/src/default-skin/fruit-bananas.png b/src/default-skin/fruit-bananas.png deleted file mode 100644 index 259689b9..00000000 --- a/src/default-skin/fruit-bananas.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:313a5ec12b6b446a7f5e2b524e10f147bcbd2ee84ca5a0b14caaa24fbdfe6168 -size 14274 diff --git a/src/default-skin/fruit-bananas@2x.png b/src/default-skin/fruit-bananas@2x.png deleted file mode 100644 index 4613ef00..00000000 --- a/src/default-skin/fruit-bananas@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e50952de475cf4cbf5748cf5dc7e46bcd2ccd411522212255ee8f112f9c38a85 -size 71002 diff --git a/src/default-skin/fruit-catcher-fail.png b/src/default-skin/fruit-catcher-fail.png deleted file mode 100644 index 03d1e5e1..00000000 --- a/src/default-skin/fruit-catcher-fail.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1d17135bc1d1fa11eba8fe48dc2d47d20e776b811e7b4841dba6a29521b9d79 -size 96601 diff --git a/src/default-skin/fruit-catcher-fail@2x.png b/src/default-skin/fruit-catcher-fail@2x.png deleted file mode 100644 index ba864c29..00000000 --- a/src/default-skin/fruit-catcher-fail@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f0f78c4fd64f63cfa945f2dfc2de89d591e6e7f9ed885496121690de5efef3b4 -size 224268 diff --git a/src/default-skin/fruit-catcher-idle.png b/src/default-skin/fruit-catcher-idle.png deleted file mode 100644 index 9357c792..00000000 --- a/src/default-skin/fruit-catcher-idle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:321788a9f8d31289258f52b3c499430e724ffcc03accb8a7d76a9f947cc97903 -size 97419 diff --git a/src/default-skin/fruit-catcher-idle@2x.png b/src/default-skin/fruit-catcher-idle@2x.png deleted file mode 100644 index 06ce771b..00000000 --- a/src/default-skin/fruit-catcher-idle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fc1c0b5f82dfb5130adeadd1903611c13511154576e09a6188476a78ec117d88 -size 229259 diff --git a/src/default-skin/fruit-catcher-kiai.png b/src/default-skin/fruit-catcher-kiai.png deleted file mode 100644 index fdbec706..00000000 --- a/src/default-skin/fruit-catcher-kiai.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:28994b75c7c083881009ddb556696fcdc127f6fe6c1e9b06ec097a4fd178d54d -size 97677 diff --git a/src/default-skin/fruit-catcher-kiai@2x.png b/src/default-skin/fruit-catcher-kiai@2x.png deleted file mode 100644 index 930ae2e4..00000000 --- a/src/default-skin/fruit-catcher-kiai@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d25ab25df43e72eb9bd4303584743392a693fc1c7e802d3c93eb683952bc3fa8 -size 229710 diff --git a/src/default-skin/fruit-drop.png b/src/default-skin/fruit-drop.png deleted file mode 100644 index cc0868f6..00000000 --- a/src/default-skin/fruit-drop.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6db7be980f1a7001a3557934d4142d178e0fd6ae1968269f2cc4fe959c07f7bc -size 7201 diff --git a/src/default-skin/fruit-drop@2x.png b/src/default-skin/fruit-drop@2x.png deleted file mode 100644 index 6aec7811..00000000 --- a/src/default-skin/fruit-drop@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ac2344edf3bfce45cdca37b79d9df79fbe56ed879eee188ce32e6b20ab4ac3a0 -size 43670 diff --git a/src/default-skin/fruit-grapes-overlay.png b/src/default-skin/fruit-grapes-overlay.png deleted file mode 100644 index 1340b508..00000000 --- a/src/default-skin/fruit-grapes-overlay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c70f390ec31e030afd4b3cf192d97d49500347b84a381e48b1ab046882c1cb75 -size 15497 diff --git a/src/default-skin/fruit-grapes-overlay@2x.png b/src/default-skin/fruit-grapes-overlay@2x.png deleted file mode 100644 index 89910d88..00000000 --- a/src/default-skin/fruit-grapes-overlay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ce65162629f355c4e0a131a92e87b12b1f397641e44eb1e97e0efb5a41474541 -size 48970 diff --git a/src/default-skin/fruit-grapes.png b/src/default-skin/fruit-grapes.png deleted file mode 100644 index 6d96260e..00000000 --- a/src/default-skin/fruit-grapes.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d2b1185207ead3b06d928b0cca4ae32c910bb15fb7405511ce89de76d73c75c -size 7083 diff --git a/src/default-skin/fruit-grapes@2x.png b/src/default-skin/fruit-grapes@2x.png deleted file mode 100644 index 0216d4d7..00000000 --- a/src/default-skin/fruit-grapes@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7afe86fd130818e16ab6ded12f80273237e74e87ff4ec1a1ac06a0f9880820ca -size 53649 diff --git a/src/default-skin/fruit-orange-overlay.png b/src/default-skin/fruit-orange-overlay.png deleted file mode 100644 index 7b0faff8..00000000 --- a/src/default-skin/fruit-orange-overlay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c301251dda7fc60027262f235685ddcecd0afc02d67040ab608bf0f9a8ea93b1 -size 5787 diff --git a/src/default-skin/fruit-orange-overlay@2x.png b/src/default-skin/fruit-orange-overlay@2x.png deleted file mode 100644 index 64680749..00000000 --- a/src/default-skin/fruit-orange-overlay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fff0ae9a1d26f476e39afb8b43128489d879f151a643550cf1a761c1bd537b7e -size 19328 diff --git a/src/default-skin/fruit-orange.png b/src/default-skin/fruit-orange.png deleted file mode 100644 index 83ec2638..00000000 --- a/src/default-skin/fruit-orange.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:75b65c0ff847084452321897f9b1f1686ba59abd5ca3ff6b78ce98cb22be0b9a -size 14872 diff --git a/src/default-skin/fruit-orange@2x.png b/src/default-skin/fruit-orange@2x.png deleted file mode 100644 index fc73778a..00000000 --- a/src/default-skin/fruit-orange@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f17fab48c349d90e19fde47bf4f9a833a4dea88eb27f1f5d0127b5fe7738e820 -size 78113 diff --git a/src/default-skin/fruit-pear-overlay.png b/src/default-skin/fruit-pear-overlay.png deleted file mode 100644 index 9b1f921b..00000000 --- a/src/default-skin/fruit-pear-overlay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:110adc6d633884eac13c8ff9e64e432876de8888f4257efaf8900c8d1c0673d3 -size 9857 diff --git a/src/default-skin/fruit-pear-overlay@2x.png b/src/default-skin/fruit-pear-overlay@2x.png deleted file mode 100644 index c037ced3..00000000 --- a/src/default-skin/fruit-pear-overlay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4eeca9e63c5d4cf2250f9233446c7dcef82ceb2c6a65ce6da0b3c78fd65d1f3 -size 31568 diff --git a/src/default-skin/fruit-pear.png b/src/default-skin/fruit-pear.png deleted file mode 100644 index 23d02fe6..00000000 --- a/src/default-skin/fruit-pear.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c1e8eccf175c277c731443376e25c840a26971a7ebc232fd09f7c0bf54a3180 -size 8615 diff --git a/src/default-skin/fruit-pear@2x.png b/src/default-skin/fruit-pear@2x.png deleted file mode 100644 index 0d625638..00000000 --- a/src/default-skin/fruit-pear@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b7d988051743c03104c10c167b019df887405390b94a2af662fe237c1ad1b337 -size 42798 diff --git a/src/default-skin/fruit-ryuuta.png b/src/default-skin/fruit-ryuuta.png deleted file mode 100644 index 7fcf013f..00000000 --- a/src/default-skin/fruit-ryuuta.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5e6f64241c171b244e15be25266cdde0c3197d8f300621792f14d9e4f0a1b8da -size 18089 diff --git a/src/default-skin/go.png b/src/default-skin/go.png deleted file mode 100644 index b23f50d4..00000000 --- a/src/default-skin/go.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1fca24862d95106a29baeebdfac8892ba468d9b14d0a160945e84c3a76c4cf63 -size 33410 diff --git a/src/default-skin/go@2x.png b/src/default-skin/go@2x.png deleted file mode 100644 index e5b575c2..00000000 --- a/src/default-skin/go@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef0ebd81f381942284499a598432dc69d5993e9ac06ff4c679c4199b707d1701 -size 78734 diff --git a/src/default-skin/gos.wav b/src/default-skin/gos.wav deleted file mode 100644 index 5286df2b..00000000 --- a/src/default-skin/gos.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:340bbabd14837c716f0fb6fa4c1b536b47af027430ccddc638e8bf3fd1c84d76 -size 12852 diff --git a/src/default-skin/heartbeat.wav b/src/default-skin/heartbeat.wav deleted file mode 100644 index 620edf13..00000000 --- a/src/default-skin/heartbeat.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:370c2f6af11a1ddea9bf2c60003c2db22c4fc83440179f244588dbaeb3f6be04 -size 95078 diff --git a/src/default-skin/hit0.png b/src/default-skin/hit0.png deleted file mode 100644 index 9499d387..00000000 --- a/src/default-skin/hit0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b7e8c758e55dd28dcc6d26e328d3f6e7de966740061a703f302f8b2c59153261 -size 7949 diff --git a/src/default-skin/hit0@2x.png b/src/default-skin/hit0@2x.png deleted file mode 100644 index c4c4853c..00000000 --- a/src/default-skin/hit0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a80615f717e2b58e65ecacb0bf8a14204417542ca1b5cf2d86c978a2dd813640 -size 16112 diff --git a/src/default-skin/hit100.png b/src/default-skin/hit100.png deleted file mode 100644 index 691a7290..00000000 --- a/src/default-skin/hit100.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2811341376f9fec711b118b53bc5cba6df0cf85bb2162f47f64ec18b4ae8d8aa -size 12698 diff --git a/src/default-skin/hit100@2x.png b/src/default-skin/hit100@2x.png deleted file mode 100644 index 307ce74a..00000000 --- a/src/default-skin/hit100@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:010dc71c8c3508e191cb6d89da4624bd7005e0a83adda007760baf2444783354 -size 31228 diff --git a/src/default-skin/hit100k.png b/src/default-skin/hit100k.png deleted file mode 100644 index 40423b23..00000000 --- a/src/default-skin/hit100k.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e157f418ee56e722ad3989a116dde5c8fa281d46abf2a4dbe2b8eb0a19bafe47 -size 9181 diff --git a/src/default-skin/hit100k@2x.png b/src/default-skin/hit100k@2x.png deleted file mode 100644 index b62cb449..00000000 --- a/src/default-skin/hit100k@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fa67b1888be5427a68f266317b53703cda849ccca6ce858c5556716c97e72816 -size 21318 diff --git a/src/default-skin/hit300.png b/src/default-skin/hit300.png deleted file mode 100644 index f0596fbd..00000000 --- a/src/default-skin/hit300.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c3954356d4b5a00e28eca2e69e7ac3e3dff33ed9c68506791a9865cdd016dc7 -size 14534 diff --git a/src/default-skin/hit300@2x.png b/src/default-skin/hit300@2x.png deleted file mode 100644 index 57d9f0c1..00000000 --- a/src/default-skin/hit300@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d3432fce23885a0332057e885e81130c01faa6d0633d08310b37594d91fcb5c -size 36873 diff --git a/src/default-skin/hit300g@2x.png b/src/default-skin/hit300g@2x.png deleted file mode 100644 index bc564f29..00000000 --- a/src/default-skin/hit300g@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39e8e94b8c3183661a7e4d3d29c3f591f5691f26665f1a9ba2182203c925d46a -size 39840 diff --git a/src/default-skin/hit300k@2x.png b/src/default-skin/hit300k@2x.png deleted file mode 100644 index 0ce80c22..00000000 --- a/src/default-skin/hit300k@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e8cdfb50b0ad6bd0a906470c3626d1386d11b4d5319e4cdd64728e90b0eb96eb -size 29098 diff --git a/src/default-skin/hit50.png b/src/default-skin/hit50.png deleted file mode 100644 index f385df0b..00000000 --- a/src/default-skin/hit50.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:57ef6a735e86f53032dceaa860f44911cbb1bad913a9dd33d29a559099e53cf9 -size 10740 diff --git a/src/default-skin/hit50@2x.png b/src/default-skin/hit50@2x.png deleted file mode 100644 index 7692d92c..00000000 --- a/src/default-skin/hit50@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bacecf48fb00821e0ff1ad0a2d59f7d8b513002b51f68b88ba7fb7757f57a23b -size 26015 diff --git a/src/default-skin/hitcircle.png b/src/default-skin/hitcircle.png deleted file mode 100644 index df9eea61..00000000 --- a/src/default-skin/hitcircle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:af5de5dd86cfb1932ba503f32294882655181adaa31bdc7d10def5c565abefee -size 5097 diff --git a/src/default-skin/hitcircle@2x.png b/src/default-skin/hitcircle@2x.png deleted file mode 100644 index b1f9dbef..00000000 --- a/src/default-skin/hitcircle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:631c396b9864f52b5408fef2ff4bcd2184fc5cbe35268925462e281ee0677fd1 -size 7768 diff --git a/src/default-skin/hitcircleoverlay.png b/src/default-skin/hitcircleoverlay.png deleted file mode 100644 index f92276df..00000000 --- a/src/default-skin/hitcircleoverlay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5d30eb184b268c9f4ab5df9a481ca8787176e7094c474baf5888e3a8316d7f6f -size 17355 diff --git a/src/default-skin/hitcircleoverlay@2x.png b/src/default-skin/hitcircleoverlay@2x.png deleted file mode 100644 index f321ef27..00000000 --- a/src/default-skin/hitcircleoverlay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fca79ba624c49326e484496adee9c4d2136754083b64a7599188a79cad16355d -size 45901 diff --git a/src/default-skin/hitcircleselect.png b/src/default-skin/hitcircleselect.png deleted file mode 100644 index 686aba27..00000000 --- a/src/default-skin/hitcircleselect.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:61058f70c652ba88fe014a5917b3f95245f69225dc70df5ef31dc4ad68af3fba -size 15375 diff --git a/src/default-skin/hitcircleselect@2x.png b/src/default-skin/hitcircleselect@2x.png deleted file mode 100644 index e0719a30..00000000 --- a/src/default-skin/hitcircleselect@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f4f3d15a39a9f13c6eb36b7c4015389c2e77528b312cd5f60aadf55252c3494a -size 36781 diff --git a/src/default-skin/inputoverlay-background.png b/src/default-skin/inputoverlay-background.png deleted file mode 100644 index ce33f46e..00000000 --- a/src/default-skin/inputoverlay-background.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e102fae6c1bfb7866c8e92c838bb1e3c58af4688e5bbe7ab0113eac20f35f424 -size 3721 diff --git a/src/default-skin/inputoverlay-background@2x.png b/src/default-skin/inputoverlay-background@2x.png deleted file mode 100644 index bec8e60f..00000000 --- a/src/default-skin/inputoverlay-background@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3d6f954609f78852ad8c06ee0c65faea8011ab5ac22f422d3b752730ffeb2e1 -size 5513 diff --git a/src/default-skin/inputoverlay-key.png b/src/default-skin/inputoverlay-key.png deleted file mode 100644 index f159c6d8..00000000 --- a/src/default-skin/inputoverlay-key.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3c04113053b109bd3ad17b6f8d68bd13ddf054cdcb8a08dff857245eee197e23 -size 3350 diff --git a/src/default-skin/inputoverlay-key@2x.png b/src/default-skin/inputoverlay-key@2x.png deleted file mode 100644 index e9230888..00000000 --- a/src/default-skin/inputoverlay-key@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4492d5b1cfedcc0e12646ac1ee1c860201bf64be39f8595c0febd8cbdb6bc5b9 -size 4421 diff --git a/src/default-skin/key-confirm.wav b/src/default-skin/key-confirm.wav deleted file mode 100644 index c75f264e..00000000 --- a/src/default-skin/key-confirm.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:43345da3721d93bd93188978fe0f446c75bd6f299f691fcf67f51d6b2df4e46b -size 16072 diff --git a/src/default-skin/key-delete.wav b/src/default-skin/key-delete.wav deleted file mode 100644 index 9b4d6276..00000000 --- a/src/default-skin/key-delete.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:174e025cd9a26217c630f14b965190f658fa3ab29312ffe1354e548ce9fbb74b -size 14748 diff --git a/src/default-skin/key-movement.wav b/src/default-skin/key-movement.wav deleted file mode 100644 index cc7cab58..00000000 --- a/src/default-skin/key-movement.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b4ab104d945cbf7dc5371ea2c190c65dfc1f2c31231969b71005f1644e84f6e -size 12548 diff --git a/src/default-skin/key-press-1.wav b/src/default-skin/key-press-1.wav deleted file mode 100644 index 9b12be1e..00000000 --- a/src/default-skin/key-press-1.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c36db08b6f44fed37f31e8b53e516524acfe5c95c5d190a9cb3eec30fb448ba9 -size 11372 diff --git a/src/default-skin/key-press-2.wav b/src/default-skin/key-press-2.wav deleted file mode 100644 index 827b442a..00000000 --- a/src/default-skin/key-press-2.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9f2f4c6358da7c34699db1d983e6179ab0de0c721b1fd40f4a5a473168346a5c -size 11516 diff --git a/src/default-skin/key-press-3.wav b/src/default-skin/key-press-3.wav deleted file mode 100644 index afea346d..00000000 --- a/src/default-skin/key-press-3.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:be55634962c92901af4dfb932588cff1f6f6d01a25f6819e15ba2756f911b831 -size 12252 diff --git a/src/default-skin/key-press-4.wav b/src/default-skin/key-press-4.wav deleted file mode 100644 index 48a02fbe..00000000 --- a/src/default-skin/key-press-4.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2eff5f42b2bb8de77567367b5a9b305ce1b11076029fea9465633a8ed5f25af2 -size 10784 diff --git a/src/default-skin/lighting.png b/src/default-skin/lighting.png deleted file mode 100644 index 7770d4c9..00000000 --- a/src/default-skin/lighting.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d7ac5c86c0503b70661f507872f2be24eb7312c76ab28fd5146d7dd58ec76a79 -size 39980 diff --git a/src/default-skin/lighting@2x.png b/src/default-skin/lighting@2x.png deleted file mode 100644 index 9ea79080..00000000 --- a/src/default-skin/lighting@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2bc16ad2eae1502c28a1021d9cd8d938e0b691d7f85f4bf7ba78ed48fbc8c314 -size 161981 diff --git a/src/default-skin/lightingL-0.png b/src/default-skin/lightingL-0.png deleted file mode 100644 index a93e250b..00000000 --- a/src/default-skin/lightingL-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2b8202ddf982ee0f61034914f71c619ae0740591162ddadd5f24abf6dff580c7 -size 14549 diff --git a/src/default-skin/lightingL-0@2x.png b/src/default-skin/lightingL-0@2x.png deleted file mode 100644 index b886d1e0..00000000 --- a/src/default-skin/lightingL-0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:db12c2bdfafb690452881a040075524cc07b45ba05f182c798e7384998c8ac73 -size 54523 diff --git a/src/default-skin/lightingL-1.png b/src/default-skin/lightingL-1.png deleted file mode 100644 index b77165b9..00000000 --- a/src/default-skin/lightingL-1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dfbb3b182a4c1437fc5481effbe9442fcaf5540bac72f6b38befab74dfd94c53 -size 12531 diff --git a/src/default-skin/lightingL-1@2x.png b/src/default-skin/lightingL-1@2x.png deleted file mode 100644 index 54abc484..00000000 --- a/src/default-skin/lightingL-1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9734de46fbca12971156e652296e7bdc920644a63bfa2469a59fbc721bea37b0 -size 48921 diff --git a/src/default-skin/lightingL-2.png b/src/default-skin/lightingL-2.png deleted file mode 100644 index a93e250b..00000000 --- a/src/default-skin/lightingL-2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2b8202ddf982ee0f61034914f71c619ae0740591162ddadd5f24abf6dff580c7 -size 14549 diff --git a/src/default-skin/lightingL-2@2x.png b/src/default-skin/lightingL-2@2x.png deleted file mode 100644 index b886d1e0..00000000 --- a/src/default-skin/lightingL-2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:db12c2bdfafb690452881a040075524cc07b45ba05f182c798e7384998c8ac73 -size 54523 diff --git a/src/default-skin/lightingL-3.png b/src/default-skin/lightingL-3.png deleted file mode 100644 index b77165b9..00000000 --- a/src/default-skin/lightingL-3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dfbb3b182a4c1437fc5481effbe9442fcaf5540bac72f6b38befab74dfd94c53 -size 12531 diff --git a/src/default-skin/lightingL-3@2x.png b/src/default-skin/lightingL-3@2x.png deleted file mode 100644 index 54abc484..00000000 --- a/src/default-skin/lightingL-3@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9734de46fbca12971156e652296e7bdc920644a63bfa2469a59fbc721bea37b0 -size 48921 diff --git a/src/default-skin/lightingL-4.png b/src/default-skin/lightingL-4.png deleted file mode 100644 index a93e250b..00000000 --- a/src/default-skin/lightingL-4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2b8202ddf982ee0f61034914f71c619ae0740591162ddadd5f24abf6dff580c7 -size 14549 diff --git a/src/default-skin/lightingL-4@2x.png b/src/default-skin/lightingL-4@2x.png deleted file mode 100644 index b886d1e0..00000000 --- a/src/default-skin/lightingL-4@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:db12c2bdfafb690452881a040075524cc07b45ba05f182c798e7384998c8ac73 -size 54523 diff --git a/src/default-skin/lightingL-5.png b/src/default-skin/lightingL-5.png deleted file mode 100644 index b77165b9..00000000 --- a/src/default-skin/lightingL-5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dfbb3b182a4c1437fc5481effbe9442fcaf5540bac72f6b38befab74dfd94c53 -size 12531 diff --git a/src/default-skin/lightingL-5@2x.png b/src/default-skin/lightingL-5@2x.png deleted file mode 100644 index 54abc484..00000000 --- a/src/default-skin/lightingL-5@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9734de46fbca12971156e652296e7bdc920644a63bfa2469a59fbc721bea37b0 -size 48921 diff --git a/src/default-skin/lightingN.png b/src/default-skin/lightingN.png deleted file mode 100644 index 6f52c5cb..00000000 --- a/src/default-skin/lightingN.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2aa1d1c4feca25c7fe8d7471fb55db34b42a355220a85f2a94f87aec0c21451c -size 26339 diff --git a/src/default-skin/lightingN@2x.png b/src/default-skin/lightingN@2x.png deleted file mode 100644 index c7d445cf..00000000 --- a/src/default-skin/lightingN@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c370c588011eba5eec3721e22174f4e0e189b9ac6110b525e29bfe7e04e14501 -size 72458 diff --git a/src/default-skin/mania-hit0.png b/src/default-skin/mania-hit0.png deleted file mode 100644 index 2c29b061..00000000 --- a/src/default-skin/mania-hit0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bc7891d1816df0346de41ab05c655d560fbcf5dddc99a2d1fc5af37847f57b28 -size 22571 diff --git a/src/default-skin/mania-hit0@2x.png b/src/default-skin/mania-hit0@2x.png deleted file mode 100644 index ffcbfa3a..00000000 --- a/src/default-skin/mania-hit0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8c88df4495241db77185317a7a36935982f3c2301710ae25b09e677636649fb3 -size 56621 diff --git a/src/default-skin/mania-hit100.png b/src/default-skin/mania-hit100.png deleted file mode 100644 index c00becf6..00000000 --- a/src/default-skin/mania-hit100.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7f792dca325c444f17bce0b10b45c1bfe69efa6d9e31920cabc6efaf5fe0acba -size 25962 diff --git a/src/default-skin/mania-hit100@2x.png b/src/default-skin/mania-hit100@2x.png deleted file mode 100644 index 4c9f3b79..00000000 --- a/src/default-skin/mania-hit100@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:09086444edc7209b8d908210127c68113608aceb59f1532b0af97a8399b5f4a2 -size 66535 diff --git a/src/default-skin/mania-hit200.png b/src/default-skin/mania-hit200.png deleted file mode 100644 index f93680ea..00000000 --- a/src/default-skin/mania-hit200.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:32c2b89dda5b641c873fc9dcd6da8cbe7dc9fa9163cc29d5c5eaa23817cb3a27 -size 30867 diff --git a/src/default-skin/mania-hit200@2x.png b/src/default-skin/mania-hit200@2x.png deleted file mode 100644 index ad9d5c98..00000000 --- a/src/default-skin/mania-hit200@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b0089a744c43d87d666ba82d2a6ce9fe686dfffe050738113c1201b15a88b613 -size 82190 diff --git a/src/default-skin/mania-hit300.png b/src/default-skin/mania-hit300.png deleted file mode 100644 index 1eb5af37..00000000 --- a/src/default-skin/mania-hit300.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe6a14866a2d900378d00e43f218ece907f9a1f2045dc387c75ded7462496560 -size 34413 diff --git a/src/default-skin/mania-hit300@2x.png b/src/default-skin/mania-hit300@2x.png deleted file mode 100644 index 09697011..00000000 --- a/src/default-skin/mania-hit300@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:58efab32386ec7e208c7e49ef13f9b270af58f162b791678da6bd30d74086611 -size 92906 diff --git a/src/default-skin/mania-hit300g-0.png b/src/default-skin/mania-hit300g-0.png deleted file mode 100644 index ebdf1e40..00000000 --- a/src/default-skin/mania-hit300g-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2723a287244d76d93e2959259a4ff135c69949a7145faa279de6771c1a0b390e -size 19967 diff --git a/src/default-skin/mania-hit300g-0@2x.png b/src/default-skin/mania-hit300g-0@2x.png deleted file mode 100644 index 90f6c12a..00000000 --- a/src/default-skin/mania-hit300g-0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d5d087f62dd2f7570d3eaae478477a45b0e9c7e34181a03fe9bff6a6cdda93ee -size 56026 diff --git a/src/default-skin/mania-hit300g-1.png b/src/default-skin/mania-hit300g-1.png deleted file mode 100644 index dc0c0691..00000000 --- a/src/default-skin/mania-hit300g-1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f2cef9826e35e756c9a975228130229c130a6fad86f491d91a8cd73daa612f8 -size 20183 diff --git a/src/default-skin/mania-hit300g-1@2x.png b/src/default-skin/mania-hit300g-1@2x.png deleted file mode 100644 index b3c64308..00000000 --- a/src/default-skin/mania-hit300g-1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9907978f58ee631c0659a707b69a656974a8a69218f5e2e36a7249cd56a5bf52 -size 57038 diff --git a/src/default-skin/mania-hit50.png b/src/default-skin/mania-hit50.png deleted file mode 100644 index 9ebf0514..00000000 --- a/src/default-skin/mania-hit50.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c9c54812d8d54ec9b8938c2b788cd5ee139987735dc896d506d33f66971cff3 -size 21871 diff --git a/src/default-skin/mania-hit50@2x.png b/src/default-skin/mania-hit50@2x.png deleted file mode 100644 index 366957e8..00000000 --- a/src/default-skin/mania-hit50@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:494b25bb1e6c2c7e55081008cdf4d5a371226bcb4eadccf338af002988315ad3 -size 57215 diff --git a/src/default-skin/mania-key1.png b/src/default-skin/mania-key1.png deleted file mode 100644 index c5c5c3a5..00000000 --- a/src/default-skin/mania-key1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:68741a8f41593f7583ed6408c8501ef4914e92334c99ed898c337a363e1bee7a -size 1630 diff --git a/src/default-skin/mania-key1@2x.png b/src/default-skin/mania-key1@2x.png deleted file mode 100644 index aeff0cd7..00000000 --- a/src/default-skin/mania-key1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:38743ef447e125b548a14411746f9f58d4b41c6c456786b17c9cfe476079babf -size 12914 diff --git a/src/default-skin/mania-key1D.png b/src/default-skin/mania-key1D.png deleted file mode 100644 index c23aed82..00000000 --- a/src/default-skin/mania-key1D.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9aa07483ef7779cddf5b74e9527458f775c2800e1c46f79f6cd3dd38af355938 -size 2254 diff --git a/src/default-skin/mania-key1D@2x.png b/src/default-skin/mania-key1D@2x.png deleted file mode 100644 index b1cd9ff5..00000000 --- a/src/default-skin/mania-key1D@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f40123f43d1778dc9b068c8370dc1a79081b07121904ae9733c0511fa5b4710a -size 10892 diff --git a/src/default-skin/mania-key2.png b/src/default-skin/mania-key2.png deleted file mode 100644 index 10e47d67..00000000 --- a/src/default-skin/mania-key2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:702fd8f42cd054bb81f5d3ff0ed2c15c600f3afb42fa1a6d17306710c12547b0 -size 1334 diff --git a/src/default-skin/mania-key2@2x.png b/src/default-skin/mania-key2@2x.png deleted file mode 100644 index d52fbc13..00000000 --- a/src/default-skin/mania-key2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:24e4d9fb8d326ed3b49f44f3e0f1b059329c292a532bc0590172934d4b124147 -size 14833 diff --git a/src/default-skin/mania-key2D.png b/src/default-skin/mania-key2D.png deleted file mode 100644 index f62f19d7..00000000 --- a/src/default-skin/mania-key2D.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ab9fe3db2d4fdf3ec93868061536d196b070f27ae628eee9cce85df698ef285 -size 2354 diff --git a/src/default-skin/mania-key2D@2x.png b/src/default-skin/mania-key2D@2x.png deleted file mode 100644 index 7f9a44dc..00000000 --- a/src/default-skin/mania-key2D@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a50a4ba46bfb646111f63b56b0de286a5a83d2418aa8c98a048fc5d73cf51ff8 -size 15572 diff --git a/src/default-skin/mania-keyS.png b/src/default-skin/mania-keyS.png deleted file mode 100644 index f543bd02..00000000 --- a/src/default-skin/mania-keyS.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4313d8b0d464504727fe8a3fb6335e89c459196cbb59cad98c962e26680d498 -size 1253 diff --git a/src/default-skin/mania-keyS@2x.png b/src/default-skin/mania-keyS@2x.png deleted file mode 100644 index bc392285..00000000 --- a/src/default-skin/mania-keyS@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:64ac07b53782e20553eb4260a4d2852d6ce51136f9a5648e9e925127898ddd4b -size 13466 diff --git a/src/default-skin/mania-keySD.png b/src/default-skin/mania-keySD.png deleted file mode 100644 index 2667848a..00000000 --- a/src/default-skin/mania-keySD.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd83161f4a6c2aca911f96aac970efdf711c08f51a34f828593a0de7d1b6250c -size 1561 diff --git a/src/default-skin/mania-keySD@2x.png b/src/default-skin/mania-keySD@2x.png deleted file mode 100644 index 7c46b217..00000000 --- a/src/default-skin/mania-keySD@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c31828208a1e505bc257ece7df5c21b12d52c10ceafd0ba0ca2f948b57ada4c -size 14494 diff --git a/src/default-skin/mania-note1.png b/src/default-skin/mania-note1.png deleted file mode 100644 index ae7e5337..00000000 --- a/src/default-skin/mania-note1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:671d9240dba8dff222dcbc2056e3eaec12e9661c67331e67bca16f1c9a496821 -size 5613 diff --git a/src/default-skin/mania-note1@2x.png b/src/default-skin/mania-note1@2x.png deleted file mode 100644 index 807c1f6b..00000000 --- a/src/default-skin/mania-note1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dfbf9db6c5dbc531390566907f97dc5e3aab246d57441e2697b472ee21cf1f40 -size 4618 diff --git a/src/default-skin/mania-note1H.png b/src/default-skin/mania-note1H.png deleted file mode 100644 index d39212b4..00000000 --- a/src/default-skin/mania-note1H.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8754bcca557d64b6a72e9aa71e00991dc7c9d69664d99a0a8661d89f6e0deea1 -size 5662 diff --git a/src/default-skin/mania-note1H@2x.png b/src/default-skin/mania-note1H@2x.png deleted file mode 100644 index 123e66e6..00000000 --- a/src/default-skin/mania-note1H@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d46ca32246599f4df58d2191e7658d67a46dd09b6f4a5106cd3ad1b2acdd3f4d -size 4688 diff --git a/src/default-skin/mania-note1L-0.png b/src/default-skin/mania-note1L-0.png deleted file mode 100644 index 7f31d5b0..00000000 --- a/src/default-skin/mania-note1L-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8e369812c05e021d8b7290bb50782c36fa946fe09cad0255f4b32a4797cc013c -size 4044 diff --git a/src/default-skin/mania-note1L-0@2x.png b/src/default-skin/mania-note1L-0@2x.png deleted file mode 100644 index 363984db..00000000 --- a/src/default-skin/mania-note1L-0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dab756a7ee043ee2a34e6c2ff4f8a7464b1e0ed997e26e742a487fa118b3509b -size 2177 diff --git a/src/default-skin/mania-note1L-1.png b/src/default-skin/mania-note1L-1.png deleted file mode 100644 index fafad476..00000000 --- a/src/default-skin/mania-note1L-1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a32763f6629c892f276f21a4b57e764aa5194f1ea2741b82338530728924d65 -size 1493 diff --git a/src/default-skin/mania-note1L-1@2x.png b/src/default-skin/mania-note1L-1@2x.png deleted file mode 100644 index 59a9ccf7..00000000 --- a/src/default-skin/mania-note1L-1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:114bddb5432ba0aa52f42661201ddc307811fce60ba2edf0a00e0d2b7dce5994 -size 2027 diff --git a/src/default-skin/mania-note1L-2.png b/src/default-skin/mania-note1L-2.png deleted file mode 100644 index 25997095..00000000 --- a/src/default-skin/mania-note1L-2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:06e41baf38afd797e24ebcb39459787101486eacadcd7215be665844231a7843 -size 1148 diff --git a/src/default-skin/mania-note1L-2@2x.png b/src/default-skin/mania-note1L-2@2x.png deleted file mode 100644 index 4ca5af6e..00000000 --- a/src/default-skin/mania-note1L-2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7df8519052ca12ec3422e3437371016908b5a6c8be56539292001377120b5426 -size 1618 diff --git a/src/default-skin/mania-note1L-3.png b/src/default-skin/mania-note1L-3.png deleted file mode 100644 index 02f20454..00000000 --- a/src/default-skin/mania-note1L-3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f7ae9593bf93b6d94be1631896cc3b4485f5bf974b9dfb9b8949ae877a28968 -size 788 diff --git a/src/default-skin/mania-note1L-3@2x.png b/src/default-skin/mania-note1L-3@2x.png deleted file mode 100644 index c55dbd3e..00000000 --- a/src/default-skin/mania-note1L-3@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4c33f00146fb96927d8cd2c4ce265ff968091c8374be980fd843afac9ebd10e -size 1142 diff --git a/src/default-skin/mania-note1L-4.png b/src/default-skin/mania-note1L-4.png deleted file mode 100644 index 25997095..00000000 --- a/src/default-skin/mania-note1L-4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:06e41baf38afd797e24ebcb39459787101486eacadcd7215be665844231a7843 -size 1148 diff --git a/src/default-skin/mania-note1L-4@2x.png b/src/default-skin/mania-note1L-4@2x.png deleted file mode 100644 index 4ca5af6e..00000000 --- a/src/default-skin/mania-note1L-4@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7df8519052ca12ec3422e3437371016908b5a6c8be56539292001377120b5426 -size 1618 diff --git a/src/default-skin/mania-note1L-5.png b/src/default-skin/mania-note1L-5.png deleted file mode 100644 index fafad476..00000000 --- a/src/default-skin/mania-note1L-5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a32763f6629c892f276f21a4b57e764aa5194f1ea2741b82338530728924d65 -size 1493 diff --git a/src/default-skin/mania-note1L-5@2x.png b/src/default-skin/mania-note1L-5@2x.png deleted file mode 100644 index 59a9ccf7..00000000 --- a/src/default-skin/mania-note1L-5@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:114bddb5432ba0aa52f42661201ddc307811fce60ba2edf0a00e0d2b7dce5994 -size 2027 diff --git a/src/default-skin/mania-note2.png b/src/default-skin/mania-note2.png deleted file mode 100644 index 07d089f5..00000000 --- a/src/default-skin/mania-note2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:81e9ac4a16a8badfd570a4bb3d7c3c7040f853fb29f1554045c373bc414c8bc2 -size 3049 diff --git a/src/default-skin/mania-note2@2x.png b/src/default-skin/mania-note2@2x.png deleted file mode 100644 index 7c72ab70..00000000 --- a/src/default-skin/mania-note2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:639b116b28d289fb80891de41c750cf42ebed87074d0c97252699d37610f27ef -size 5294 diff --git a/src/default-skin/mania-note2H.png b/src/default-skin/mania-note2H.png deleted file mode 100644 index 07d089f5..00000000 --- a/src/default-skin/mania-note2H.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:81e9ac4a16a8badfd570a4bb3d7c3c7040f853fb29f1554045c373bc414c8bc2 -size 3049 diff --git a/src/default-skin/mania-note2H@2x.png b/src/default-skin/mania-note2H@2x.png deleted file mode 100644 index 7c72ab70..00000000 --- a/src/default-skin/mania-note2H@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:639b116b28d289fb80891de41c750cf42ebed87074d0c97252699d37610f27ef -size 5294 diff --git a/src/default-skin/mania-note2L-0.png b/src/default-skin/mania-note2L-0.png deleted file mode 100644 index dbc7c16b..00000000 --- a/src/default-skin/mania-note2L-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d4a553cb4fb8d4e837626a28b28c5523d45719b7a06203295b08d234f2bafee -size 2377 diff --git a/src/default-skin/mania-note2L-0@2x.png b/src/default-skin/mania-note2L-0@2x.png deleted file mode 100644 index b7095a0d..00000000 --- a/src/default-skin/mania-note2L-0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a288c5b0aba037efd126a27a0358f03dfa593cad3867bde63a65c3f39f9c2759 -size 3881 diff --git a/src/default-skin/mania-note2L-1.png b/src/default-skin/mania-note2L-1.png deleted file mode 100644 index c012f011..00000000 --- a/src/default-skin/mania-note2L-1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3edc976155e2ef518952f586faf0463685a83d3687796dc75285ca4abd7104f5 -size 1944 diff --git a/src/default-skin/mania-note2L-1@2x.png b/src/default-skin/mania-note2L-1@2x.png deleted file mode 100644 index 677ecd41..00000000 --- a/src/default-skin/mania-note2L-1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b140178c67da32553de15ec7a086bb7a3efbd15d3dd088d025ce05d315d5661 -size 2952 diff --git a/src/default-skin/mania-note2L-2.png b/src/default-skin/mania-note2L-2.png deleted file mode 100644 index d78c3df2..00000000 --- a/src/default-skin/mania-note2L-2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9cf8534bd7a824856fbea7e547eba879a057ed29bc9a0ac26f1fe0a6841246b6 -size 1392 diff --git a/src/default-skin/mania-note2L-2@2x.png b/src/default-skin/mania-note2L-2@2x.png deleted file mode 100644 index 2df63137..00000000 --- a/src/default-skin/mania-note2L-2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:adc7ad149c7e7be1e0939db91e620486d8e8d923e49f81066c6a44515973076c -size 2149 diff --git a/src/default-skin/mania-note2L-3.png b/src/default-skin/mania-note2L-3.png deleted file mode 100644 index d0f9d37e..00000000 --- a/src/default-skin/mania-note2L-3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:151c42aba904d28b76ecdf2d6e8d730409335a5e34ade63e91f2aade29128b6b -size 776 diff --git a/src/default-skin/mania-note2L-3@2x.png b/src/default-skin/mania-note2L-3@2x.png deleted file mode 100644 index 29898d98..00000000 --- a/src/default-skin/mania-note2L-3@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eabf812f4f234090990e8ad3dd717ba5842e11819db8769b0e56b2b71f348ad8 -size 1215 diff --git a/src/default-skin/mania-note2L-4.png b/src/default-skin/mania-note2L-4.png deleted file mode 100644 index d78c3df2..00000000 --- a/src/default-skin/mania-note2L-4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9cf8534bd7a824856fbea7e547eba879a057ed29bc9a0ac26f1fe0a6841246b6 -size 1392 diff --git a/src/default-skin/mania-note2L-4@2x.png b/src/default-skin/mania-note2L-4@2x.png deleted file mode 100644 index 2df63137..00000000 --- a/src/default-skin/mania-note2L-4@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:adc7ad149c7e7be1e0939db91e620486d8e8d923e49f81066c6a44515973076c -size 2149 diff --git a/src/default-skin/mania-note2L-5.png b/src/default-skin/mania-note2L-5.png deleted file mode 100644 index c012f011..00000000 --- a/src/default-skin/mania-note2L-5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3edc976155e2ef518952f586faf0463685a83d3687796dc75285ca4abd7104f5 -size 1944 diff --git a/src/default-skin/mania-note2L-5@2x.png b/src/default-skin/mania-note2L-5@2x.png deleted file mode 100644 index 677ecd41..00000000 --- a/src/default-skin/mania-note2L-5@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b140178c67da32553de15ec7a086bb7a3efbd15d3dd088d025ce05d315d5661 -size 2952 diff --git a/src/default-skin/mania-noteS.png b/src/default-skin/mania-noteS.png deleted file mode 100644 index 4431f949..00000000 --- a/src/default-skin/mania-noteS.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d0fcca33cc225e3cd8464ead0de99e3e6f1be3bb5745be9380b969774c0aaba -size 2402 diff --git a/src/default-skin/mania-noteS@2x.png b/src/default-skin/mania-noteS@2x.png deleted file mode 100644 index d2ce101b..00000000 --- a/src/default-skin/mania-noteS@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:63b89e333a51a241a718be5f5138567644bed6b9e0f385542c5cd5399e531148 -size 3963 diff --git a/src/default-skin/mania-noteSH.png b/src/default-skin/mania-noteSH.png deleted file mode 100644 index 4431f949..00000000 --- a/src/default-skin/mania-noteSH.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d0fcca33cc225e3cd8464ead0de99e3e6f1be3bb5745be9380b969774c0aaba -size 2402 diff --git a/src/default-skin/mania-noteSH@2x.png b/src/default-skin/mania-noteSH@2x.png deleted file mode 100644 index d2ce101b..00000000 --- a/src/default-skin/mania-noteSH@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:63b89e333a51a241a718be5f5138567644bed6b9e0f385542c5cd5399e531148 -size 3963 diff --git a/src/default-skin/mania-noteSL-0.png b/src/default-skin/mania-noteSL-0.png deleted file mode 100644 index bbad52c4..00000000 --- a/src/default-skin/mania-noteSL-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e110a199da4a8b67d396de00bdf8545328607f4a34095ecdc25fbd53202a049e -size 4212 diff --git a/src/default-skin/mania-noteSL-0@2x.png b/src/default-skin/mania-noteSL-0@2x.png deleted file mode 100644 index 9b321ef5..00000000 --- a/src/default-skin/mania-noteSL-0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7b5414773f4345f975bd9b35c19f40aa60e1c69649df49158f410b80e912e912 -size 2586 diff --git a/src/default-skin/mania-noteSL-1.png b/src/default-skin/mania-noteSL-1.png deleted file mode 100644 index 3fe4c1ad..00000000 --- a/src/default-skin/mania-noteSL-1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a61c9aff44801ec97de67e9fccb68128871a596afe034e7e18965e5265cc9bc8 -size 3960 diff --git a/src/default-skin/mania-noteSL-1@2x.png b/src/default-skin/mania-noteSL-1@2x.png deleted file mode 100644 index 899ea1d3..00000000 --- a/src/default-skin/mania-noteSL-1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d1fac5441aaae18313aecfb3b6cd66d8e6cdb66b1ca6f6b0153dd2dcda0f6e0 -size 2135 diff --git a/src/default-skin/mania-noteSL-2.png b/src/default-skin/mania-noteSL-2.png deleted file mode 100644 index af07d86a..00000000 --- a/src/default-skin/mania-noteSL-2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b7032f3d33c67ce87e26d68201bc1ba3132c1dfbe9069f555c6068af044fcfbf -size 3656 diff --git a/src/default-skin/mania-noteSL-2@2x.png b/src/default-skin/mania-noteSL-2@2x.png deleted file mode 100644 index 07fe9a60..00000000 --- a/src/default-skin/mania-noteSL-2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e9eba56627ac2b36edafc5282f50c70ff76a4438622aa1bcb69fc0fb2a3ca15d -size 1652 diff --git a/src/default-skin/mania-noteSL-3.png b/src/default-skin/mania-noteSL-3.png deleted file mode 100644 index 59f4ac8b..00000000 --- a/src/default-skin/mania-noteSL-3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:164700849bf7f1105fae835c4e40d6cb786854fc002e86294dbf4dd5b5677a06 -size 720 diff --git a/src/default-skin/mania-noteSL-3@2x.png b/src/default-skin/mania-noteSL-3@2x.png deleted file mode 100644 index 9c5be013..00000000 --- a/src/default-skin/mania-noteSL-3@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:92bfca2be1509807217ae3bc6a3fdc664d94663de4a9953b79d94bac244117ba -size 1093 diff --git a/src/default-skin/mania-noteSL-4.png b/src/default-skin/mania-noteSL-4.png deleted file mode 100644 index 09af412f..00000000 --- a/src/default-skin/mania-noteSL-4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:46c6b17e6da6b55d247a6ffe3b6219a704f735b8f499c8395fda18fa84f139b1 -size 1128 diff --git a/src/default-skin/mania-noteSL-4@2x.png b/src/default-skin/mania-noteSL-4@2x.png deleted file mode 100644 index 07fe9a60..00000000 --- a/src/default-skin/mania-noteSL-4@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e9eba56627ac2b36edafc5282f50c70ff76a4438622aa1bcb69fc0fb2a3ca15d -size 1652 diff --git a/src/default-skin/mania-noteSL-5.png b/src/default-skin/mania-noteSL-5.png deleted file mode 100644 index 959fee97..00000000 --- a/src/default-skin/mania-noteSL-5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f74ae03941d8bba85f874f50db5f3d38d62d4c953ecae86829b96ff4ea34359e -size 1461 diff --git a/src/default-skin/mania-noteSL-5@2x.png b/src/default-skin/mania-noteSL-5@2x.png deleted file mode 100644 index 899ea1d3..00000000 --- a/src/default-skin/mania-noteSL-5@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d1fac5441aaae18313aecfb3b6cd66d8e6cdb66b1ca6f6b0153dd2dcda0f6e0 -size 2135 diff --git a/src/default-skin/mania-stage-hint.png b/src/default-skin/mania-stage-hint.png deleted file mode 100644 index d9038e09..00000000 --- a/src/default-skin/mania-stage-hint.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:65cdcabe8bdc27275aa924787061707aee6080386c95baaf8153095cb2d68fbe -size 1154 diff --git a/src/default-skin/mania-stage-hint@2x.png b/src/default-skin/mania-stage-hint@2x.png deleted file mode 100644 index 5507bf51..00000000 --- a/src/default-skin/mania-stage-hint@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f2a9c713280b0367ff23880cfe16b469844e8a7522406c16fd76148e232c1d24 -size 493 diff --git a/src/default-skin/mania-stage-left.png b/src/default-skin/mania-stage-left.png deleted file mode 100644 index ac56cb9b..00000000 --- a/src/default-skin/mania-stage-left.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:72cf95dd855ec5c716fb61f840548b6b80cd4bbf96b11a34687ee81f96d86143 -size 1568 diff --git a/src/default-skin/mania-stage-left@2x.png b/src/default-skin/mania-stage-left@2x.png deleted file mode 100644 index b701b593..00000000 --- a/src/default-skin/mania-stage-left@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fbea1fc71466b89c56b0a74062020b72433d2f70d857bda4da9cf969fd633a08 -size 294 diff --git a/src/default-skin/mania-stage-light.png b/src/default-skin/mania-stage-light.png deleted file mode 100644 index ce686745..00000000 --- a/src/default-skin/mania-stage-light.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c714e04b5942220a963331abe6a2cdd4304752ade09b309503bfb9c2d94989a9 -size 495 diff --git a/src/default-skin/mania-stage-light@2x.png b/src/default-skin/mania-stage-light@2x.png deleted file mode 100644 index 11cb0023..00000000 --- a/src/default-skin/mania-stage-light@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a3f369e3523cde4b7cc8b4b64158c95f062bed76390d8859757f8d1be22e0eb5 -size 2284 diff --git a/src/default-skin/mania-stage-right.png b/src/default-skin/mania-stage-right.png deleted file mode 100644 index 84b8f67c..00000000 --- a/src/default-skin/mania-stage-right.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2839b473fe1f87be67b39f51def07bcf2398caf2c04667a73e6f604c1a5f259f -size 1333 diff --git a/src/default-skin/mania-stage-right@2x.png b/src/default-skin/mania-stage-right@2x.png deleted file mode 100644 index 3e5a23f1..00000000 --- a/src/default-skin/mania-stage-right@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0a5df600bc1c85bbbd117750cc61e24a78bb77016e9b7c66229efb501d40b0c -size 294 diff --git a/src/default-skin/match-confirm.wav b/src/default-skin/match-confirm.wav deleted file mode 100644 index c52e8ce2..00000000 --- a/src/default-skin/match-confirm.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d2d2f69c3c80b453f02cffa3539775c74e3ef1e88d2b4ee9c14eed2850d31f50 -size 81460 diff --git a/src/default-skin/match-join.wav b/src/default-skin/match-join.wav deleted file mode 100644 index 647c251e..00000000 --- a/src/default-skin/match-join.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bf85720b799198973a932003be3c8207377952f944e3b66a16d8e26db22e0ea4 -size 38664 diff --git a/src/default-skin/match-leave.wav b/src/default-skin/match-leave.wav deleted file mode 100644 index 866ed524..00000000 --- a/src/default-skin/match-leave.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9a0c6a8c0bfa46a244e3c902dd4fd70abf607439767d5c84a54042ad1e7a37d9 -size 66672 diff --git a/src/default-skin/match-notready.wav b/src/default-skin/match-notready.wav deleted file mode 100644 index f8a8d7be..00000000 --- a/src/default-skin/match-notready.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:48305baec5c53a17235e7d3118ee2b6e246a0d0349ea6c1859e627c83e886c5c -size 66656 diff --git a/src/default-skin/match-ready.wav b/src/default-skin/match-ready.wav deleted file mode 100644 index 780a9d48..00000000 --- a/src/default-skin/match-ready.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a3bc7933c185ceb37710a0e179c211c6c0f6a432b7f181610f5a58d3be5a4358 -size 52984 diff --git a/src/default-skin/match-start.wav b/src/default-skin/match-start.wav deleted file mode 100644 index c52e8ce2..00000000 --- a/src/default-skin/match-start.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d2d2f69c3c80b453f02cffa3539775c74e3ef1e88d2b4ee9c14eed2850d31f50 -size 81460 diff --git a/src/default-skin/menu-back-click.wav b/src/default-skin/menu-back-click.wav deleted file mode 100644 index 7bb5e47c..00000000 --- a/src/default-skin/menu-back-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d59cd17b8e5bf96276f3639011e5eea2ae78aa21b2bfe12e55fb549eef22fe12 -size 467116 diff --git a/src/default-skin/menu-back.png b/src/default-skin/menu-back.png deleted file mode 100644 index ca2c4ed4..00000000 --- a/src/default-skin/menu-back.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9fc774b748b2cf8c4aa061e78376dbb387516947b8492128ee34ff25f8b734e6 -size 5769 diff --git a/src/default-skin/menu-back@2x.png b/src/default-skin/menu-back@2x.png deleted file mode 100644 index 2d1815e1..00000000 --- a/src/default-skin/menu-back@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cfa4a8af624787431687b2f180a6863bb9badc9180ff43f96b7ffc35d33bf3f8 -size 15248 diff --git a/src/default-skin/menu-background.png b/src/default-skin/menu-background.png deleted file mode 100644 index 2aebdcaf..00000000 --- a/src/default-skin/menu-background.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25ef454eee750e5697a1a70873a4a58bea72f11fa8e2950f7bb234fbc6d1cbb1 -size 260671 diff --git a/src/default-skin/menu-background@2x.png b/src/default-skin/menu-background@2x.png deleted file mode 100644 index 57bfe4ff..00000000 --- a/src/default-skin/menu-background@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7e9f380c756ad3f867859b8bb8ca46e03183c23e71903b19ab16f6f1321f6aaa -size 1025549 diff --git a/src/default-skin/menu-button-background.png b/src/default-skin/menu-button-background.png deleted file mode 100644 index 6ff51bec..00000000 --- a/src/default-skin/menu-button-background.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8c2aad7208c5af9c7f5d310c6f94c5209688c3f5c86b4fccfcb0d864597e3cd7 -size 8196 diff --git a/src/default-skin/menu-button-background@2x.png b/src/default-skin/menu-button-background@2x.png deleted file mode 100644 index e1927e70..00000000 --- a/src/default-skin/menu-button-background@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7f1b42857002229247a6aabef4f55f501d80c6e780c31f7a948650f986724a99 -size 19467 diff --git a/src/default-skin/menu-charts-click.wav b/src/default-skin/menu-charts-click.wav deleted file mode 100644 index 26362fe9..00000000 --- a/src/default-skin/menu-charts-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56c9a483583812e4d492a71cd023855a0f93023c6f3c66b941b5437306151d5a -size 440856 diff --git a/src/default-skin/menu-direct-click.wav b/src/default-skin/menu-direct-click.wav deleted file mode 100644 index 26362fe9..00000000 --- a/src/default-skin/menu-direct-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56c9a483583812e4d492a71cd023855a0f93023c6f3c66b941b5437306151d5a -size 440856 diff --git a/src/default-skin/menu-exit-click.wav b/src/default-skin/menu-exit-click.wav deleted file mode 100644 index 26362fe9..00000000 --- a/src/default-skin/menu-exit-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56c9a483583812e4d492a71cd023855a0f93023c6f3c66b941b5437306151d5a -size 440856 diff --git a/src/default-skin/menu-freeplay-click.wav b/src/default-skin/menu-freeplay-click.wav deleted file mode 100644 index 1d1b609a..00000000 --- a/src/default-skin/menu-freeplay-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bba7ad226dc966904eace98864c7f6c74b1f847d0edb631e8a953d762529a9f3 -size 556294 diff --git a/src/default-skin/menu-multiplayer-click.wav b/src/default-skin/menu-multiplayer-click.wav deleted file mode 100644 index 9bde17ff..00000000 --- a/src/default-skin/menu-multiplayer-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56587cbf11479eb22fee82075ba3ffb5fe741483e09872f26b94f4757c2c86e1 -size 414674 diff --git a/src/default-skin/menu-options-click.wav b/src/default-skin/menu-options-click.wav deleted file mode 100644 index 26362fe9..00000000 --- a/src/default-skin/menu-options-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56c9a483583812e4d492a71cd023855a0f93023c6f3c66b941b5437306151d5a -size 440856 diff --git a/src/default-skin/menu-play-click.wav b/src/default-skin/menu-play-click.wav deleted file mode 100644 index 17faae63..00000000 --- a/src/default-skin/menu-play-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25032ddbed1d9fd8f972e6bc788a654c73047aaea6993bb530bcf946aa0cbcc1 -size 532082 diff --git a/src/default-skin/menuback.wav b/src/default-skin/menuback.wav deleted file mode 100644 index 7bb5e47c..00000000 --- a/src/default-skin/menuback.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d59cd17b8e5bf96276f3639011e5eea2ae78aa21b2bfe12e55fb549eef22fe12 -size 467116 diff --git a/src/default-skin/menuclick.wav b/src/default-skin/menuclick.wav deleted file mode 100644 index 837700bc..00000000 --- a/src/default-skin/menuclick.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b4b60a01b2835ce40045ff91436957419eb2b802f9811e27b43aaf1c023287f8 -size 105660 diff --git a/src/default-skin/menuhit.wav b/src/default-skin/menuhit.wav deleted file mode 100644 index 26362fe9..00000000 --- a/src/default-skin/menuhit.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56c9a483583812e4d492a71cd023855a0f93023c6f3c66b941b5437306151d5a -size 440856 diff --git a/src/default-skin/metronomelow.wav b/src/default-skin/metronomelow.wav deleted file mode 100644 index 33acfe21..00000000 --- a/src/default-skin/metronomelow.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:350eb5affc081013d038d159ba0792042e051695b92ab2be3991b5a691599f8f -size 50588 diff --git a/src/default-skin/mode-fruits-med.png b/src/default-skin/mode-fruits-med.png deleted file mode 100644 index af238534..00000000 --- a/src/default-skin/mode-fruits-med.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56e7cee26ac7931d22e97bb0ebaec6af32d2e2aa978b97be673a972e4d55bc51 -size 8438 diff --git a/src/default-skin/mode-fruits-med@2x.png b/src/default-skin/mode-fruits-med@2x.png deleted file mode 100644 index 4fff5cba..00000000 --- a/src/default-skin/mode-fruits-med@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1b34e2b5bab9e1a3445609917c21c890f4e95fb7a2febaccfb54ce54014e1928 -size 18508 diff --git a/src/default-skin/mode-fruits-small.png b/src/default-skin/mode-fruits-small.png deleted file mode 100644 index 38cf7fb4..00000000 --- a/src/default-skin/mode-fruits-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b3cb9146d0f20a5978ac0f42a068de8768d78bca9228dbbf8b84b708c870bff4 -size 3384 diff --git a/src/default-skin/mode-fruits-small@2x.png b/src/default-skin/mode-fruits-small@2x.png deleted file mode 100644 index 7e2f44dc..00000000 --- a/src/default-skin/mode-fruits-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:844bc19898701ec8bd82f1242d9ce2464193f93bdb26dc496ac23bd43d6b05f2 -size 4208 diff --git a/src/default-skin/mode-fruits.png b/src/default-skin/mode-fruits.png deleted file mode 100644 index ed316044..00000000 --- a/src/default-skin/mode-fruits.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9f7e7ba4ad6b5d23a244400639d77cc46041f6077c2fe8d6b6010d5999a8bbff -size 18079 diff --git a/src/default-skin/mode-fruits@2x.png b/src/default-skin/mode-fruits@2x.png deleted file mode 100644 index 82afd386..00000000 --- a/src/default-skin/mode-fruits@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:303f0366189e6491d1209847fb9029697e8cfa2073e12049e8c9688e3e8a7d87 -size 46422 diff --git a/src/default-skin/mode-mania-med.png b/src/default-skin/mode-mania-med.png deleted file mode 100644 index 7a14f9f9..00000000 --- a/src/default-skin/mode-mania-med.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a8e8200f1b4c142307d9584bdf61d9ce1d6602956c769e6c1c260ef9aa5ef5d -size 8730 diff --git a/src/default-skin/mode-mania-med@2x.png b/src/default-skin/mode-mania-med@2x.png deleted file mode 100644 index db103636..00000000 --- a/src/default-skin/mode-mania-med@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ef4a43548328642bf63ce73fcd8c3de26edfe749df67b6346b22b51d33441ef -size 19139 diff --git a/src/default-skin/mode-mania-small.png b/src/default-skin/mode-mania-small.png deleted file mode 100644 index 22112d29..00000000 --- a/src/default-skin/mode-mania-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ff4bd2d45ab86f87658698e57ea873d9fc4ea826e545581357c31302967038bb -size 3323 diff --git a/src/default-skin/mode-mania-small@2x.png b/src/default-skin/mode-mania-small@2x.png deleted file mode 100644 index 13422b17..00000000 --- a/src/default-skin/mode-mania-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:afd3a54a944237e0f4cd34201295d373a8258e29971957e046fe901a694f8b32 -size 4002 diff --git a/src/default-skin/mode-mania.png b/src/default-skin/mode-mania.png deleted file mode 100644 index a1e0116c..00000000 --- a/src/default-skin/mode-mania.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d037350b48b08042c9b20d444dbe452ae4e6892301d41eafb0ad6c5dec19b48 -size 18367 diff --git a/src/default-skin/mode-mania@2x.png b/src/default-skin/mode-mania@2x.png deleted file mode 100644 index 3cdfd91e..00000000 --- a/src/default-skin/mode-mania@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5d933684fed8071b8cb6e58da9ac73bce197e981ab64513e032e199c4a67c16e -size 48385 diff --git a/src/default-skin/mode-osu-med.png b/src/default-skin/mode-osu-med.png deleted file mode 100644 index 68f94092..00000000 --- a/src/default-skin/mode-osu-med.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:347ba5bb6753ded4c1f2f76af00b35d4522db1942bcd69de7f138365672bd80a -size 12138 diff --git a/src/default-skin/mode-osu-med@2x.png b/src/default-skin/mode-osu-med@2x.png deleted file mode 100644 index a1da012b..00000000 --- a/src/default-skin/mode-osu-med@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:885b3943c0935b0d6381c84bbd9b12a932b92433c041b596ebbadef9f9d4a6d3 -size 29397 diff --git a/src/default-skin/mode-osu-small.png b/src/default-skin/mode-osu-small.png deleted file mode 100644 index 71990b50..00000000 --- a/src/default-skin/mode-osu-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08b1578004220d5a3234a17fc0392fde60102d2e3fe59de9637a976ab3f94dc2 -size 3770 diff --git a/src/default-skin/mode-osu-small@2x.png b/src/default-skin/mode-osu-small@2x.png deleted file mode 100644 index b90732c5..00000000 --- a/src/default-skin/mode-osu-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5c852cca23a408b5fb64bc8a93995e054ff2d0c9eee15620cfa225477af4e796 -size 5214 diff --git a/src/default-skin/mode-osu.png b/src/default-skin/mode-osu.png deleted file mode 100644 index 72ba68f7..00000000 --- a/src/default-skin/mode-osu.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:67b7e320cc0734f8a1efe132976e2aa56c5f9b3146981921efbe2848804203bd -size 31382 diff --git a/src/default-skin/mode-osu@2x.png b/src/default-skin/mode-osu@2x.png deleted file mode 100644 index c74fb8b0..00000000 --- a/src/default-skin/mode-osu@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:074bfb402df97c8eaa3f2815d3f24a9d8eef5781dde7ce94c40bca22640abab2 -size 84800 diff --git a/src/default-skin/mode-taiko-med.png b/src/default-skin/mode-taiko-med.png deleted file mode 100644 index 7b5e3f81..00000000 --- a/src/default-skin/mode-taiko-med.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:10cbd7f212f36624c5ec9c39459cf7958c0755a1a61a908f40585923ada507ff -size 9760 diff --git a/src/default-skin/mode-taiko-med@2x.png b/src/default-skin/mode-taiko-med@2x.png deleted file mode 100644 index c529addf..00000000 --- a/src/default-skin/mode-taiko-med@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e7653ea119662e90019b4c548af6a466a1e71f591f930c0a0115d1ed9b4104a1 -size 22224 diff --git a/src/default-skin/mode-taiko-small.png b/src/default-skin/mode-taiko-small.png deleted file mode 100644 index ff667494..00000000 --- a/src/default-skin/mode-taiko-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cc2ec195abf1ca5d6514ac152c3d2dabe1aa925efe562d76801192265814695 -size 3512 diff --git a/src/default-skin/mode-taiko-small@2x.png b/src/default-skin/mode-taiko-small@2x.png deleted file mode 100644 index 968fc51d..00000000 --- a/src/default-skin/mode-taiko-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:033503d974324704412ddd853badffd83cee1aa4b7eb18c459fc402f0cacd824 -size 4601 diff --git a/src/default-skin/mode-taiko.png b/src/default-skin/mode-taiko.png deleted file mode 100644 index 156f18ef..00000000 --- a/src/default-skin/mode-taiko.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a932d788bae40f81a028ba01e36834c6d04ad4260c2a6fd388fc0fdf1c8df7ae -size 22729 diff --git a/src/default-skin/mode-taiko@2x.png b/src/default-skin/mode-taiko@2x.png deleted file mode 100644 index dd06a917..00000000 --- a/src/default-skin/mode-taiko@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd0e3a748e4f936d19e4483683420cfcbfdce24eb3f9356f97ca122d39081dcb -size 60149 diff --git a/src/default-skin/nightcore-clap.wav b/src/default-skin/nightcore-clap.wav deleted file mode 100644 index 3c96c9da..00000000 --- a/src/default-skin/nightcore-clap.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0fb5bf211acd371407f7c7710a59ff6f5bdc82f439569dae5d8b597b158c0f72 -size 303364 diff --git a/src/default-skin/nightcore-finish.wav b/src/default-skin/nightcore-finish.wav deleted file mode 100644 index e71d8b08..00000000 --- a/src/default-skin/nightcore-finish.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:950ed53537a558517e4df8f3b61768e92af7ba03177432e25545adcb6fef3a17 -size 303364 diff --git a/src/default-skin/nightcore-hat.wav b/src/default-skin/nightcore-hat.wav deleted file mode 100644 index 6b0d5882..00000000 --- a/src/default-skin/nightcore-hat.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dde42e64a294eac9438a1e2568f449a2f499d1d913128bd1224a4d70f4c5b35b -size 303364 diff --git a/src/default-skin/nightcore-kick.wav b/src/default-skin/nightcore-kick.wav deleted file mode 100644 index ba54a427..00000000 --- a/src/default-skin/nightcore-kick.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:28edb6cb632e2b62af40b0955a1e20bda58716d9918f66f77b0f8bbd618b250e -size 303364 diff --git a/src/default-skin/normal-hitclap.wav b/src/default-skin/normal-hitclap.wav deleted file mode 100644 index bdc481ec..00000000 --- a/src/default-skin/normal-hitclap.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8eff6fd6927593de7ff964480d4aeabdf2647924d3cc4c15045ebfaa83e3dfc2 -size 18368 diff --git a/src/default-skin/normal-hitnormal.wav b/src/default-skin/normal-hitnormal.wav deleted file mode 100644 index ab5ed7a3..00000000 --- a/src/default-skin/normal-hitnormal.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4ea26f94b4d0918309f0788214c79d26e412ee42bc8cb9518c661412e711c7f7 -size 201380 diff --git a/src/default-skin/normal-hitwhistle.wav b/src/default-skin/normal-hitwhistle.wav deleted file mode 100644 index 3064a4c5..00000000 --- a/src/default-skin/normal-hitwhistle.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ce3a0f97152855dd9ba9fa3a9454892956f8618c79cf8f49fc37b315fb792433 -size 213964 diff --git a/src/default-skin/particle100.png b/src/default-skin/particle100.png deleted file mode 100644 index a487eb8e..00000000 --- a/src/default-skin/particle100.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f60cb43e50c3de42b27b92883be50d1eea93b01c52be59e47541c8617c013584 -size 3298 diff --git a/src/default-skin/particle100@2x.png b/src/default-skin/particle100@2x.png deleted file mode 100644 index a2eec058..00000000 --- a/src/default-skin/particle100@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:83f9675eee58d235e65cb0030db92dafd45269e15a4d8d0939e1b14a6fe7213d -size 4075 diff --git a/src/default-skin/particle300.png b/src/default-skin/particle300.png deleted file mode 100644 index 044fb914..00000000 --- a/src/default-skin/particle300.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2379ddfd8df0cebb8c40155ad0d501c3f241682b0c4b375f541bbab7807fd6e6 -size 3399 diff --git a/src/default-skin/particle300@2x.png b/src/default-skin/particle300@2x.png deleted file mode 100644 index e81f8181..00000000 --- a/src/default-skin/particle300@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5ae9bc6162755275efe60f69a7bf95fe547b68c8b62d2ef0aaa16556cd711e5a -size 4383 diff --git a/src/default-skin/particle50.png b/src/default-skin/particle50.png deleted file mode 100644 index 81bfcf48..00000000 --- a/src/default-skin/particle50.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b1f03221515c992c9f0e1bb4ee5b79e3001fec76cf71a8136fda9cf2aefcf20 -size 3302 diff --git a/src/default-skin/particle50@2x.png b/src/default-skin/particle50@2x.png deleted file mode 100644 index 1de2d41d..00000000 --- a/src/default-skin/particle50@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25ff67300ebdaf59059f1da0fc8213e3910165e473c87b24599984a7ca675374 -size 4078 diff --git a/src/default-skin/pause-back-click.wav b/src/default-skin/pause-back-click.wav deleted file mode 100644 index 898ab033..00000000 --- a/src/default-skin/pause-back-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:04fc56d8a886890ac5659df750f88bd792544786edf44061b2c5c062c7425a81 -size 172708 diff --git a/src/default-skin/pause-back.png b/src/default-skin/pause-back.png deleted file mode 100644 index 7f0274e2..00000000 --- a/src/default-skin/pause-back.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:19f788eb70213739deb2d3d512c685b1c0cf59ed64d4a3139fa2aa605cde20ca -size 22293 diff --git a/src/default-skin/pause-back@2x.png b/src/default-skin/pause-back@2x.png deleted file mode 100644 index 29dcf0ef..00000000 --- a/src/default-skin/pause-back@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:830043a4187ba48ce3ce144dccc83072cebd8177a3949f14bb46520bbc672264 -size 60795 diff --git a/src/default-skin/pause-continue-click.wav b/src/default-skin/pause-continue-click.wav deleted file mode 100644 index a41e4884..00000000 --- a/src/default-skin/pause-continue-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f98be1defe097de169283297df6b1074e905fd714a4f5bf757655bcc443d763c -size 151700 diff --git a/src/default-skin/pause-continue.png b/src/default-skin/pause-continue.png deleted file mode 100644 index eba8933a..00000000 --- a/src/default-skin/pause-continue.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:267635889f295e30e186dfe9de2b0821c2c5d5ebc8de1b02a9f8ae2e8168b7c9 -size 16016 diff --git a/src/default-skin/pause-continue@2x.png b/src/default-skin/pause-continue@2x.png deleted file mode 100644 index 8a9e6d52..00000000 --- a/src/default-skin/pause-continue@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f0d57d9f08430bb82ead06387916c0d03cf0a80a74b7e971bcc913d3a10f2f05 -size 43585 diff --git a/src/default-skin/pause-hover.wav b/src/default-skin/pause-hover.wav deleted file mode 100644 index ed5507d2..00000000 --- a/src/default-skin/pause-hover.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d0517887b44ac54bc11eef5d96355e648dbc29b63522968dbcdc08566a12be97 -size 20660 diff --git a/src/default-skin/pause-loop.mp3 b/src/default-skin/pause-loop.mp3 deleted file mode 100644 index ca8ee3fd..00000000 --- a/src/default-skin/pause-loop.mp3 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5cbe0712f82e6d4a08aad2749b3bf4966656fa6fd126feda779cb43063d955ac -size 342299 diff --git a/src/default-skin/pause-replay.png b/src/default-skin/pause-replay.png deleted file mode 100644 index 4d3de1a5..00000000 --- a/src/default-skin/pause-replay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:708bf9d33c0188728af8674989b569b18a141ce83b44e14690df204564b541d5 -size 23383 diff --git a/src/default-skin/pause-replay@2x.png b/src/default-skin/pause-replay@2x.png deleted file mode 100644 index 6e19d878..00000000 --- a/src/default-skin/pause-replay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:acbc85e3df234bb2d848db198c6cdb9bc6193ed302ff391695889a49563f96be -size 62428 diff --git a/src/default-skin/pause-retry-click.wav b/src/default-skin/pause-retry-click.wav deleted file mode 100644 index 664b5a6f..00000000 --- a/src/default-skin/pause-retry-click.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3bedd515c95a7826f0aa9663b8f5611417b205bbc75088d7bb8f1f8f22b311df -size 300812 diff --git a/src/default-skin/pause-retry.png b/src/default-skin/pause-retry.png deleted file mode 100644 index 8e631bff..00000000 --- a/src/default-skin/pause-retry.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:202be1751a3d873c93278c1a2d5b95f975624b4d77022580dc99e52a58cdaf7b -size 15564 diff --git a/src/default-skin/pause-retry@2x.png b/src/default-skin/pause-retry@2x.png deleted file mode 100644 index f67a8863..00000000 --- a/src/default-skin/pause-retry@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b50d884b4126498154a410c9cf23c997dbc1a567d33edd63f8ed4de3cc2591f7 -size 40346 diff --git a/src/default-skin/pippidonclear0.png b/src/default-skin/pippidonclear0.png deleted file mode 100644 index 1d829147..00000000 --- a/src/default-skin/pippidonclear0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:13242c50db18cef1f7c27b01b67e450c22793037f00f90e1c27a7be0315fa8b4 -size 78038 diff --git a/src/default-skin/pippidonclear1.png b/src/default-skin/pippidonclear1.png deleted file mode 100644 index c05435ae..00000000 --- a/src/default-skin/pippidonclear1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8974977c9306b7e9936923d211c63b6d36dbd39fa9ef95954764509de2f1b64c -size 43891 diff --git a/src/default-skin/pippidonclear2.png b/src/default-skin/pippidonclear2.png deleted file mode 100644 index 2f043494..00000000 --- a/src/default-skin/pippidonclear2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d4a714a95f4fe9fed82f78ca9302f05b59c4d25c28532ae318b9ccbb77b01ba -size 78630 diff --git a/src/default-skin/pippidonclear3.png b/src/default-skin/pippidonclear3.png deleted file mode 100644 index c0439afc..00000000 --- a/src/default-skin/pippidonclear3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5d6f52335348a56b24c50f28e67c13c89ef542e7bad3fb6d2c7ad46eb21ed367 -size 38291 diff --git a/src/default-skin/pippidonclear4.png b/src/default-skin/pippidonclear4.png deleted file mode 100644 index b51a79bf..00000000 --- a/src/default-skin/pippidonclear4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9861bc6427bf118da5ef1b728020ca0f888eeec2efaf52aa7dd49eca8df54dc6 -size 76536 diff --git a/src/default-skin/pippidonclear5.png b/src/default-skin/pippidonclear5.png deleted file mode 100644 index a1c4fb52..00000000 --- a/src/default-skin/pippidonclear5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3240782dba5d449243ef72cf1060bd7718aefa9e064e478c7e101ebda1f35408 -size 82357 diff --git a/src/default-skin/pippidonclear6.png b/src/default-skin/pippidonclear6.png deleted file mode 100644 index dd8833ed..00000000 --- a/src/default-skin/pippidonclear6.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b25fcf1544c6ba4b8efeab1ebbb4c6701cce5823b3be31779f92a6e97c1e6dc6 -size 84728 diff --git a/src/default-skin/pippidonclear7.png b/src/default-skin/pippidonclear7.png deleted file mode 100644 index a1c4fb52..00000000 --- a/src/default-skin/pippidonclear7.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3240782dba5d449243ef72cf1060bd7718aefa9e064e478c7e101ebda1f35408 -size 82357 diff --git a/src/default-skin/pippidonclear8.png b/src/default-skin/pippidonclear8.png deleted file mode 100644 index b51a79bf..00000000 --- a/src/default-skin/pippidonclear8.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9861bc6427bf118da5ef1b728020ca0f888eeec2efaf52aa7dd49eca8df54dc6 -size 76536 diff --git a/src/default-skin/pippidonfail0.png b/src/default-skin/pippidonfail0.png deleted file mode 100644 index 85b639b7..00000000 --- a/src/default-skin/pippidonfail0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39248c5a65563f1393821db2d2466e87adbfcff87aa47cd5f4946d0c8dd69f67 -size 73471 diff --git a/src/default-skin/pippidonfail1.png b/src/default-skin/pippidonfail1.png deleted file mode 100644 index 5775fcab..00000000 --- a/src/default-skin/pippidonfail1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7a4dfcc1c817dbfcc316d0434fda94324bdc1cd0c95010ac13fa58c7e4ea9ceb -size 73810 diff --git a/src/default-skin/pippidonfail2.png b/src/default-skin/pippidonfail2.png deleted file mode 100644 index b426b5e4..00000000 --- a/src/default-skin/pippidonfail2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01165e2c763b8a045f520ec0cdbeed7f85c53ba6499248974d3c327013d25561 -size 78937 diff --git a/src/default-skin/pippidonidle0.png b/src/default-skin/pippidonidle0.png deleted file mode 100644 index 5d6878ef..00000000 --- a/src/default-skin/pippidonidle0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:02c563abbe5eee08a07007e6603110e60b7e412bd1ccde93186e62f6a347b45d -size 73926 diff --git a/src/default-skin/pippidonidle1.png b/src/default-skin/pippidonidle1.png deleted file mode 100644 index 56e1c77d..00000000 --- a/src/default-skin/pippidonidle1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a14cc5719fb5d127d8523af80e2726d60bd084bfd636a55a149700089be8c43 -size 64466 diff --git a/src/default-skin/pippidonkiai0.png b/src/default-skin/pippidonkiai0.png deleted file mode 100644 index 1f9edd92..00000000 --- a/src/default-skin/pippidonkiai0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a71d395f9147ea723c3a4ddd914100097bc804bde3542ffe07450d29c6b142f -size 83291 diff --git a/src/default-skin/pippidonkiai1.png b/src/default-skin/pippidonkiai1.png deleted file mode 100644 index a8788ed1..00000000 --- a/src/default-skin/pippidonkiai1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3ef0b6ea23d8a9b820b91610bd04eca7f95157aef4c54dcad4ef9bf789431ef5 -size 80549 diff --git a/src/default-skin/play-skip.png b/src/default-skin/play-skip.png deleted file mode 100644 index 5d8f5739..00000000 --- a/src/default-skin/play-skip.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a9491aa22353f813a4800788c3f785742b5d2c5903f358dbc7b3d4db9f879003 -size 15312 diff --git a/src/default-skin/play-skip@2x.png b/src/default-skin/play-skip@2x.png deleted file mode 100644 index 294da364..00000000 --- a/src/default-skin/play-skip@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05a01626b90319ea864f913d9deda7948c62aee14ee6ec6b6bc37ce0d12bfbee -size 36986 diff --git a/src/default-skin/play-unranked.png b/src/default-skin/play-unranked.png deleted file mode 100644 index ae5e445c..00000000 --- a/src/default-skin/play-unranked.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:701635e433d4602a4a322114dbd69a0788dea06ef6b4ac0f68b693287b8b80ad -size 8813 diff --git a/src/default-skin/play-unranked@2x.png b/src/default-skin/play-unranked@2x.png deleted file mode 100644 index 0a7ac46e..00000000 --- a/src/default-skin/play-unranked@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dfa587c6f94fd4905502de7616495533e36491110dbe0278af070e6dc2a7fc59 -size 17884 diff --git a/src/default-skin/play-warningarrow.png b/src/default-skin/play-warningarrow.png deleted file mode 100644 index b283dbb4..00000000 --- a/src/default-skin/play-warningarrow.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea431e80d7472309c0362adb45c7b992c08d1cd8ee225000b5179e032c56f8aa -size 19115 diff --git a/src/default-skin/play-warningarrow@2x.png b/src/default-skin/play-warningarrow@2x.png deleted file mode 100644 index 85d329eb..00000000 --- a/src/default-skin/play-warningarrow@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5566f7dd1be102ceea3f6db285df3fd1e9c9d0867b8b30cce034adf619a007d8 -size 69641 diff --git a/src/default-skin/ranking-A-small.png b/src/default-skin/ranking-A-small.png deleted file mode 100644 index 0abde79a..00000000 --- a/src/default-skin/ranking-A-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a79593248a5af436759c0ef8416855d0a6e196e91b51a87b867d0edbc3564087 -size 4793 diff --git a/src/default-skin/ranking-A-small@2x.png b/src/default-skin/ranking-A-small@2x.png deleted file mode 100644 index e2b7a2a7..00000000 --- a/src/default-skin/ranking-A-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:521d63fdc861cdb7589d4f545e910c75c33c7e47b9d19d6a5a5c0ff64415c2f8 -size 7919 diff --git a/src/default-skin/ranking-A.png b/src/default-skin/ranking-A.png deleted file mode 100644 index 53676411..00000000 --- a/src/default-skin/ranking-A.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:522022ca8069f0baf09d8def31211dd4b6921bca0b9817447b9d09cf5d592a08 -size 63126 diff --git a/src/default-skin/ranking-A@2x.png b/src/default-skin/ranking-A@2x.png deleted file mode 100644 index 37b75b1b..00000000 --- a/src/default-skin/ranking-A@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b3bf44f595dfaa2023d1ece34e6033329991b25d7e897a3d94f574c047702a4b -size 146104 diff --git a/src/default-skin/ranking-B-small.png b/src/default-skin/ranking-B-small.png deleted file mode 100644 index 2ad288a2..00000000 --- a/src/default-skin/ranking-B-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3f6c732b50a84babdc375be5fc2b13bc593232b1a51e51c58e54b366734e3c03 -size 4774 diff --git a/src/default-skin/ranking-B-small@2x.png b/src/default-skin/ranking-B-small@2x.png deleted file mode 100644 index 6c3f7570..00000000 --- a/src/default-skin/ranking-B-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d6050b0bd3a0d75bb4da44d93c6d057d6424c5cb37ad9b9b9973215bf60428a4 -size 8440 diff --git a/src/default-skin/ranking-B.png b/src/default-skin/ranking-B.png deleted file mode 100644 index e419eab8..00000000 --- a/src/default-skin/ranking-B.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:86dc067e1a67b5da996e05b2c437eafa8f7c753422a46fdf180d61fbaa3bba67 -size 64060 diff --git a/src/default-skin/ranking-B@2x.png b/src/default-skin/ranking-B@2x.png deleted file mode 100644 index ccd8baac..00000000 --- a/src/default-skin/ranking-B@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:53a92757bb628dcd8227e5ee41339689ab745e7519b4fe17ebd72c1fcc92c8ac -size 148668 diff --git a/src/default-skin/ranking-C-small.png b/src/default-skin/ranking-C-small.png deleted file mode 100644 index 780d8b21..00000000 --- a/src/default-skin/ranking-C-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b1baa0c3fe3c8a4a3e0bb787609ba2ed8efdc1245e0e046154f08f487f4c4cf9 -size 4094 diff --git a/src/default-skin/ranking-C-small@2x.png b/src/default-skin/ranking-C-small@2x.png deleted file mode 100644 index ebedfc61..00000000 --- a/src/default-skin/ranking-C-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:28486b90f2575a5a41e0de8b8da5a78364a3997f379d7ee7fe4073b90825dc54 -size 6262 diff --git a/src/default-skin/ranking-C.png b/src/default-skin/ranking-C.png deleted file mode 100644 index 05976c8c..00000000 --- a/src/default-skin/ranking-C.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6bcbd8d28a4e0c045e065285c1ca5e8c8d7a963844ad6c314fc9e38abd5d4929 -size 41907 diff --git a/src/default-skin/ranking-C@2x.png b/src/default-skin/ranking-C@2x.png deleted file mode 100644 index de6c5acc..00000000 --- a/src/default-skin/ranking-C@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:32de89f3fa810a3b462800b386c3b009a27dd90587ffa25beb2f510d59cb9ca9 -size 96475 diff --git a/src/default-skin/ranking-D-small.png b/src/default-skin/ranking-D-small.png deleted file mode 100644 index c7866374..00000000 --- a/src/default-skin/ranking-D-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3dbee7b0065fafb463e5ab825e93c8d6caf1044df68a7ca397382fd83a78cd91 -size 4564 diff --git a/src/default-skin/ranking-D-small@2x.png b/src/default-skin/ranking-D-small@2x.png deleted file mode 100644 index a2022a16..00000000 --- a/src/default-skin/ranking-D-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef11312f928286d529d8a3eab2a2e60eef086d3e9c1fd8fcb91858bbb389cd88 -size 7101 diff --git a/src/default-skin/ranking-D.png b/src/default-skin/ranking-D.png deleted file mode 100644 index 6aad97b6..00000000 --- a/src/default-skin/ranking-D.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b763404eef0563ff1c8a2eda2bfebd926ec1cde6cc9e7f49f2824b80e2684562 -size 49879 diff --git a/src/default-skin/ranking-D@2x.png b/src/default-skin/ranking-D@2x.png deleted file mode 100644 index 708d082c..00000000 --- a/src/default-skin/ranking-D@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:44ed6f16bf6444e7a3b65958cbaa3090c467f8766f8cbd01f800b8d1b0114341 -size 115531 diff --git a/src/default-skin/ranking-S-small.png b/src/default-skin/ranking-S-small.png deleted file mode 100644 index d20a7c97..00000000 --- a/src/default-skin/ranking-S-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cb3f0ae702a4e9c81101895f0b7ee619fef22f471951a3d86ab45c002e7ff222 -size 4458 diff --git a/src/default-skin/ranking-S-small@2x.png b/src/default-skin/ranking-S-small@2x.png deleted file mode 100644 index 90a917a1..00000000 --- a/src/default-skin/ranking-S-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:998c725fc420f539b8b14d622af27822db02fc0b29da92c6f70766c90bfed9a0 -size 7247 diff --git a/src/default-skin/ranking-S.png b/src/default-skin/ranking-S.png deleted file mode 100644 index 039f7bc1..00000000 --- a/src/default-skin/ranking-S.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b726d1236acc393cae2d63342a79f9e9d3bce34f3f93d999e0d1e3c7abc86983 -size 49852 diff --git a/src/default-skin/ranking-S@2x.png b/src/default-skin/ranking-S@2x.png deleted file mode 100644 index 074e691c..00000000 --- a/src/default-skin/ranking-S@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b5809d9b90a96895ae4015405fa279541a2d3eaf03fea63328413da3596b8ce -size 114684 diff --git a/src/default-skin/ranking-SH-small.png b/src/default-skin/ranking-SH-small.png deleted file mode 100644 index 54bb9984..00000000 --- a/src/default-skin/ranking-SH-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3fa8ecbfa99f10edc789b7d3fdb217e7dc67ec7588b5e5e8a4ae68646bbb45c8 -size 4225 diff --git a/src/default-skin/ranking-SH-small@2x.png b/src/default-skin/ranking-SH-small@2x.png deleted file mode 100644 index 805ee75e..00000000 --- a/src/default-skin/ranking-SH-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:99d000876fba6f50b53bf71b42dc4b211aa534e9b76e05a462cb297e9eea1a2a -size 6438 diff --git a/src/default-skin/ranking-SH.png b/src/default-skin/ranking-SH.png deleted file mode 100644 index 1bc10515..00000000 --- a/src/default-skin/ranking-SH.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:090e4ea0952bf07e845aab2cc577e3f99806b7f067569c82579f9eff832c3a46 -size 40135 diff --git a/src/default-skin/ranking-SH@2x.png b/src/default-skin/ranking-SH@2x.png deleted file mode 100644 index 80f3045c..00000000 --- a/src/default-skin/ranking-SH@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1961cf2662b820f43a3e8a9ccffd82044baf1df1aa21a3bc6a783c0565861acf -size 96863 diff --git a/src/default-skin/ranking-X-small.png b/src/default-skin/ranking-X-small.png deleted file mode 100644 index 2c8bb688..00000000 --- a/src/default-skin/ranking-X-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a49de79d28bee997e31a879fd371fec6e702280c06caf31f892409b73793af2 -size 4935 diff --git a/src/default-skin/ranking-X-small@2x.png b/src/default-skin/ranking-X-small@2x.png deleted file mode 100644 index 69ccc924..00000000 --- a/src/default-skin/ranking-X-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c29d2b86bdd834e98e283b69373625822790623a8ccf85213afa98bcb45b97be -size 8694 diff --git a/src/default-skin/ranking-X.png b/src/default-skin/ranking-X.png deleted file mode 100644 index 3dc02845..00000000 --- a/src/default-skin/ranking-X.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b7737ca405d86694e9b8488c79e28dc6bc0c4799fabf3a38ce0216e315665f9c -size 62423 diff --git a/src/default-skin/ranking-X@2x.png b/src/default-skin/ranking-X@2x.png deleted file mode 100644 index 5934017c..00000000 --- a/src/default-skin/ranking-X@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f5af6e5fd95b63fd5e8c824ed7f0bcdc8d4def739ea45b663ec21a2fb9a1d976 -size 143812 diff --git a/src/default-skin/ranking-XH-small.png b/src/default-skin/ranking-XH-small.png deleted file mode 100644 index 7eaa6937..00000000 --- a/src/default-skin/ranking-XH-small.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6ed2bba8ff0dcd6dbc089e6fcf6774ba82894380903b13c2c3a4e960a86dd9a2 -size 4665 diff --git a/src/default-skin/ranking-XH-small@2x.png b/src/default-skin/ranking-XH-small@2x.png deleted file mode 100644 index b0484fec..00000000 --- a/src/default-skin/ranking-XH-small@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fa3a228b6cf83db63902a5974165c26e4cf73dc6403228cc1c38f43300ea85d7 -size 7675 diff --git a/src/default-skin/ranking-XH.png b/src/default-skin/ranking-XH.png deleted file mode 100644 index afe95a43..00000000 --- a/src/default-skin/ranking-XH.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3307e9ff45b5b5c3e85a91f8334dc4675ca9d2c1692669d657f70aced2d1e500 -size 52366 diff --git a/src/default-skin/ranking-XH@2x.png b/src/default-skin/ranking-XH@2x.png deleted file mode 100644 index e6d77bcc..00000000 --- a/src/default-skin/ranking-XH@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ece5fe8eaf4a867e2519946ff6f003c9ec0939876df018bafedf5e3d23f35a22 -size 126879 diff --git a/src/default-skin/ranking-accuracy.png b/src/default-skin/ranking-accuracy.png deleted file mode 100644 index 407cacae..00000000 --- a/src/default-skin/ranking-accuracy.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d4973c962ace969b6395fb32d0fc05c5b64b4c1103ef79748aa027b90c9e873f -size 11859 diff --git a/src/default-skin/ranking-accuracy@2x.png b/src/default-skin/ranking-accuracy@2x.png deleted file mode 100644 index e4488c7c..00000000 --- a/src/default-skin/ranking-accuracy@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:64bcc481ce69b191ce47ef8d4cc0dffcfd69bd158c642f6eea877c119ef09e93 -size 24285 diff --git a/src/default-skin/ranking-graph.png b/src/default-skin/ranking-graph.png deleted file mode 100644 index ab7600aa..00000000 --- a/src/default-skin/ranking-graph.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:af0fdb3f8ab397dbb05945e1faa74a1f28c93d74bedf51c67693da235bdafe01 -size 10523 diff --git a/src/default-skin/ranking-graph@2x.png b/src/default-skin/ranking-graph@2x.png deleted file mode 100644 index 8209bed4..00000000 --- a/src/default-skin/ranking-graph@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c50ff58b42cf5a213e539b6db4e5850e7528df505dd3e91ef4afb4205f8201a -size 20010 diff --git a/src/default-skin/ranking-maxcombo.png b/src/default-skin/ranking-maxcombo.png deleted file mode 100644 index 458625b4..00000000 --- a/src/default-skin/ranking-maxcombo.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8c87ddb5b8fe08c14d4c1f844cde4f14bb3a413ee9bf71f53f7ff4e8e8a76b1b -size 9878 diff --git a/src/default-skin/ranking-maxcombo@2x.png b/src/default-skin/ranking-maxcombo@2x.png deleted file mode 100644 index a601f42a..00000000 --- a/src/default-skin/ranking-maxcombo@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:438166c410ac1f803fbc9070ef88d83619ce57af0d2b7fe627e3c0da952f0bda -size 20107 diff --git a/src/default-skin/ranking-panel.png b/src/default-skin/ranking-panel.png deleted file mode 100644 index 3a488499..00000000 --- a/src/default-skin/ranking-panel.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:391479467eb26ffe593ef761c67dac09d9baf86983ac3945906668e8e513e261 -size 25384 diff --git a/src/default-skin/ranking-panel@2x.png b/src/default-skin/ranking-panel@2x.png deleted file mode 100644 index 3444be36..00000000 --- a/src/default-skin/ranking-panel@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5d641ebf05bd56e85f01ac90c4d14fba6f48921c4f6b0edda4f3daf94a2cef99 -size 59381 diff --git a/src/default-skin/ranking-perfect.png b/src/default-skin/ranking-perfect.png deleted file mode 100644 index e4a76c3e..00000000 --- a/src/default-skin/ranking-perfect.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:abed78cc023541f70639e0f0cf9838463f810f03a6428b44c4163d5894a506f5 -size 55537 diff --git a/src/default-skin/ranking-perfect@2x.png b/src/default-skin/ranking-perfect@2x.png deleted file mode 100644 index cc812d6c..00000000 --- a/src/default-skin/ranking-perfect@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ebe352af17d8f48fab1f8e520d96f6cd6b2cdcc76c7615be30bc47acbe4c9b60 -size 190611 diff --git a/src/default-skin/ranking-title.png b/src/default-skin/ranking-title.png deleted file mode 100644 index 51f85e7d..00000000 --- a/src/default-skin/ranking-title.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7fa161b0db263f46fef7bac053c726073e8efec1a1200c57441be4457d138f6d -size 27253 diff --git a/src/default-skin/ranking-title@2x.png b/src/default-skin/ranking-title@2x.png deleted file mode 100644 index 035d90e3..00000000 --- a/src/default-skin/ranking-title@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:544d422753d4c41b93f2ef8720943ba1a7c56994e2951ff754c58d2f41141d10 -size 61713 diff --git a/src/default-skin/ready.png b/src/default-skin/ready.png deleted file mode 100644 index 7bfd6db8..00000000 --- a/src/default-skin/ready.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c81e38514dd104ed80c787583eb0624c8bc21e7d1bff5e7f1c864fdd5044aa7 -size 59505 diff --git a/src/default-skin/ready@2x.png b/src/default-skin/ready@2x.png deleted file mode 100644 index 73d4b305..00000000 --- a/src/default-skin/ready@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f7d7ad1c2414fc542a0719b24915218ad162d99d6fabdc457e00d0b578df1261 -size 146083 diff --git a/src/default-skin/reversearrow.png b/src/default-skin/reversearrow.png deleted file mode 100644 index 428d7e99..00000000 --- a/src/default-skin/reversearrow.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1d550b6fb8c7c060a93d839fa3b8210a05b6f4579e5d07202d267c62afbdeec -size 4638 diff --git a/src/default-skin/reversearrow@2x.png b/src/default-skin/reversearrow@2x.png deleted file mode 100644 index 94675d37..00000000 --- a/src/default-skin/reversearrow@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fcdb990f36a2aef7cf8fd9b177c7268957db0f15a5d9b616a8b183c7181387bd -size 7926 diff --git a/src/default-skin/score-0.png b/src/default-skin/score-0.png deleted file mode 100644 index 00092bd4..00000000 --- a/src/default-skin/score-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7b8fddeb6f18be49db814d09aacbc91d6fec0fd093806fb8a540c811dd00cd3f -size 4018 diff --git a/src/default-skin/score-0@2x.png b/src/default-skin/score-0@2x.png deleted file mode 100644 index c483607f..00000000 --- a/src/default-skin/score-0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:569431db91e5ab59e87705d5e8e03f6e7513237bceec7972c8ff8e3c892aafe0 -size 6010 diff --git a/src/default-skin/score-1.png b/src/default-skin/score-1.png deleted file mode 100644 index 1bd67b99..00000000 --- a/src/default-skin/score-1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:23e772dfc2d06cadbc98f9023b2670ce954b25c9bd42e598dca19eb27e805191 -size 3066 diff --git a/src/default-skin/score-1@2x.png b/src/default-skin/score-1@2x.png deleted file mode 100644 index 7fd3af3c..00000000 --- a/src/default-skin/score-1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eab6cf501b422a94078f8c2276f6aabd45515a8f1f85b834ac851163d293f68d -size 3428 diff --git a/src/default-skin/score-2.png b/src/default-skin/score-2.png deleted file mode 100644 index a9696d48..00000000 --- a/src/default-skin/score-2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3bebbd19e455f5491a53fd8e4ae10823a5e50087577433b7621f1f661880d464 -size 3978 diff --git a/src/default-skin/score-2@2x.png b/src/default-skin/score-2@2x.png deleted file mode 100644 index 3d9ce274..00000000 --- a/src/default-skin/score-2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:15c3ad2bb2edb1b3f621d36ebf2a0b67754e4623942373f66a483071d16a0c89 -size 5710 diff --git a/src/default-skin/score-3.png b/src/default-skin/score-3.png deleted file mode 100644 index 87cc4ee6..00000000 --- a/src/default-skin/score-3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cefec2227b74145b5a9db976edc5794e4817dfd07c34d18d6f05544f9b45d93f -size 4033 diff --git a/src/default-skin/score-3@2x.png b/src/default-skin/score-3@2x.png deleted file mode 100644 index 84cd299f..00000000 --- a/src/default-skin/score-3@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a85ffd9f2911eb0782cbe9f606b1819f892f68eb7c07962028a109efa19c423 -size 5918 diff --git a/src/default-skin/score-4.png b/src/default-skin/score-4.png deleted file mode 100644 index 166c0503..00000000 --- a/src/default-skin/score-4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:78d1b1b6ae7cb993d8d928a4ead022388020503a1007a0f75ffc11034133c94a -size 3684 diff --git a/src/default-skin/score-4@2x.png b/src/default-skin/score-4@2x.png deleted file mode 100644 index 64b55f3b..00000000 --- a/src/default-skin/score-4@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4fc95ebdf70b5961680a2f58ea0812479cb1aa81353aa8a9cece38f6945e5104 -size 4765 diff --git a/src/default-skin/score-5.png b/src/default-skin/score-5.png deleted file mode 100644 index 802ae7f0..00000000 --- a/src/default-skin/score-5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:00c96b46cffcecf8f698d71f2c6b55326b1ab8597f328bd058939d9c7e1d0b7d -size 3742 diff --git a/src/default-skin/score-5@2x.png b/src/default-skin/score-5@2x.png deleted file mode 100644 index bf69cd5e..00000000 --- a/src/default-skin/score-5@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4aacee6b222a35a7e082582f3b315591740b55dec39d5ef238aaa801b0e1b4e -size 5157 diff --git a/src/default-skin/score-6.png b/src/default-skin/score-6.png deleted file mode 100644 index 647e06e2..00000000 --- a/src/default-skin/score-6.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f3f61850b1d6bf155909e285c2a4b158252c3ce86ffd3cb7699838c552125ba -size 4202 diff --git a/src/default-skin/score-6@2x.png b/src/default-skin/score-6@2x.png deleted file mode 100644 index 03a08ed5..00000000 --- a/src/default-skin/score-6@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e299e56f606d3cc37d8f4f93709356cfa59e12c2e3641854f47684859b82caaa -size 6375 diff --git a/src/default-skin/score-7.png b/src/default-skin/score-7.png deleted file mode 100644 index fc661f35..00000000 --- a/src/default-skin/score-7.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c9312b2bf13fc590d1114d7818a4bbe11417c8ddcd0c50aae51c2712a11c3d92 -size 4161 diff --git a/src/default-skin/score-7@2x.png b/src/default-skin/score-7@2x.png deleted file mode 100644 index 9781bf57..00000000 --- a/src/default-skin/score-7@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8851c9cf341943c6cc912b5ad1af095a314ef8b43f9f799b62fd98fa7228895a -size 5766 diff --git a/src/default-skin/score-8.png b/src/default-skin/score-8.png deleted file mode 100644 index 41a5871f..00000000 --- a/src/default-skin/score-8.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1687b8850523778f7b95ba73144c45b6d2d1ea175d4d41749e566938b5865165 -size 4798 diff --git a/src/default-skin/score-8@2x.png b/src/default-skin/score-8@2x.png deleted file mode 100644 index 1f76facd..00000000 --- a/src/default-skin/score-8@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a63b7c77e0a651ec5204cac19550fe2043429f412aeb774c3568f2fc96a474f -size 7936 diff --git a/src/default-skin/score-9.png b/src/default-skin/score-9.png deleted file mode 100644 index 9bc8445d..00000000 --- a/src/default-skin/score-9.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c11b1721af1c80d70e0967af7b5bfe25662edae5a114b2403dd9c640ae52d0e5 -size 4183 diff --git a/src/default-skin/score-9@2x.png b/src/default-skin/score-9@2x.png deleted file mode 100644 index 8c09c77e..00000000 --- a/src/default-skin/score-9@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1230dfeb8b311113a65a146c9c14daaa1aeed917ef837b572e04fbfa16332725 -size 6229 diff --git a/src/default-skin/score-comma.png b/src/default-skin/score-comma.png deleted file mode 100644 index bb2a21c5..00000000 --- a/src/default-skin/score-comma.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:115308d23ab234ea61789ddb9bf731de67030728c7b2c3bb33a0c136e5d30258 -size 3270 diff --git a/src/default-skin/score-comma@2x.png b/src/default-skin/score-comma@2x.png deleted file mode 100644 index 4726e3e7..00000000 --- a/src/default-skin/score-comma@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ab736d9cac22fdfa62e44633f0caa1487e5184fbc6608aacb0f96f4f31e5692f -size 4121 diff --git a/src/default-skin/score-dot.png b/src/default-skin/score-dot.png deleted file mode 100644 index 707f4bb4..00000000 --- a/src/default-skin/score-dot.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208332cf3a448b9f535d2914d59f6534a41312944f88503594c4e206e8d376d5 -size 3132 diff --git a/src/default-skin/score-dot@2x.png b/src/default-skin/score-dot@2x.png deleted file mode 100644 index e013b5a4..00000000 --- a/src/default-skin/score-dot@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b2788a5635cd4e235d4631de8a7f60a53368fd6d53eb6b55b718e4d409db71c -size 3867 diff --git a/src/default-skin/score-percent.png b/src/default-skin/score-percent.png deleted file mode 100644 index a89664a7..00000000 --- a/src/default-skin/score-percent.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:80fcdc186051b8cdcb50ca8b55e3484e3e988810cf3c446655e41689242c698c -size 5609 diff --git a/src/default-skin/score-percent@2x.png b/src/default-skin/score-percent@2x.png deleted file mode 100644 index e7170b4f..00000000 --- a/src/default-skin/score-percent@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:669d38a974e7fe351d325a12281d197cda236392914d6336d121f27752b1ab5b -size 9030 diff --git a/src/default-skin/score-x.png b/src/default-skin/score-x.png deleted file mode 100644 index 7710f8a1..00000000 --- a/src/default-skin/score-x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b678b8609ab55a6ea9f7bc90222a5b094f42301999b23029cf31b759a52d9d7c -size 4389 diff --git a/src/default-skin/score-x@2x.png b/src/default-skin/score-x@2x.png deleted file mode 100644 index 211ff539..00000000 --- a/src/default-skin/score-x@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b83a9a8420ec3a577f0089d19c2089c7b98f86680cb0d4cb0b8ccbe706ebf685 -size 7191 diff --git a/src/default-skin/scorebar-bg.png b/src/default-skin/scorebar-bg.png deleted file mode 100644 index d08ff699..00000000 --- a/src/default-skin/scorebar-bg.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e00654daa07eaa8be65cd60f19e210b898323f2b460ae8dfa7736c0db9e82cfc -size 38429 diff --git a/src/default-skin/scorebar-bg@2x.png b/src/default-skin/scorebar-bg@2x.png deleted file mode 100644 index 5ed5fb2a..00000000 --- a/src/default-skin/scorebar-bg@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4aa50042178fcc74b0e5463ceced6e12ae811beefa18bd5704ee8547b3053999 -size 142785 diff --git a/src/default-skin/scorebar-colour.png b/src/default-skin/scorebar-colour.png deleted file mode 100644 index d352ce8e..00000000 --- a/src/default-skin/scorebar-colour.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a643c51e9f63de3823b7c514ee0c257dfabff03c5701f7c2c7aca08a57a42e07 -size 2999 diff --git a/src/default-skin/scorebar-colour@2x.png b/src/default-skin/scorebar-colour@2x.png deleted file mode 100644 index 5a92f8dd..00000000 --- a/src/default-skin/scorebar-colour@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d40da65e910bc7d7959e15a15322574b20bb618a755b7cb21c8d4679a5e9e645 -size 3551 diff --git a/src/default-skin/scorebar-marker.png b/src/default-skin/scorebar-marker.png deleted file mode 100644 index 2c5fe283..00000000 --- a/src/default-skin/scorebar-marker.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:119db373da317ca6b916a0a51dee222975e2f4041536c41f73234c9592bcd7e7 -size 3954 diff --git a/src/default-skin/scorebar-marker@2x.png b/src/default-skin/scorebar-marker@2x.png deleted file mode 100644 index 4d6927aa..00000000 --- a/src/default-skin/scorebar-marker@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c052a6e62ffd4833a2bc191b86bd7487db8e3e1f924251b4af667741ca0d30f -size 6959 diff --git a/src/default-skin/scoreboard-explosion-1.png b/src/default-skin/scoreboard-explosion-1.png deleted file mode 100644 index 7696e120..00000000 --- a/src/default-skin/scoreboard-explosion-1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a05cdef09c68744f6b62c051184bba853588c23ce5c7419379fb8e781918108d -size 4451 diff --git a/src/default-skin/scoreboard-explosion-1@2x.png b/src/default-skin/scoreboard-explosion-1@2x.png deleted file mode 100644 index 0d1d8099..00000000 --- a/src/default-skin/scoreboard-explosion-1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e777b0dbf6e6ed36d1649b4702e660a1b575c488c64ec2538cfc915793f948e7 -size 13218 diff --git a/src/default-skin/scoreboard-explosion-2.png b/src/default-skin/scoreboard-explosion-2.png deleted file mode 100644 index b9c32419..00000000 --- a/src/default-skin/scoreboard-explosion-2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:45130def6099e82605023d8e4321fb4ed19feb159dcfd48cf0f1c1aa1bd6442f -size 2675 diff --git a/src/default-skin/scoreboard-explosion-2@2x.png b/src/default-skin/scoreboard-explosion-2@2x.png deleted file mode 100644 index 5885cc13..00000000 --- a/src/default-skin/scoreboard-explosion-2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a422b20a671042014142327b8aab386685ec9600a5de35a9ef3a750b3d1b492e -size 7006 diff --git a/src/default-skin/section-fail.png b/src/default-skin/section-fail.png deleted file mode 100644 index d55c46ce..00000000 --- a/src/default-skin/section-fail.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:972ff9671c0ccccceb358dc91a796c3f80627770ba4b15136d71c5ccf20dfe24 -size 18738 diff --git a/src/default-skin/section-fail@2x.png b/src/default-skin/section-fail@2x.png deleted file mode 100644 index 09adb7dd..00000000 --- a/src/default-skin/section-fail@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a56f39b395349760118d7b51aff9bee1a597e1354350599fb209cc99e6e72d3a -size 40920 diff --git a/src/default-skin/section-pass.png b/src/default-skin/section-pass.png deleted file mode 100644 index ed35d471..00000000 --- a/src/default-skin/section-pass.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:639a3b876e1566fad1ded9ccaac2dbc43314c9b5c4d18c75fa022d9b93f1d91f -size 12555 diff --git a/src/default-skin/section-pass@2x.png b/src/default-skin/section-pass@2x.png deleted file mode 100644 index c7b1f4bf..00000000 --- a/src/default-skin/section-pass@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:031f3f060f3ac9decae91ddad3110e5f3e107e1c8c92c438a2ec77f639a6a3b2 -size 26976 diff --git a/src/default-skin/sectionfail.wav b/src/default-skin/sectionfail.wav deleted file mode 100644 index dfba2f29..00000000 --- a/src/default-skin/sectionfail.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:63896a95b484284e936998cc2422fc644492aa8e2157ad2c6bb3ab1b2f4fdc78 -size 228748 diff --git a/src/default-skin/sectionpass.wav b/src/default-skin/sectionpass.wav deleted file mode 100644 index 43c157f5..00000000 --- a/src/default-skin/sectionpass.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5426f58b508f5063682704d3205d671aad82fe1082536dd514057d1d3bd13cbc -size 242572 diff --git a/src/default-skin/seeya.wav b/src/default-skin/seeya.wav deleted file mode 100644 index 21db676c..00000000 --- a/src/default-skin/seeya.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:47b9b883e38b95b15e3c7389bea2aab8bc593569a95368bcb9a07125edfba3e6 -size 462824 diff --git a/src/default-skin/select-difficulty.wav b/src/default-skin/select-difficulty.wav deleted file mode 100644 index 26362fe9..00000000 --- a/src/default-skin/select-difficulty.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56c9a483583812e4d492a71cd023855a0f93023c6f3c66b941b5437306151d5a -size 440856 diff --git a/src/default-skin/select-expand.wav b/src/default-skin/select-expand.wav deleted file mode 100644 index 2ca10abc..00000000 --- a/src/default-skin/select-expand.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08180dac5d83d2af411611ff7eb3f54ee754f349560dcf532b75154d7daf0e2c -size 115756 diff --git a/src/default-skin/selection-mod-autoplay.png b/src/default-skin/selection-mod-autoplay.png deleted file mode 100644 index a328863d..00000000 --- a/src/default-skin/selection-mod-autoplay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d079d1edde3d863048f3def348f871f61fa5bb7912c3fade77175d61e767ac62 -size 4929 diff --git a/src/default-skin/selection-mod-autoplay@2x.png b/src/default-skin/selection-mod-autoplay@2x.png deleted file mode 100644 index 9daf40a2..00000000 --- a/src/default-skin/selection-mod-autoplay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:40d77f201cbb4d2fa3b7cd5c58e1946a03085782ed1113d149ac07c40814ed15 -size 10894 diff --git a/src/default-skin/selection-mod-cinema.png b/src/default-skin/selection-mod-cinema.png deleted file mode 100644 index 45990928..00000000 --- a/src/default-skin/selection-mod-cinema.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:491f014bb5fb0e65c3530d2afe963b77ccd078bd491e989639aa996ee53e9997 -size 6189 diff --git a/src/default-skin/selection-mod-cinema@2x.png b/src/default-skin/selection-mod-cinema@2x.png deleted file mode 100644 index af56589c..00000000 --- a/src/default-skin/selection-mod-cinema@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a933bbca7a960a9a43afe1d19a862811864aadc5229920b4d5e2c5a30675af8c -size 15498 diff --git a/src/default-skin/selection-mod-doubletime.png b/src/default-skin/selection-mod-doubletime.png deleted file mode 100644 index 4ab8f2e0..00000000 --- a/src/default-skin/selection-mod-doubletime.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5391663ba320aed50c0e4689bce4a029c039f16ec7d2623738289afc9c9e13e8 -size 7265 diff --git a/src/default-skin/selection-mod-doubletime@2x.png b/src/default-skin/selection-mod-doubletime@2x.png deleted file mode 100644 index 148291db..00000000 --- a/src/default-skin/selection-mod-doubletime@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d637aea3ddc94e94b371b760b83bfe860289e13d644c937249b29fbb86f87bd0 -size 17500 diff --git a/src/default-skin/selection-mod-easy.png b/src/default-skin/selection-mod-easy.png deleted file mode 100644 index 5700960e..00000000 --- a/src/default-skin/selection-mod-easy.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:448f03d30632a861cea812217bc67919f9da8c9f7761b9f5ba6a2a00621cbd90 -size 4469 diff --git a/src/default-skin/selection-mod-easy@2x.png b/src/default-skin/selection-mod-easy@2x.png deleted file mode 100644 index 182b5505..00000000 --- a/src/default-skin/selection-mod-easy@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5489691ac87783cce894d614efc8b27e8727365d863483dce412e235614d103e -size 9887 diff --git a/src/default-skin/selection-mod-fadein.png b/src/default-skin/selection-mod-fadein.png deleted file mode 100644 index bde885ac..00000000 --- a/src/default-skin/selection-mod-fadein.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:76f30473a0b8b91e5a4adbd49dc06acee4cec6c783a7dec6eb797c52dcf96769 -size 5508 diff --git a/src/default-skin/selection-mod-fadein@2x.png b/src/default-skin/selection-mod-fadein@2x.png deleted file mode 100644 index e71750a5..00000000 --- a/src/default-skin/selection-mod-fadein@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d67ccfe61d51b520ab2e7882e68accbfc0ecbb6988e3c167f5ba4663f650ce7e -size 13126 diff --git a/src/default-skin/selection-mod-flashlight.png b/src/default-skin/selection-mod-flashlight.png deleted file mode 100644 index 1d394beb..00000000 --- a/src/default-skin/selection-mod-flashlight.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:739eda34bff08a5de5b834e078b9d7ce3f14c5ecec171d58846476f3ef76059e -size 4373 diff --git a/src/default-skin/selection-mod-flashlight@2x.png b/src/default-skin/selection-mod-flashlight@2x.png deleted file mode 100644 index 6619f4da..00000000 --- a/src/default-skin/selection-mod-flashlight@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d794ea6b0bd76209482d87cbc705220614d49bf4e36331f1dc26ac88245f0e2c -size 9618 diff --git a/src/default-skin/selection-mod-halftime.png b/src/default-skin/selection-mod-halftime.png deleted file mode 100644 index 1d8d1504..00000000 --- a/src/default-skin/selection-mod-halftime.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bd905108b13e2b9cf13a7190774a90fedcd2d8e62a105b43ff986e90638b0454 -size 5010 diff --git a/src/default-skin/selection-mod-halftime@2x.png b/src/default-skin/selection-mod-halftime@2x.png deleted file mode 100644 index f95c0b17..00000000 --- a/src/default-skin/selection-mod-halftime@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:57a4ca615ea7f4369c306f942910d8763a89fbbb75e92dd4e42a813360a64ea8 -size 12205 diff --git a/src/default-skin/selection-mod-hardrock.png b/src/default-skin/selection-mod-hardrock.png deleted file mode 100644 index 48cc0fdd..00000000 --- a/src/default-skin/selection-mod-hardrock.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:42cf77e8cb70cc473bcb8fbeb67432fecc9980e677d767d847fffeab378a2089 -size 7384 diff --git a/src/default-skin/selection-mod-hardrock@2x.png b/src/default-skin/selection-mod-hardrock@2x.png deleted file mode 100644 index 06cbf986..00000000 --- a/src/default-skin/selection-mod-hardrock@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:73b233da02a491f924b614817c863081160d0f294648208fc465b40befb01373 -size 15026 diff --git a/src/default-skin/selection-mod-hidden.png b/src/default-skin/selection-mod-hidden.png deleted file mode 100644 index a16ca610..00000000 --- a/src/default-skin/selection-mod-hidden.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f175a2dd28cb99ea2b0c99048d0149ed8133cdc93444a487e0091eeb8bee836 -size 7842 diff --git a/src/default-skin/selection-mod-hidden@2x.png b/src/default-skin/selection-mod-hidden@2x.png deleted file mode 100644 index 2e8639a2..00000000 --- a/src/default-skin/selection-mod-hidden@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ad4de288acfe8d0bd5bb522b766daac074395e2ebea87a4bb7f6f29e1f32ac49 -size 19407 diff --git a/src/default-skin/selection-mod-key1.png b/src/default-skin/selection-mod-key1.png deleted file mode 100644 index a97ef56c..00000000 --- a/src/default-skin/selection-mod-key1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b409453293012c65c910802686045e03a6ba8a14b7118b69f7541a4466b52f3d -size 1907 diff --git a/src/default-skin/selection-mod-key1@2x.png b/src/default-skin/selection-mod-key1@2x.png deleted file mode 100644 index b8840562..00000000 --- a/src/default-skin/selection-mod-key1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8305a1bc8aad801c53c769078165c4975990afe98d36fb85a9d100ee27fdc7a8 -size 20684 diff --git a/src/default-skin/selection-mod-key2.png b/src/default-skin/selection-mod-key2.png deleted file mode 100644 index b1768616..00000000 --- a/src/default-skin/selection-mod-key2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d04e6fdd5ce8b26ce88cf3da920a9f16feb5774fa408c4eedfe8ee69d84ad94 -size 6607 diff --git a/src/default-skin/selection-mod-key2.png.png b/src/default-skin/selection-mod-key2.png.png deleted file mode 100644 index 324ddf54..00000000 --- a/src/default-skin/selection-mod-key2.png.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5365abc6d4aba5a83333c04d9a2d51eb26556ddfcf9d666d5626eb78de4980f6 -size 2515 diff --git a/src/default-skin/selection-mod-key2@2x.png b/src/default-skin/selection-mod-key2@2x.png deleted file mode 100644 index 830a1472..00000000 --- a/src/default-skin/selection-mod-key2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bc160caab91523a7badb8ade5b14b57f3aac0983e49bf174dfb14a2e23ab34c4 -size 22655 diff --git a/src/default-skin/selection-mod-key3.png b/src/default-skin/selection-mod-key3.png deleted file mode 100644 index a4fd1141..00000000 --- a/src/default-skin/selection-mod-key3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:507e9df9cf592763b92781f099686c0f376f93d7d363f3c780bb27cb5e4e38c9 -size 6987 diff --git a/src/default-skin/selection-mod-key3.png.png b/src/default-skin/selection-mod-key3.png.png deleted file mode 100644 index a47075aa..00000000 --- a/src/default-skin/selection-mod-key3.png.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d0b301937f30ca0b91fc2c76cb3e2f44913231c50d4c89aa150e0373cad3471e -size 2924 diff --git a/src/default-skin/selection-mod-key3@2x.png b/src/default-skin/selection-mod-key3@2x.png deleted file mode 100644 index c7f798c8..00000000 --- a/src/default-skin/selection-mod-key3@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b9f90a4e89fd151d81ae714233fa02ba7c39aa905110fcbe24a67d5e2926c58a -size 23586 diff --git a/src/default-skin/selection-mod-key4.png b/src/default-skin/selection-mod-key4.png deleted file mode 100644 index 7ade7782..00000000 --- a/src/default-skin/selection-mod-key4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ac655a1f068c53e24e17a1c7ed3f972bd5750847550547d7f89a68866a885fca -size 3752 diff --git a/src/default-skin/selection-mod-key4@2x.png b/src/default-skin/selection-mod-key4@2x.png deleted file mode 100644 index 0df8751d..00000000 --- a/src/default-skin/selection-mod-key4@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9918da84579f7e91ebbf7a2cd6d97d16e505006f28f5f7f90964f41a7daab4bf -size 7637 diff --git a/src/default-skin/selection-mod-key5.png b/src/default-skin/selection-mod-key5.png deleted file mode 100644 index 3a3e95b9..00000000 --- a/src/default-skin/selection-mod-key5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:23d221598f224fa2dd4efd6768f09bef14223b389e71ecfb70e5cf7c73543810 -size 4308 diff --git a/src/default-skin/selection-mod-key5@2x.png b/src/default-skin/selection-mod-key5@2x.png deleted file mode 100644 index 5f6bd2fb..00000000 --- a/src/default-skin/selection-mod-key5@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b308fcba99df8eeaaf12f8159df0a2d86e1f50f9eaa0a79b6c15b05e13f96ad6 -size 8905 diff --git a/src/default-skin/selection-mod-key6.png b/src/default-skin/selection-mod-key6.png deleted file mode 100644 index 932e5bbb..00000000 --- a/src/default-skin/selection-mod-key6.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:871af6b6818ef306be4edc6a88921dc86f2cb0138e96be07082366030400c690 -size 4786 diff --git a/src/default-skin/selection-mod-key6@2x.png b/src/default-skin/selection-mod-key6@2x.png deleted file mode 100644 index e0493025..00000000 --- a/src/default-skin/selection-mod-key6@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c8c9612089c90b4cf66dfc1e8e29bf45067bd36ede7c09d7dc698a53601d5149 -size 10105 diff --git a/src/default-skin/selection-mod-key7.png b/src/default-skin/selection-mod-key7.png deleted file mode 100644 index f0ba2de7..00000000 --- a/src/default-skin/selection-mod-key7.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:327056268484ad49993a3b077c466c140e254385569e4f896e22e088c4989169 -size 5099 diff --git a/src/default-skin/selection-mod-key7@2x.png b/src/default-skin/selection-mod-key7@2x.png deleted file mode 100644 index d8c928e0..00000000 --- a/src/default-skin/selection-mod-key7@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ba426022a0aa57c9616cf88203dc2bc7407afcb645e831c573e942bd0622d13 -size 10763 diff --git a/src/default-skin/selection-mod-key8.png b/src/default-skin/selection-mod-key8.png deleted file mode 100644 index 3e660a9f..00000000 --- a/src/default-skin/selection-mod-key8.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c6378685b9303330c641a70942a294d283233479326cba41761209d772d99e43 -size 5620 diff --git a/src/default-skin/selection-mod-key8@2x.png b/src/default-skin/selection-mod-key8@2x.png deleted file mode 100644 index 4bbe13b5..00000000 --- a/src/default-skin/selection-mod-key8@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29effa969f8bde84be79558c26b713c61011640f0b1b0baeca3186c06288bd95 -size 11910 diff --git a/src/default-skin/selection-mod-key9.png b/src/default-skin/selection-mod-key9.png deleted file mode 100644 index b737dc03..00000000 --- a/src/default-skin/selection-mod-key9.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b411990213ed153110c6806ae9f1222d6913b3ee3a1c691ea870be9825459cb1 -size 8590 diff --git a/src/default-skin/selection-mod-key9.png.png b/src/default-skin/selection-mod-key9.png.png deleted file mode 100644 index 9798d55d..00000000 --- a/src/default-skin/selection-mod-key9.png.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e81b7dae82af4e87f1ce021be27c392360d7dacb7d81ec3d902addf2b2dd341b -size 4705 diff --git a/src/default-skin/selection-mod-key9@2x.png b/src/default-skin/selection-mod-key9@2x.png deleted file mode 100644 index 66daa633..00000000 --- a/src/default-skin/selection-mod-key9@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:da9d0a0e2e8cd89dc43525c67e8e709e4243cc86b5bbaffb926c20a6934b153f -size 29606 diff --git a/src/default-skin/selection-mod-nightcore.png b/src/default-skin/selection-mod-nightcore.png deleted file mode 100644 index e373fc9d..00000000 --- a/src/default-skin/selection-mod-nightcore.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:83d5f8ee7df474b9d10ef60bbb6d7ac0c55793efdd3aab55c762612bdfcba645 -size 6050 diff --git a/src/default-skin/selection-mod-nightcore@2x.png b/src/default-skin/selection-mod-nightcore@2x.png deleted file mode 100644 index 739a7401..00000000 --- a/src/default-skin/selection-mod-nightcore@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7bc4139a9ee9b65e1e6885ea1abc062caabe223c1c1023186f1fa32dcab5c155 -size 14227 diff --git a/src/default-skin/selection-mod-nofail.png b/src/default-skin/selection-mod-nofail.png deleted file mode 100644 index 39f9e1da..00000000 --- a/src/default-skin/selection-mod-nofail.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:32832b21f2ee7a046ca3d59ed8567558edb6d84fb44433b4aa14ac1c2ebd6582 -size 7998 diff --git a/src/default-skin/selection-mod-nofail@2x.png b/src/default-skin/selection-mod-nofail@2x.png deleted file mode 100644 index 06e69d1f..00000000 --- a/src/default-skin/selection-mod-nofail@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:51bb9bb4f84539c534bc9a95a4730174a06af0005ee1f969e2aa57bfd02e7ea8 -size 18637 diff --git a/src/default-skin/selection-mod-perfect.png b/src/default-skin/selection-mod-perfect.png deleted file mode 100644 index 165d1dbf..00000000 --- a/src/default-skin/selection-mod-perfect.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d11836b252883ed42b9070bf2b4f5c821f07cd18d285e3c194efa7c905ee929a -size 5597 diff --git a/src/default-skin/selection-mod-perfect@2x.png b/src/default-skin/selection-mod-perfect@2x.png deleted file mode 100644 index 256face2..00000000 --- a/src/default-skin/selection-mod-perfect@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60fcee68a1cbe172107bc8dbcfbbf622dbd14251840c547a647405ae66b2af71 -size 12937 diff --git a/src/default-skin/selection-mod-random.png b/src/default-skin/selection-mod-random.png deleted file mode 100644 index 500d4219..00000000 --- a/src/default-skin/selection-mod-random.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3c1dfed3bb19e22414d5972bec14c08efcba231c23296738e1158fff774cee59 -size 7142 diff --git a/src/default-skin/selection-mod-random@2x.png b/src/default-skin/selection-mod-random@2x.png deleted file mode 100644 index ffc0482a..00000000 --- a/src/default-skin/selection-mod-random@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d090c2273ef50d6b7fa4d13410276dbbbdaab225ab4d23785fcbe69060d18620 -size 16276 diff --git a/src/default-skin/selection-mod-relax.png b/src/default-skin/selection-mod-relax.png deleted file mode 100644 index a9747ffa..00000000 --- a/src/default-skin/selection-mod-relax.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b3ab787fd16dbc3c1208d6f4d194dffaa102ad9f9ff734a47531c403c16ef911 -size 4258 diff --git a/src/default-skin/selection-mod-relax2.png b/src/default-skin/selection-mod-relax2.png deleted file mode 100644 index 8c5badb8..00000000 --- a/src/default-skin/selection-mod-relax2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a699742e8c8154d750908c4abe48c4ea83699e9b2f1275c724e28841c70ccfc -size 6069 diff --git a/src/default-skin/selection-mod-relax2@2x.png b/src/default-skin/selection-mod-relax2@2x.png deleted file mode 100644 index e8e2eaa9..00000000 --- a/src/default-skin/selection-mod-relax2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:baa17405e5835af1e7b029ebbcd52845aeaf129641058c8dc5f040824fb5ef96 -size 13437 diff --git a/src/default-skin/selection-mod-relax@2x.png b/src/default-skin/selection-mod-relax@2x.png deleted file mode 100644 index 344969ad..00000000 --- a/src/default-skin/selection-mod-relax@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6849d19e9c8911ab38df05aebb31ac0367ab09bdd68d5ecfaad671693a580eaf -size 9850 diff --git a/src/default-skin/selection-mod-scorev2.png b/src/default-skin/selection-mod-scorev2.png deleted file mode 100644 index a0df48aa..00000000 --- a/src/default-skin/selection-mod-scorev2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ac7a034836d2df3b12cfc35c53b0ca5d6c54a028cefd61d935e01b6a21e79ff -size 4839 diff --git a/src/default-skin/selection-mod-scorev2@2x.png b/src/default-skin/selection-mod-scorev2@2x.png deleted file mode 100644 index 0a9568d8..00000000 --- a/src/default-skin/selection-mod-scorev2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:631716d0bd18cbb7ca189e183c593ed9b535b8d05c0a02c80e8a3ab4d6f92969 -size 8851 diff --git a/src/default-skin/selection-mod-spunout.png b/src/default-skin/selection-mod-spunout.png deleted file mode 100644 index f3305d38..00000000 --- a/src/default-skin/selection-mod-spunout.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c5bff983fedd70ba9925753021f602b36f74cd88a2c8b218b3657432986af3f -size 6933 diff --git a/src/default-skin/selection-mod-spunout@2x.png b/src/default-skin/selection-mod-spunout@2x.png deleted file mode 100644 index b2a3ad34..00000000 --- a/src/default-skin/selection-mod-spunout@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:03b13dac51ed20d52a767573af6de3f1bd4f7fb13fb2b8fb4e8ae4cbad1b3c04 -size 15569 diff --git a/src/default-skin/selection-mod-suddendeath.png b/src/default-skin/selection-mod-suddendeath.png deleted file mode 100644 index 9be4c668..00000000 --- a/src/default-skin/selection-mod-suddendeath.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a3e2612ab31a6498f53a62f43378c001670356d5743eb2ddfa82e82556d3713 -size 7350 diff --git a/src/default-skin/selection-mod-suddendeath@2x.png b/src/default-skin/selection-mod-suddendeath@2x.png deleted file mode 100644 index c2b86718..00000000 --- a/src/default-skin/selection-mod-suddendeath@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8a2513c5c2d032ae2ab049b1aaf282e6574698e5fe4a8870870fa2693a436e60 -size 15592 diff --git a/src/default-skin/selection-mod-target.png b/src/default-skin/selection-mod-target.png deleted file mode 100644 index 06e43694..00000000 --- a/src/default-skin/selection-mod-target.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b4da03e8730a961b386b1283d9e68f60a88e3f71d8bf8e2989f60e0ed50da447 -size 9917 diff --git a/src/default-skin/selection-mod-target@2x.png b/src/default-skin/selection-mod-target@2x.png deleted file mode 100644 index 86c39ca7..00000000 --- a/src/default-skin/selection-mod-target@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a7b73615fc0653ca535099cadc6f40245af61970b4891559727993a0be1fe7cd -size 24693 diff --git a/src/default-skin/selection-mode-over.png b/src/default-skin/selection-mode-over.png deleted file mode 100644 index 6062a77c..00000000 --- a/src/default-skin/selection-mode-over.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7dacb5aea7c00b9499a7bdd067d7f33e67b75925b19bd0e8ea96a0a73e5c1e8e -size 6740 diff --git a/src/default-skin/selection-mode-over@2x.png b/src/default-skin/selection-mode-over@2x.png deleted file mode 100644 index 1d4e85a1..00000000 --- a/src/default-skin/selection-mode-over@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c617c26fc9d62ceb749c35b5d7cac48f9211f58fe6b8775db9878b9cef2239a -size 14077 diff --git a/src/default-skin/selection-mode.png b/src/default-skin/selection-mode.png deleted file mode 100644 index 60f60560..00000000 --- a/src/default-skin/selection-mode.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25f27189497e8e5a47d67d9028eecfc3f70bdcb9468b55d016f3c9d6a107eab4 -size 6098 diff --git a/src/default-skin/selection-mode@2x.png b/src/default-skin/selection-mode@2x.png deleted file mode 100644 index 7d177562..00000000 --- a/src/default-skin/selection-mode@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1825e2bbcfc11ced520970df9008fa6a90a6f5142db16450c86cc449f5de733b -size 11653 diff --git a/src/default-skin/selection-mods-over.png b/src/default-skin/selection-mods-over.png deleted file mode 100644 index 31d420ba..00000000 --- a/src/default-skin/selection-mods-over.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:00ad75d0f9b484cf9b65efaa596a55444a853a8b41e26876f8cf3504e7c79394 -size 7053 diff --git a/src/default-skin/selection-mods-over@2x.png b/src/default-skin/selection-mods-over@2x.png deleted file mode 100644 index d91dd2dd..00000000 --- a/src/default-skin/selection-mods-over@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1603508d0b8fc87ca3574eb1a9cd3b98b77820c9f06869118d42ad777a07288a -size 14408 diff --git a/src/default-skin/selection-mods.png b/src/default-skin/selection-mods.png deleted file mode 100644 index fc9972ab..00000000 --- a/src/default-skin/selection-mods.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6cec2c7d3f912c526d4733e041525168a47a3d7a23cbca7be1f448eda860db89 -size 6157 diff --git a/src/default-skin/selection-mods@2x.png b/src/default-skin/selection-mods@2x.png deleted file mode 100644 index 57f49fa3..00000000 --- a/src/default-skin/selection-mods@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0d37622fb1623c209fa2247fa2943dbee0a68b0d5897ed1f031c6c237d7a0b8f -size 11749 diff --git a/src/default-skin/selection-options-over.png b/src/default-skin/selection-options-over.png deleted file mode 100644 index d7172af5..00000000 --- a/src/default-skin/selection-options-over.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:efd9b315251d093bb061db9d8a6a49673016a31e457c8591455774da22b9a7ae -size 9970 diff --git a/src/default-skin/selection-options-over@2x.png b/src/default-skin/selection-options-over@2x.png deleted file mode 100644 index 2203a2dd..00000000 --- a/src/default-skin/selection-options-over@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2f659d0997e4b7ac42fcd319c9d231d018200f239568cae888961dd454fa6318 -size 21988 diff --git a/src/default-skin/selection-options.png b/src/default-skin/selection-options.png deleted file mode 100644 index 1b73a6ff..00000000 --- a/src/default-skin/selection-options.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2e10878ff416baf10a09a8f245e93ff8138a2956196305498934f91ab0ede459 -size 9752 diff --git a/src/default-skin/selection-options@2x.png b/src/default-skin/selection-options@2x.png deleted file mode 100644 index cfbae50b..00000000 --- a/src/default-skin/selection-options@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8fdac57ba1d231e3543aa3fc017fd045199e23e6d6252419b70c0415d607753e -size 22080 diff --git a/src/default-skin/selection-random-over.png b/src/default-skin/selection-random-over.png deleted file mode 100644 index 5079e689..00000000 --- a/src/default-skin/selection-random-over.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29560e2d4a3dbdbbf113ac6524a31650c329f0faa04af5bb47e6c0980a299d97 -size 7061 diff --git a/src/default-skin/selection-random-over@2x.png b/src/default-skin/selection-random-over@2x.png deleted file mode 100644 index b77fe2df..00000000 --- a/src/default-skin/selection-random-over@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27500fe554a455718d8738d5ade78e117f5adc98d4273d448830b55b9a33bb79 -size 14165 diff --git a/src/default-skin/selection-random.png b/src/default-skin/selection-random.png deleted file mode 100644 index fe01bd64..00000000 --- a/src/default-skin/selection-random.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0253f97e03f33e71f57c9274197d48dda337eba70e6442c5abff5fac8d05ecdd -size 6743 diff --git a/src/default-skin/selection-random@2x.png b/src/default-skin/selection-random@2x.png deleted file mode 100644 index dad34337..00000000 --- a/src/default-skin/selection-random@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:996343e9c7a98fbd1a622e5b336961506e7587d636a35976ed8f47932afd1278 -size 13516 diff --git a/src/default-skin/shutter.wav b/src/default-skin/shutter.wav deleted file mode 100644 index c92e8150..00000000 --- a/src/default-skin/shutter.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c7654aedbedb087b46c7becb53df94c5b45b5da01829de42b7893ef7162a066a -size 159160 diff --git a/src/default-skin/skin.ini b/src/default-skin/skin.ini deleted file mode 100644 index 58adbfee..00000000 --- a/src/default-skin/skin.ini +++ /dev/null @@ -1,41 +0,0 @@ -[General] -Name: Default -Author: Developers -Version: 2.5 -CursorExpand: 1 -CursorCentre: 1 -CursorRotate: 1 -CursorTrailRotate: 0 -LayeredHitSounds: 1 -ComboBurstRandom: 0 -HitCircleOverlayAboveNumber: 1 -SliderStyle: 2 -SliderBallFlip: 0 -SliderBallFrames: 10 -AllowSliderBallTint: 1 -SpinnerNoBlink: 0 -SpinnerFadePlayfield: 0 -SpinnerFrequencyModulate: 1 - -[Colours] -SongSelectActiveText: 0,0,0 -SongSelectInactiveText: 255,255,255 -MenuGlow: 0,78,155 -StarBreakAdditive: 255,182,193 -InputOverlayText: 0,0,0 -SliderBall: 2,170,255 -SliderBorder: 255,255,255 -SpinnerBackground: 100,100,100 -Combo1: 255,192,0 -Combo2: 0,202,0 -Combo3: 18,124,255 -Combo4: 242,24,57 - -[Fonts] -ComboPrefix: score -ComboOverlap: 0 -HitCirclePrefix: default -HitCircleOverlap: -2 -ScorePrefix: score -ScoreOverlap: 0 - diff --git a/src/default-skin/sliderb-nd.png b/src/default-skin/sliderb-nd.png deleted file mode 100644 index b7cd5a0f..00000000 --- a/src/default-skin/sliderb-nd.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:da4bf36c77cf6ce3a37b5adcec0550a3be063260f9cb18576f9b18f948975bed -size 8420 diff --git a/src/default-skin/sliderb-nd@2x.png b/src/default-skin/sliderb-nd@2x.png deleted file mode 100644 index 6ce50b28..00000000 --- a/src/default-skin/sliderb-nd@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:688625e31d6ec0ac689c000be6fcb0025c5e51e1d6d1962e6184a516f3adcccd -size 14258 diff --git a/src/default-skin/sliderb-spec.png b/src/default-skin/sliderb-spec.png deleted file mode 100644 index 8e8a17d8..00000000 --- a/src/default-skin/sliderb-spec.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d9f6d0b9999bd4f9a472117e66fd820871a7b0d590d47b40647d44a11e579381 -size 5657 diff --git a/src/default-skin/sliderb-spec@2x.png b/src/default-skin/sliderb-spec@2x.png deleted file mode 100644 index 6efb3238..00000000 --- a/src/default-skin/sliderb-spec@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b25074a3ba158703b50766df999edeef6eb8a06b1288484cc3eb228fe528ead3 -size 13141 diff --git a/src/default-skin/sliderb0.png b/src/default-skin/sliderb0.png deleted file mode 100644 index afdff623..00000000 --- a/src/default-skin/sliderb0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7b46186ab4b73beca90edd9f363c2a030e13a24f5a222bae112fd38feee62c53 -size 9143 diff --git a/src/default-skin/sliderb0@2x.png b/src/default-skin/sliderb0@2x.png deleted file mode 100644 index 2a99930d..00000000 --- a/src/default-skin/sliderb0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c121ffb194030e9bd7f94669ca1d8a6e09a6aa35ec0a6f8c9d6c96e63adc4319 -size 17053 diff --git a/src/default-skin/sliderb1.png b/src/default-skin/sliderb1.png deleted file mode 100644 index 435736ba..00000000 --- a/src/default-skin/sliderb1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4df7ca621793ccbb2c654a5d7acf68a209f2252e7cd60c5f9dd35ab6b2899019 -size 9941 diff --git a/src/default-skin/sliderb1@2x.png b/src/default-skin/sliderb1@2x.png deleted file mode 100644 index 869e7364..00000000 --- a/src/default-skin/sliderb1@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f134b8a26ecff48538e2101c0876de51e2849048bd0dd7745a8ac72def74a87d -size 17792 diff --git a/src/default-skin/sliderb2.png b/src/default-skin/sliderb2.png deleted file mode 100644 index 63b1e8a5..00000000 --- a/src/default-skin/sliderb2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:43528f488707d91e01022eee3b19e8f81bc738fc40ab193cf19a0e28f7cf05ac -size 9899 diff --git a/src/default-skin/sliderb2@2x.png b/src/default-skin/sliderb2@2x.png deleted file mode 100644 index 2ee0617a..00000000 --- a/src/default-skin/sliderb2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:21cda2223cf5c3b6bf41bba2ac310648f02b6056ba258af3eb9c58c84dbfa3c7 -size 18268 diff --git a/src/default-skin/sliderb3.png b/src/default-skin/sliderb3.png deleted file mode 100644 index a4280677..00000000 --- a/src/default-skin/sliderb3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2160a600180de294f22fff3c393bd0d08cfa717aa735e8d50022c56979ebeb56 -size 10031 diff --git a/src/default-skin/sliderb3@2x.png b/src/default-skin/sliderb3@2x.png deleted file mode 100644 index f4753c29..00000000 --- a/src/default-skin/sliderb3@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a05631227967f2ab496b663e9d76689c8a127905dc638a7d239db0d2c9b28a56 -size 18182 diff --git a/src/default-skin/sliderb4.png b/src/default-skin/sliderb4.png deleted file mode 100644 index 9685e446..00000000 --- a/src/default-skin/sliderb4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e9e7b00be3ecaa7ea948e841adda65de8f1e4a4081fbc28fd9046ad371ba8284 -size 9954 diff --git a/src/default-skin/sliderb4@2x.png b/src/default-skin/sliderb4@2x.png deleted file mode 100644 index d691336d..00000000 --- a/src/default-skin/sliderb4@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:054f26fa4e2f40edd78b1c760225be82bb50303c71e95eddb6788ad9cca4cd7d -size 18062 diff --git a/src/default-skin/sliderb5.png b/src/default-skin/sliderb5.png deleted file mode 100644 index bf2a3fd8..00000000 --- a/src/default-skin/sliderb5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9dae4c5bb08e44f4fd3bd188f65c025db8d7508a3778aae4f45d980475d9c9f2 -size 9381 diff --git a/src/default-skin/sliderb5@2x.png b/src/default-skin/sliderb5@2x.png deleted file mode 100644 index 8e14e5df..00000000 --- a/src/default-skin/sliderb5@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f18f191b9da59cdd786ab6763bee98b9f75d4c46f382cb2ff30a14cdbf93bd46 -size 16895 diff --git a/src/default-skin/sliderb6.png b/src/default-skin/sliderb6.png deleted file mode 100644 index 893d08ec..00000000 --- a/src/default-skin/sliderb6.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c535c92121bfe2563e3d72ea316a16b505fee9ac283fa756e04e94bae3b3b96f -size 9269 diff --git a/src/default-skin/sliderb6@2x.png b/src/default-skin/sliderb6@2x.png deleted file mode 100644 index 6eb5ae8e..00000000 --- a/src/default-skin/sliderb6@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e04b40763f851ed3cf5a49f6e2b671e00ac90802ea7751dcf6c3c7297c8faf7f -size 16702 diff --git a/src/default-skin/sliderb7.png b/src/default-skin/sliderb7.png deleted file mode 100644 index bf02ded6..00000000 --- a/src/default-skin/sliderb7.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a967aa45e4edd34d96b8c67f7da373e6a5e79ba6458ed0294c6f472bb1bf4115 -size 9211 diff --git a/src/default-skin/sliderb7@2x.png b/src/default-skin/sliderb7@2x.png deleted file mode 100644 index 699c2eaf..00000000 --- a/src/default-skin/sliderb7@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d858f0af537ab2c09efdb4c207c2852bc3a18fd5a6c7e7709c0f785f227889d -size 17139 diff --git a/src/default-skin/sliderb8.png b/src/default-skin/sliderb8.png deleted file mode 100644 index c32cf631..00000000 --- a/src/default-skin/sliderb8.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c21173b305827e79dcbff1c811b8fa5922130bad90ef062bb2f31d51fddc75c8 -size 9103 diff --git a/src/default-skin/sliderb8@2x.png b/src/default-skin/sliderb8@2x.png deleted file mode 100644 index 292455bc..00000000 --- a/src/default-skin/sliderb8@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:156c1a05f4f28949f5ff5bc48b74fcb38f5457cc9ec68cb2696b09ee412ea9e6 -size 17084 diff --git a/src/default-skin/sliderb9.png b/src/default-skin/sliderb9.png deleted file mode 100644 index 620b850a..00000000 --- a/src/default-skin/sliderb9.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:af5da3bba659512b6371f72ef7b71750c5c2fb458a15c951bc3d3dc5bb121b06 -size 9312 diff --git a/src/default-skin/sliderb9@2x.png b/src/default-skin/sliderb9@2x.png deleted file mode 100644 index cd945bf4..00000000 --- a/src/default-skin/sliderb9@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:499b96d2b94b259210b97013ea63c975bbb14227d85efcf78056764cde509722 -size 17067 diff --git a/src/default-skin/sliderbar.wav b/src/default-skin/sliderbar.wav deleted file mode 100644 index bc18b5b9..00000000 --- a/src/default-skin/sliderbar.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c93868ea34e5a577f838b76137059a88ae86f97e97c47c6668f5b2094ceb6c56 -size 56880 diff --git a/src/default-skin/sliderfollowcircle.png b/src/default-skin/sliderfollowcircle.png deleted file mode 100644 index 4dffbd92..00000000 --- a/src/default-skin/sliderfollowcircle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:38a5d186f109559033c5497018ac3e6b8e3bb94c483a5f489d58aecc2b8689c4 -size 29981 diff --git a/src/default-skin/sliderfollowcircle@2x.png b/src/default-skin/sliderfollowcircle@2x.png deleted file mode 100644 index 5ac95fcf..00000000 --- a/src/default-skin/sliderfollowcircle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a738874f05fd0ec2529388de9bc52468b1269bd96e5bcf2c5bd959cd43f46b3d -size 74597 diff --git a/src/default-skin/sliderscorepoint.png b/src/default-skin/sliderscorepoint.png deleted file mode 100644 index f495b301..00000000 --- a/src/default-skin/sliderscorepoint.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d99d665c8403ee3e9bb4515e28ec17be80a1c9c6d39a34c8911c8073c118b9ad -size 3437 diff --git a/src/default-skin/sliderscorepoint@2x.png b/src/default-skin/sliderscorepoint@2x.png deleted file mode 100644 index 34880be5..00000000 --- a/src/default-skin/sliderscorepoint@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef71e2eeda27f972197c6086dd4cec7d37f43f755ba40b1c8dbeb6c8c45c7c20 -size 4809 diff --git a/src/default-skin/soft-hitclap.wav b/src/default-skin/soft-hitclap.wav deleted file mode 100644 index cc556c3c..00000000 --- a/src/default-skin/soft-hitclap.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c5f771bd04099ee4472c402ff811e81d3ea83c7b9884755117ffc00018557597 -size 19476 diff --git a/src/default-skin/soft-hitfinish.wav b/src/default-skin/soft-hitfinish.wav deleted file mode 100644 index ed057be8..00000000 --- a/src/default-skin/soft-hitfinish.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1ac4cf399a5d598444c258ffb74fd5655b3396d804ed2f4571dd52f7658d631c -size 402392 diff --git a/src/default-skin/soft-hitwhistle.wav b/src/default-skin/soft-hitwhistle.wav deleted file mode 100644 index 373adc95..00000000 --- a/src/default-skin/soft-hitwhistle.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d023d6020fcd3aad2663563af3475b81bc37faa3b4a6c247719e71b7ed5c7b4b -size 145548 diff --git a/src/default-skin/spinner-bottom.png b/src/default-skin/spinner-bottom.png deleted file mode 100644 index 97936546..00000000 --- a/src/default-skin/spinner-bottom.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b6d64d20cecc315a238b2aff02afe547582d32285abc3ef7a7c3c70cbc0037f7 -size 358702 diff --git a/src/default-skin/spinner-bottom@2x.png b/src/default-skin/spinner-bottom@2x.png deleted file mode 100644 index 0284daa9..00000000 --- a/src/default-skin/spinner-bottom@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3080e3ec28bef328d5957d8c36fc8da54f9d9422ec4df9cb29c717ba8932fd41 -size 1368275 diff --git a/src/default-skin/spinner-clear.png b/src/default-skin/spinner-clear.png deleted file mode 100644 index 1f30e559..00000000 --- a/src/default-skin/spinner-clear.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4c412bf3fb2f5a6118b8f253eb2b9ce11994aabd09894356951f45d0d3ffe32 -size 24792 diff --git a/src/default-skin/spinner-clear@2x.png b/src/default-skin/spinner-clear@2x.png deleted file mode 100644 index bb508a98..00000000 --- a/src/default-skin/spinner-clear@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2ae93f5ac8d787864f28927660dc49633199a578ade2362b4ae7d383dd1c361c -size 60375 diff --git a/src/default-skin/spinner-glow.png b/src/default-skin/spinner-glow.png deleted file mode 100644 index 7b8ab9ce..00000000 --- a/src/default-skin/spinner-glow.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f6b6320d0647f45404f2e18c7c277e10bb66a69e38ab8f670cc2b229adb8e8d -size 376956 diff --git a/src/default-skin/spinner-glow@2x.png b/src/default-skin/spinner-glow@2x.png deleted file mode 100644 index d90b589c..00000000 --- a/src/default-skin/spinner-glow@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:09e8bd0dfd3ac06053653e15fb3e781db8b7d585b9d9b6aa0764cf7f2e881562 -size 1528835 diff --git a/src/default-skin/spinner-middle.png b/src/default-skin/spinner-middle.png deleted file mode 100644 index 261aa189..00000000 --- a/src/default-skin/spinner-middle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1ef6e730bb82390410c40867ac3be5e38b4896dce2ad0969359d0692e87a903e -size 56896 diff --git a/src/default-skin/spinner-middle2.png b/src/default-skin/spinner-middle2.png deleted file mode 100644 index a6f6fd6f..00000000 --- a/src/default-skin/spinner-middle2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:951c91be27bfa6e5dc78e49fa68dded2d613439a4e39cc7eea2dd0ae7f1fddc7 -size 3059 diff --git a/src/default-skin/spinner-middle2@2x.png b/src/default-skin/spinner-middle2@2x.png deleted file mode 100644 index 41555b81..00000000 --- a/src/default-skin/spinner-middle2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bd0cb45a78b120aacd3fc347de0a4ae8545b4da292d7c5c5db14a453ba0d443e -size 3637 diff --git a/src/default-skin/spinner-middle@2x.png b/src/default-skin/spinner-middle@2x.png deleted file mode 100644 index 3a4a71a7..00000000 --- a/src/default-skin/spinner-middle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:af2b92b976eb2916607539fc44620614eb7536e807829f03f7e717fbcd9c56be -size 147829 diff --git a/src/default-skin/spinner-rpm.png b/src/default-skin/spinner-rpm.png deleted file mode 100644 index 39c548a1..00000000 --- a/src/default-skin/spinner-rpm.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1dd1717edfc3b25b889787ea2dafd2626e471bc5455e582fb8220d075dc7ad37 -size 9280 diff --git a/src/default-skin/spinner-rpm@2x.png b/src/default-skin/spinner-rpm@2x.png deleted file mode 100644 index e3ec5ad7..00000000 --- a/src/default-skin/spinner-rpm@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2f9cd78f6b91dac191459ac3bfd88b54b27b638d6a6a18db188d8c2bcf7f00e9 -size 20792 diff --git a/src/default-skin/spinner-spin.png b/src/default-skin/spinner-spin.png deleted file mode 100644 index 968536ea..00000000 --- a/src/default-skin/spinner-spin.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c31ff5d4983b8d4831e354ef870c771607fb0e8d8131d28fec3919552aba0985 -size 30064 diff --git a/src/default-skin/spinner-spin@2x.png b/src/default-skin/spinner-spin@2x.png deleted file mode 100644 index f9704e1f..00000000 --- a/src/default-skin/spinner-spin@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3645695e943989a481cc5e9e535a93c19bd56c8c73856b4d7f7ee027703ab555 -size 74543 diff --git a/src/default-skin/spinner-top.png b/src/default-skin/spinner-top.png deleted file mode 100644 index 03c40008..00000000 --- a/src/default-skin/spinner-top.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b91f7cb2748aeeb41257a173cbc2610d36f65f1635053bf000e3a7b2373564b -size 275892 diff --git a/src/default-skin/spinner-top@2x.png b/src/default-skin/spinner-top@2x.png deleted file mode 100644 index ebd4e0b2..00000000 --- a/src/default-skin/spinner-top@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:325f21ab9f653e5cb46af76102ec34a90889f5fc9e8b4102ea19443acd234dc3 -size 1018612 diff --git a/src/default-skin/spinner/new spinner/spinner-bottom.png b/src/default-skin/spinner/new spinner/spinner-bottom.png deleted file mode 100644 index 97936546..00000000 --- a/src/default-skin/spinner/new spinner/spinner-bottom.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b6d64d20cecc315a238b2aff02afe547582d32285abc3ef7a7c3c70cbc0037f7 -size 358702 diff --git a/src/default-skin/spinner/new spinner/spinner-bottom@2x.png b/src/default-skin/spinner/new spinner/spinner-bottom@2x.png deleted file mode 100644 index 0284daa9..00000000 --- a/src/default-skin/spinner/new spinner/spinner-bottom@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3080e3ec28bef328d5957d8c36fc8da54f9d9422ec4df9cb29c717ba8932fd41 -size 1368275 diff --git a/src/default-skin/spinner/new spinner/spinner-clear.png b/src/default-skin/spinner/new spinner/spinner-clear.png deleted file mode 100644 index 1f30e559..00000000 --- a/src/default-skin/spinner/new spinner/spinner-clear.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4c412bf3fb2f5a6118b8f253eb2b9ce11994aabd09894356951f45d0d3ffe32 -size 24792 diff --git a/src/default-skin/spinner/new spinner/spinner-clear@2x.png b/src/default-skin/spinner/new spinner/spinner-clear@2x.png deleted file mode 100644 index bb508a98..00000000 --- a/src/default-skin/spinner/new spinner/spinner-clear@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2ae93f5ac8d787864f28927660dc49633199a578ade2362b4ae7d383dd1c361c -size 60375 diff --git a/src/default-skin/spinner/new spinner/spinner-glow.png b/src/default-skin/spinner/new spinner/spinner-glow.png deleted file mode 100644 index 7b8ab9ce..00000000 --- a/src/default-skin/spinner/new spinner/spinner-glow.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f6b6320d0647f45404f2e18c7c277e10bb66a69e38ab8f670cc2b229adb8e8d -size 376956 diff --git a/src/default-skin/spinner/new spinner/spinner-glow@2x.png b/src/default-skin/spinner/new spinner/spinner-glow@2x.png deleted file mode 100644 index d90b589c..00000000 --- a/src/default-skin/spinner/new spinner/spinner-glow@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:09e8bd0dfd3ac06053653e15fb3e781db8b7d585b9d9b6aa0764cf7f2e881562 -size 1528835 diff --git a/src/default-skin/spinner/new spinner/spinner-middle.png b/src/default-skin/spinner/new spinner/spinner-middle.png deleted file mode 100644 index 261aa189..00000000 --- a/src/default-skin/spinner/new spinner/spinner-middle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1ef6e730bb82390410c40867ac3be5e38b4896dce2ad0969359d0692e87a903e -size 56896 diff --git a/src/default-skin/spinner/new spinner/spinner-middle2.png b/src/default-skin/spinner/new spinner/spinner-middle2.png deleted file mode 100644 index a6f6fd6f..00000000 --- a/src/default-skin/spinner/new spinner/spinner-middle2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:951c91be27bfa6e5dc78e49fa68dded2d613439a4e39cc7eea2dd0ae7f1fddc7 -size 3059 diff --git a/src/default-skin/spinner/new spinner/spinner-middle2@2x.png b/src/default-skin/spinner/new spinner/spinner-middle2@2x.png deleted file mode 100644 index 41555b81..00000000 --- a/src/default-skin/spinner/new spinner/spinner-middle2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bd0cb45a78b120aacd3fc347de0a4ae8545b4da292d7c5c5db14a453ba0d443e -size 3637 diff --git a/src/default-skin/spinner/new spinner/spinner-middle@2x.png b/src/default-skin/spinner/new spinner/spinner-middle@2x.png deleted file mode 100644 index 3a4a71a7..00000000 --- a/src/default-skin/spinner/new spinner/spinner-middle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:af2b92b976eb2916607539fc44620614eb7536e807829f03f7e717fbcd9c56be -size 147829 diff --git a/src/default-skin/spinner/new spinner/spinner-rpm.png b/src/default-skin/spinner/new spinner/spinner-rpm.png deleted file mode 100644 index 39c548a1..00000000 --- a/src/default-skin/spinner/new spinner/spinner-rpm.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1dd1717edfc3b25b889787ea2dafd2626e471bc5455e582fb8220d075dc7ad37 -size 9280 diff --git a/src/default-skin/spinner/new spinner/spinner-rpm@2x.png b/src/default-skin/spinner/new spinner/spinner-rpm@2x.png deleted file mode 100644 index e3ec5ad7..00000000 --- a/src/default-skin/spinner/new spinner/spinner-rpm@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2f9cd78f6b91dac191459ac3bfd88b54b27b638d6a6a18db188d8c2bcf7f00e9 -size 20792 diff --git a/src/default-skin/spinner/new spinner/spinner-spin.png b/src/default-skin/spinner/new spinner/spinner-spin.png deleted file mode 100644 index 968536ea..00000000 --- a/src/default-skin/spinner/new spinner/spinner-spin.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c31ff5d4983b8d4831e354ef870c771607fb0e8d8131d28fec3919552aba0985 -size 30064 diff --git a/src/default-skin/spinner/new spinner/spinner-spin@2x.png b/src/default-skin/spinner/new spinner/spinner-spin@2x.png deleted file mode 100644 index f9704e1f..00000000 --- a/src/default-skin/spinner/new spinner/spinner-spin@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3645695e943989a481cc5e9e535a93c19bd56c8c73856b4d7f7ee027703ab555 -size 74543 diff --git a/src/default-skin/spinner/new spinner/spinner-top.png b/src/default-skin/spinner/new spinner/spinner-top.png deleted file mode 100644 index 03c40008..00000000 --- a/src/default-skin/spinner/new spinner/spinner-top.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b91f7cb2748aeeb41257a173cbc2610d36f65f1635053bf000e3a7b2373564b -size 275892 diff --git a/src/default-skin/spinner/new spinner/spinner-top@2x.png b/src/default-skin/spinner/new spinner/spinner-top@2x.png deleted file mode 100644 index ebd4e0b2..00000000 --- a/src/default-skin/spinner/new spinner/spinner-top@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:325f21ab9f653e5cb46af76102ec34a90889f5fc9e8b4102ea19443acd234dc3 -size 1018612 diff --git a/src/default-skin/spinner/new spinner/visible approach circle/spinner-approachcircle.png b/src/default-skin/spinner/new spinner/visible approach circle/spinner-approachcircle.png deleted file mode 100644 index c8fdd465..00000000 --- a/src/default-skin/spinner/new spinner/visible approach circle/spinner-approachcircle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed778ff03b75913eb3c22da0c7b7d7263711836b0126563caca64379e49986da -size 14077 diff --git a/src/default-skin/spinner/new spinner/visible approach circle/spinner-approachcircle@2x.png b/src/default-skin/spinner/new spinner/visible approach circle/spinner-approachcircle@2x.png deleted file mode 100644 index cd23ca60..00000000 --- a/src/default-skin/spinner/new spinner/visible approach circle/spinner-approachcircle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c93d37c8ff05da49dcc033813708067733d51184ac4574f1f8bc10500ca2c161 -size 27386 diff --git a/src/default-skin/spinner/old spinner (2008)/spinner-approachcircle.png b/src/default-skin/spinner/old spinner (2008)/spinner-approachcircle.png deleted file mode 100644 index 46779474..00000000 --- a/src/default-skin/spinner/old spinner (2008)/spinner-approachcircle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:78ce447331c360f628066e60224f09913fe750ac45859dee00815e56da6e424a -size 26350 diff --git a/src/default-skin/spinner/old spinner (2008)/spinner-background.png b/src/default-skin/spinner/old spinner (2008)/spinner-background.png deleted file mode 100644 index 3bc90beb..00000000 --- a/src/default-skin/spinner/old spinner (2008)/spinner-background.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a8bb526e21fb6f5bdf1b505a459ad5a0370e5468364373513959caa92ec380fd -size 46103 diff --git a/src/default-skin/spinner/old spinner (2008)/spinner-circle.png b/src/default-skin/spinner/old spinner (2008)/spinner-circle.png deleted file mode 100644 index 12026941..00000000 --- a/src/default-skin/spinner/old spinner (2008)/spinner-circle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a3aa4800efae3fe496bb65828366fb715806aa8e4c82de1adbf29dd210249750 -size 166439 diff --git a/src/default-skin/spinner/old spinner (2008)/spinner-circle@2x.png b/src/default-skin/spinner/old spinner (2008)/spinner-circle@2x.png deleted file mode 100644 index 6b58baa0..00000000 --- a/src/default-skin/spinner/old spinner (2008)/spinner-circle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6469d7e40a2311dd6cd7c4365cc1468d970ec51bf9a55e314806f11dc92cbdda -size 815769 diff --git a/src/default-skin/spinner/old spinner (2008)/spinner-clear.png b/src/default-skin/spinner/old spinner (2008)/spinner-clear.png deleted file mode 100644 index 97add760..00000000 --- a/src/default-skin/spinner/old spinner (2008)/spinner-clear.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed89b98839c5b2162ab9a92eec883bfa07f1db40ce7eaa0e9957b5dce610c57a -size 39074 diff --git a/src/default-skin/spinner/old spinner (2008)/spinner-metre.png b/src/default-skin/spinner/old spinner (2008)/spinner-metre.png deleted file mode 100644 index 6597c11b..00000000 --- a/src/default-skin/spinner/old spinner (2008)/spinner-metre.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1b2b56a13cfe7f6838a350c0a81f3fa6fd3eeb69825774787af181681e16202e -size 14518 diff --git a/src/default-skin/spinner/old spinner (2008)/spinner-osu.png b/src/default-skin/spinner/old spinner (2008)/spinner-osu.png deleted file mode 100644 index 3da595d2..00000000 --- a/src/default-skin/spinner/old spinner (2008)/spinner-osu.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:824eb6ac613b61d422cf93019e180e46d914226d1e0297c7ba34a1e98b07c488 -size 18585 diff --git a/src/default-skin/spinner/old spinner (2008)/spinner-rpm.png b/src/default-skin/spinner/old spinner (2008)/spinner-rpm.png deleted file mode 100644 index 74630d71..00000000 --- a/src/default-skin/spinner/old spinner (2008)/spinner-rpm.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9458f6eb093242c5cc763035945a5f4729c2988925fe2786c1c6cce1337f23e5 -size 10583 diff --git a/src/default-skin/spinnerbonus.wav b/src/default-skin/spinnerbonus.wav deleted file mode 100644 index d48d7e9d..00000000 --- a/src/default-skin/spinnerbonus.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c54b23642a4abf3faf18c02d7a3a41cc6c3a0fb042a740dd6a9b30d26ce17e9 -size 309536 diff --git a/src/default-skin/star.png b/src/default-skin/star.png deleted file mode 100644 index 9ce153ed..00000000 --- a/src/default-skin/star.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d94a16822870950f416d2f444cb6d26321c770349c0044bd0273eb0fa9e6901 -size 1154 diff --git a/src/default-skin/star2.png b/src/default-skin/star2.png deleted file mode 100644 index 0a5447c8..00000000 --- a/src/default-skin/star2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe5d140ab0b614784eb1a2e0da5754e9fa3d421f4b24d99a8234b8b5c7ace771 -size 4627 diff --git a/src/default-skin/star2@2x.png b/src/default-skin/star2@2x.png deleted file mode 100644 index 872377c2..00000000 --- a/src/default-skin/star2@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e736a1f076cd0fc500a0ecee368a0a805e9b54de489146617283fdaaa7004237 -size 8485 diff --git a/src/default-skin/star@2x.png b/src/default-skin/star@2x.png deleted file mode 100644 index b823b78c..00000000 --- a/src/default-skin/star@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3888308271636bdcf276f06deaaea618efab882b6d296083406c57018f53de0e -size 4649 diff --git a/src/default-skin/taiko-Slider-fail.png b/src/default-skin/taiko-Slider-fail.png deleted file mode 100644 index ac8ac16e..00000000 --- a/src/default-skin/taiko-Slider-fail.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e44fa5a1e80dbfcdeee5d3b721233605053035e46beafb7acf7b21d0f671a613 -size 58739 diff --git a/src/default-skin/taiko-Slider-fail@2x.png b/src/default-skin/taiko-Slider-fail@2x.png deleted file mode 100644 index 5f78863a..00000000 --- a/src/default-skin/taiko-Slider-fail@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3ad0bfdef5b99ccf9d4424021ca65768bab010a72c260640d27d4bb133aa3b9b -size 141234 diff --git a/src/default-skin/taiko-Slider.png b/src/default-skin/taiko-Slider.png deleted file mode 100644 index 96c65e54..00000000 --- a/src/default-skin/taiko-Slider.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fce397d5ff3657426bd4a74e0d90d118bc3e75555eadca6ffa7d0e86f0a4ed31 -size 51953 diff --git a/src/default-skin/taiko-Slider@2x.png b/src/default-skin/taiko-Slider@2x.png deleted file mode 100644 index aa21ba4c..00000000 --- a/src/default-skin/taiko-Slider@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a2cecabb0025a5dc4c439edcaebf79f8262d02895fa9b4de98f5bf5bfbada6d -size 127176 diff --git a/src/default-skin/taiko-bar-right-glow.png b/src/default-skin/taiko-bar-right-glow.png deleted file mode 100644 index 93f9d729..00000000 --- a/src/default-skin/taiko-bar-right-glow.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:69d57d85c89a668ced1af10acf50219f97447b449a7c9870b862b370df65b008 -size 2323 diff --git a/src/default-skin/taiko-bar-right.png b/src/default-skin/taiko-bar-right.png deleted file mode 100644 index 3dedbae0..00000000 --- a/src/default-skin/taiko-bar-right.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f46bca2a3a6bca780b83a61993f358a3dbcd1cc5f1630ba78c1d1062b17c5bc5 -size 2036 diff --git a/src/default-skin/taiko-flower-group.png b/src/default-skin/taiko-flower-group.png deleted file mode 100644 index f5e31cc6..00000000 --- a/src/default-skin/taiko-flower-group.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1eeef5677718d9ca0247f08f6f5e34aa3abf71bc217cafa5151d6e7112d1f2ea -size 110135 diff --git a/src/default-skin/taiko-flower-group@x2.png b/src/default-skin/taiko-flower-group@x2.png deleted file mode 100644 index 6c89b03c..00000000 --- a/src/default-skin/taiko-flower-group@x2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8451c8a20509a0593e57977f7b0fb5a912a5be1de93d105bf939e71319928cf2 -size 260617 diff --git a/src/default-skin/taiko-hit0.png b/src/default-skin/taiko-hit0.png deleted file mode 100644 index 7b848a84..00000000 --- a/src/default-skin/taiko-hit0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b1f7519f7333956a7a2b6fc216b26f0a6ddf7e8fc5727b80ce864bc4d43b16b7 -size 33718 diff --git a/src/default-skin/taiko-hit0@2x.png b/src/default-skin/taiko-hit0@2x.png deleted file mode 100644 index a69986a2..00000000 --- a/src/default-skin/taiko-hit0@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2aade79b021e5e614bf03828057e6a35f729ac11a9f0c847a10e4829d4a6f4bb -size 60254 diff --git a/src/default-skin/taiko-hit100.png b/src/default-skin/taiko-hit100.png deleted file mode 100644 index c9a50880..00000000 --- a/src/default-skin/taiko-hit100.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:547b9e1eb98d1666cef6a228d0e894bf1cc9bb67bdbc9659d1ca36cdfb07416b -size 50965 diff --git a/src/default-skin/taiko-hit100@2x.png b/src/default-skin/taiko-hit100@2x.png deleted file mode 100644 index fc8d587f..00000000 --- a/src/default-skin/taiko-hit100@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6bb2d45b3139978e3fa3820acafd03df636f67cca756e9b02aeed8d5eab6b070 -size 121471 diff --git a/src/default-skin/taiko-hit100k.png b/src/default-skin/taiko-hit100k.png deleted file mode 100644 index f6be1182..00000000 --- a/src/default-skin/taiko-hit100k.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01f63c975a9784dd20fea3ac7af992d0121fa8eaccbf16e4efa84617a2d69ac4 -size 61294 diff --git a/src/default-skin/taiko-hit100k@2x.png b/src/default-skin/taiko-hit100k@2x.png deleted file mode 100644 index 7728384c..00000000 --- a/src/default-skin/taiko-hit100k@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:beb1f016aee6070ee27367086ef34049a3ad01908773a2a859f3ccba8c848ef0 -size 128226 diff --git a/src/default-skin/taiko-hit300.png b/src/default-skin/taiko-hit300.png deleted file mode 100644 index 3033294b..00000000 --- a/src/default-skin/taiko-hit300.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8d900e44e40fd5ab1f81f1d02ab50c209ec5bf9e831733cac27affd10158ec08 -size 47818 diff --git a/src/default-skin/taiko-hit300@2x.png b/src/default-skin/taiko-hit300@2x.png deleted file mode 100644 index 1065fd56..00000000 --- a/src/default-skin/taiko-hit300@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d4dd0d72f6bcf7b34c339fe49e2b1ae0c4eab0f08e93907db8e3cee3db5c4c41 -size 104694 diff --git a/src/default-skin/taiko-hit300g.png b/src/default-skin/taiko-hit300g.png deleted file mode 100644 index 13e56a2e..00000000 --- a/src/default-skin/taiko-hit300g.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4fb80f437e77d818aa88b77a0b2e360ea07c94561244e1f624228ed2a256a7de -size 59628 diff --git a/src/default-skin/taiko-hit300g@2x.png b/src/default-skin/taiko-hit300g@2x.png deleted file mode 100644 index 99166b8b..00000000 --- a/src/default-skin/taiko-hit300g@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f7064ac66c1db375cbffeb4cc6882170a1e4fd66ca921f9bcaff97ca1344298 -size 120682 diff --git a/src/default-skin/taiko-hit300k.png b/src/default-skin/taiko-hit300k.png deleted file mode 100644 index a1b162fa..00000000 --- a/src/default-skin/taiko-hit300k.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d294aaea865e2359b2e392524133934d806baa6b9cc661479fd40d5fcd2646ce -size 60059 diff --git a/src/default-skin/taiko-hit300k@2x.png b/src/default-skin/taiko-hit300k@2x.png deleted file mode 100644 index c9f75bba..00000000 --- a/src/default-skin/taiko-hit300k@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bc0d3c5981796d4bbe9525726f3ff7fc2ccd50fbf61db8902e1905ea4421bdf6 -size 120934 diff --git a/src/default-skin/taiko-normal-hitclap.wav b/src/default-skin/taiko-normal-hitclap.wav deleted file mode 100644 index 030cc087..00000000 --- a/src/default-skin/taiko-normal-hitclap.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bb251d83441a28340a7236b7c0db779fe979af8faabc3686d1c6db1cc206c1da -size 140016 diff --git a/src/default-skin/taiko-normal-hitfinish.wav b/src/default-skin/taiko-normal-hitfinish.wav deleted file mode 100644 index a3ed3748..00000000 --- a/src/default-skin/taiko-normal-hitfinish.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7169f5851da7fa40d14bb696ecc43b626b29b29e65c910fe02dc77b64ad6331e -size 276956 diff --git a/src/default-skin/taiko-normal-hitnormal.wav b/src/default-skin/taiko-normal-hitnormal.wav deleted file mode 100644 index 08934174..00000000 --- a/src/default-skin/taiko-normal-hitnormal.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b1e2a54e65c5032e833e75b09eb51f60f99f18a5fac65c3c6cc4848edb0d804c -size 208300 diff --git a/src/default-skin/taiko-normal-hitwhistle.wav b/src/default-skin/taiko-normal-hitwhistle.wav deleted file mode 100644 index 7205f30b..00000000 --- a/src/default-skin/taiko-normal-hitwhistle.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3370e1a1a9aa753709e01d11236abe083cd4a1b22d86c3ff39f054f81fffadcd -size 243580 diff --git a/src/default-skin/taiko-roll-end.png b/src/default-skin/taiko-roll-end.png deleted file mode 100644 index febaca74..00000000 --- a/src/default-skin/taiko-roll-end.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fc985ac1a70f69d93b9c8eab34cb0723d053ff8c98d830f3606470e159eec973 -size 1774 diff --git a/src/default-skin/taiko-roll-end@2x.png b/src/default-skin/taiko-roll-end@2x.png deleted file mode 100644 index 6fc3e645..00000000 --- a/src/default-skin/taiko-roll-end@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:403822a349b3101a0911708efd03821c2e37739737ca62a62ad8d42fc09efd26 -size 4600 diff --git a/src/default-skin/taiko-roll-middle.png b/src/default-skin/taiko-roll-middle.png deleted file mode 100644 index b5e61617..00000000 --- a/src/default-skin/taiko-roll-middle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a756f9ed1d07a2ead4165d9e064efcd7ff40b24d80cf0074d3f6791cc9e4cef0 -size 309 diff --git a/src/default-skin/taiko-roll-middle@2x.png b/src/default-skin/taiko-roll-middle@2x.png deleted file mode 100644 index 5075cd5a..00000000 --- a/src/default-skin/taiko-roll-middle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6aaca7231b056f3045fcdc838c1a3ae9fd73bde4fc4225df226178dd9f47cca5 -size 306 diff --git a/src/default-skin/taiko-soft-hitclap.wav b/src/default-skin/taiko-soft-hitclap.wav deleted file mode 100644 index 07599b3b..00000000 --- a/src/default-skin/taiko-soft-hitclap.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:839398061c2b24222bac119aae5ef85687a1a912de58bfe935dbdb9756ce9054 -size 133012 diff --git a/src/default-skin/taiko-soft-hitfinish.wav b/src/default-skin/taiko-soft-hitfinish.wav deleted file mode 100644 index 0f7a3855..00000000 --- a/src/default-skin/taiko-soft-hitfinish.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a6438056bb5bd41a261882fb22c312a083b6f4b6201fc85c4fd23b0366d5f5d7 -size 171044 diff --git a/src/default-skin/taiko-soft-hitnormal.wav b/src/default-skin/taiko-soft-hitnormal.wav deleted file mode 100644 index 2a268417..00000000 --- a/src/default-skin/taiko-soft-hitnormal.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ba0edb89820128eead67e9223eac84dd684b2987ece1fb0c2df8c76272feadcb -size 76640 diff --git a/src/default-skin/taiko-soft-hitwhistle.wav b/src/default-skin/taiko-soft-hitwhistle.wav deleted file mode 100644 index 77296261..00000000 --- a/src/default-skin/taiko-soft-hitwhistle.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:98f328e879a07b9eb849a72dd89818afff7b74df082f9b377b9892df19fc499f -size 164948 diff --git a/src/default-skin/taikobigcircle.png b/src/default-skin/taikobigcircle.png deleted file mode 100644 index 0a224416..00000000 --- a/src/default-skin/taikobigcircle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f1fe4f537876a320ef74c71caf06dad8a8b27e8ead776e9615de4c000e1ef43 -size 2798 diff --git a/src/default-skin/taikobigcircle@2x.png b/src/default-skin/taikobigcircle@2x.png deleted file mode 100644 index 1747eee6..00000000 --- a/src/default-skin/taikobigcircle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4afa8daee1c58806901c5d92db36d9e6de448cf0d6d548a0b507533d1e452833 -size 4791 diff --git a/src/default-skin/taikobigcircleoverlay.png b/src/default-skin/taikobigcircleoverlay.png deleted file mode 100644 index 44515464..00000000 --- a/src/default-skin/taikobigcircleoverlay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:364e3491cdf9cdaa787167d3e9b58a863ce42865dbe395478d0afd4b0df58b3b -size 11985 diff --git a/src/default-skin/taikobigcircleoverlay@2x.png b/src/default-skin/taikobigcircleoverlay@2x.png deleted file mode 100644 index 1e8f089d..00000000 --- a/src/default-skin/taikobigcircleoverlay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:329d026c98cd36bbf637cf61c78938ed3e0dc0a29421377eeeb220b7749c2284 -size 29548 diff --git a/src/default-skin/taikohitcircle.png b/src/default-skin/taikohitcircle.png deleted file mode 100644 index 46a84c5f..00000000 --- a/src/default-skin/taikohitcircle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b166670efc7f46be435869e99706272a00d0bb43dc31d671027f8eb7efc739c -size 2797 diff --git a/src/default-skin/taikohitcircle@2x.png b/src/default-skin/taikohitcircle@2x.png deleted file mode 100644 index 2573120a..00000000 --- a/src/default-skin/taikohitcircle@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8e2cbe234c8a94e569a1f3b175486557d5ba134b718ef928a82c261a303ea399 -size 4814 diff --git a/src/default-skin/taikohitcircleoverlay.png b/src/default-skin/taikohitcircleoverlay.png deleted file mode 100644 index 9d40461a..00000000 --- a/src/default-skin/taikohitcircleoverlay.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:30d08358f8aa168a9e0d0ba45720affa9dfc51ba95344a64d32e2d0e655f6c71 -size 11467 diff --git a/src/default-skin/taikohitcircleoverlay@2x.png b/src/default-skin/taikohitcircleoverlay@2x.png deleted file mode 100644 index 21d272e7..00000000 --- a/src/default-skin/taikohitcircleoverlay@2x.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:44da69463bab6dca52c8b037dac0fd576f157d6eff27ce2d2417499cad5f4743 -size 28414 diff --git a/src/default-skin/welcome.wav b/src/default-skin/welcome.wav deleted file mode 100644 index 2896efc4..00000000 --- a/src/default-skin/welcome.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e1221d631290c5e1c14fa5372ec9cb45869b352b2fd3190271f39219f5cf97a3 -size 554184 diff --git a/src/docs/activate_account.png b/src/docs/activate_account.png deleted file mode 100644 index ed3c9e96..00000000 --- a/src/docs/activate_account.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e532dd0df21476c0ec62044db40fa87a6cffe33ba99ce529398f8f39714b6120 -size 6055 diff --git a/src/docs/activation_mail.png b/src/docs/activation_mail.png deleted file mode 100644 index fa6de360..00000000 --- a/src/docs/activation_mail.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ebdedb876ba05cb5a11859b3355eee4d95c36276cb229c7f639c113af03ea80 -size 22430 diff --git a/src/docs/applications_generate_token.png b/src/docs/applications_generate_token.png deleted file mode 100644 index fbcad29d..00000000 --- a/src/docs/applications_generate_token.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:42b7eaae1f8b744dfe92981d93c7922fe5e8d3d135deb5fd63e4aace98dd4a17 -size 45322 diff --git a/src/docs/check_mail.png b/src/docs/check_mail.png deleted file mode 100644 index 29e645c2..00000000 --- a/src/docs/check_mail.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:89cbb3ecd96b09abc505d2963b346732a9dc1e1412aece53d985181be8ba0f9f -size 12213 diff --git a/src/docs/copy_token.png b/src/docs/copy_token.png deleted file mode 100644 index ca3c8cba..00000000 --- a/src/docs/copy_token.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:66d83736439b2447c14b7d03a9ba2e772ef4edbbc9f608ca86be148dda352e5e -size 4944 diff --git a/src/docs/navigate_actions.png b/src/docs/navigate_actions.png deleted file mode 100644 index 1fda0177..00000000 --- a/src/docs/navigate_actions.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8d289bea0186a2f3268039f7d6167d74335315c4f21d30f74775bcdecc031a7c -size 9434 diff --git a/src/docs/navigate_repository_settings.png b/src/docs/navigate_repository_settings.png deleted file mode 100644 index 202316cf..00000000 --- a/src/docs/navigate_repository_settings.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a96a295fa040cae33475bc5545650ce2bf029366a7d93c144311783c0922f25 -size 44376 diff --git a/src/docs/navigate_settings.png b/src/docs/navigate_settings.png deleted file mode 100644 index 7dec6653..00000000 --- a/src/docs/navigate_settings.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a260d51b388e627956c0c54c14fd8d1850ccf8f764cba95eeeb2ea86a8152ead -size 9112 diff --git a/src/docs/progress.png b/src/docs/progress.png deleted file mode 100644 index e8a6eea3..00000000 --- a/src/docs/progress.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6986dc37eba9debcffa81e9f49591c983c36086e8e92ecd29f789902d6856398 -size 37308 diff --git a/src/docs/register.png b/src/docs/register.png deleted file mode 100644 index 7193104f..00000000 --- a/src/docs/register.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d65c065bdaff8057bb8589b8df03507164b5f64b6df59276a2802b8ba191d8c -size 10172 diff --git a/src/docs/secret1.png b/src/docs/secret1.png deleted file mode 100644 index 8dafdf8e..00000000 --- a/src/docs/secret1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0fb5b87fbd730fa16745214d521dc3dbf8047af34b29c9b1c1314fc2cde4f8b0 -size 10308 diff --git a/src/docs/secret2.png b/src/docs/secret2.png deleted file mode 100644 index 18b4d245..00000000 --- a/src/docs/secret2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:58a28ca2f539fc58ce01d9ce60c51d68ba6e56c7810f5b141a8699f178a67c46 -size 11140 diff --git a/src/docs/start_create_new_repo.png b/src/docs/start_create_new_repo.png deleted file mode 100644 index 7a062d3b..00000000 --- a/src/docs/start_create_new_repo.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c8f0689f8fead37373232a8979e33b09d00fa6c567c4d398f969f8fb881d4bbb -size 7012 diff --git a/src/docs/template_repo.png b/src/docs/template_repo.png deleted file mode 100644 index cd93a109..00000000 --- a/src/docs/template_repo.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4aad005e3a03cf9fa4088c785ce06a54ef71007fc1eb83f4e0c85adfbc1ad5a -size 41423 diff --git a/src/replay.osr b/src/replay.osr deleted file mode 100644 index d4806c81..00000000 --- a/src/replay.osr +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:63e1ba2f9dc054f65d7b6e00cb4abca5485bdade145ce9bff47e3464e3b2e481 -size 71355